
/* ===== TG Category SEO Blocks ===== */

.tg-seo-blocks {
  margin: 40px 0;
}

.tg-seo-section {
  margin-bottom: 42px;
}

.tg-seo-section h2 {
  font-size: 20px !important;
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 600 !important;
  color: #111;
}

.tg-seo-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 18px;
}

.tg-seo-grid {
  display: grid;
  gap: 18px;
}

.tg-seo-cat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tg-seo-product-grid {
  grid-template-columns: repeat(6, 1fr);
}

.tg-seo-card {
  display: block;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all .2s ease;
}

.tg-seo-card:hover {
  border-color: #005f00;
  box-shadow: 0 6px 18px rgba(0, 95, 0, 0.08);
  transform: translateY(-2px);
}

.tg-seo-cat-card {
  padding: 18px;
  color: #005f00 !important;
  font-weight: 500 !important;
  text-align: center;
}

.tg-seo-product-card {
  padding: 12px;
  color: #111 !important;
}

.tg-seo-product-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.tg-seo-product-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.tg-seo-product-title {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500 !important;
  color: #111;
  margin-bottom: 6px;
}

.tg-seo-product-price {
  font-size: 14px;
  color: #005f00;
  font-weight: 500 !important;
}

.tg-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tg-seo-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid #005f00;
  border-radius: 999px;
  color: #005f00 !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: all .2s ease;
}

.tg-seo-links a:hover {
  background: #005f00;
  color: #fff !important;
}

/* Tablet */
@media (max-width: 980px) {
  .tg-seo-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-seo-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobil */
@media (max-width: 600px) {
  .tg-seo-cat-grid,
  .tg-seo-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tg-seo-section h2 {
    font-size: 21px;
  }
}