/* ===== Tůma Garden – Amazon style box produktů ===== */

.tg-ap-box {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tg-ap-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tg-ap-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #111111;
  margin: 0 0 24px 0;
}

.tg-ap-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 24px;
}

.tg-ap-item {
  display: block;
  text-decoration: none !important;
  color: #111111;
  text-align: center;
}

.tg-ap-item img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px auto;
  background: #ffffff;
  transition: transform 0.25s ease;
}

.tg-ap-item span {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #111111;
  text-align: center;
}

.tg-ap-item:hover img {
  transform: translateY(-2px);
}

.tg-ap-item:hover span {
  text-decoration: underline;
}

.tg-ap-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #005f00;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #005f00;
  box-shadow: 0 2px 8px rgba(0,95,0,0.20);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.tg-ap-link:hover,
.tg-ap-link:focus {
  background: #004c00;
  border-color: #004c00;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0,95,0,0.28);
  transform: translateY(-1px);
}

.tg-ap-link-arrow {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.tg-ap-link:hover .tg-ap-link-arrow,
.tg-ap-link:focus .tg-ap-link-arrow {
  transform: translateX(3px);
}

/* Tablet – 4 sloupce */
@media (max-width: 1024px) {
  .tg-ap-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tg-ap-item img {
    height: 120px;
  }
}

/* Mobil – 2 sloupce */
@media (max-width: 767px) {
  .tg-ap-box {
    padding: 18px;
  }

  .tg-ap-title {
    font-size: 22px;
  }

  .tg-ap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .tg-ap-item img {
    height: 120px;
  }

  .tg-ap-item span {
    font-size: 13px;
  }

  .tg-ap-link {
    margin-top: 20px;
    width: 100%;
  }
}

/* ===== END Tůma Garden – Amazon style box produktů ===== */
