/*
 * Agrology Theme - Products Page Styles
 * Archive grid, single product detail, filter bar
 */

/* ============================================
   PAGE HERO — Products
   ============================================ */
.agro-page-hero-products {
  background: linear-gradient(135deg, #141414 0%, #18191a 30%, #1d1f1b 55%, #242522 80%, #252729 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.agro-page-hero-products::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 43, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.agro-page-hero-label {
  font-family: var(--font-primary);
  color: #dab920;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.agro-page-hero-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.agro-page-hero-divider {
  width: 13rem;
  height: 2px;
  background: linear-gradient(to right, #DDA933, #f0d046);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.agro-page-hero-desc {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   FILTER BAR — Product Categories
   ============================================ */
.agro-products-filter-bar {
  background: linear-gradient(135deg, #0d1117 0%, #151d28 50%, #0d1117 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  position: sticky;
  top: 80px;
  z-index: 50;
}

.agro-products-filter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.agro-products-filter-btn {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.agro-products-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.agro-products-filter-btn.active {
  background: white;
  color: #1c1c1c;
  border-color: white;
}

/* ============================================
   PRODUCTS GRID — Archive
   ============================================ */
.agro-products-section {
  background: linear-gradient(180deg, #0d1117 0%, #141e28 25%, #182430 50%, #1a2832 75%, #0f171e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.agro-products-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(218, 185, 32, 0.025) 0%, transparent 55%);
  pointer-events: none;
}

.agro-products-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154, 162, 45, 0.025) 0%, transparent 55%);
  pointer-events: none;
}

.agro-products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Category group separator (heading + line) */
.agro-products-category-group {
  margin-bottom: 4rem;
}

.agro-products-category-group:last-child {
  margin-bottom: 0;
}

.agro-products-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.agro-products-category-title {
  flex-shrink: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.agro-products-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(218, 185, 32, 0.55) 0%, rgba(255, 255, 255, 0.08) 100%);
}

@media (max-width: 640px) {
  .agro-products-category-title {
    font-size: 1.4rem;
  }
  .agro-products-category-header {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

.agro-products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .agro-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .agro-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.agro-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.agro-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.agro-product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.agro-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.agro-product-card:hover .agro-product-img {
  transform: scale(1.05);
}

.agro-product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.agro-product-img-placeholder-large {
  min-height: 400px;
}

.agro-product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(to bottom, #DDA933, #f0d046);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
}

.agro-product-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.agro-product-category {
  font-family: var(--font-primary);
  color: #DDA933;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.agro-product-card-title {
  font-family: var(--font-primary);
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.agro-product-description {
  font-family: var(--font-primary);
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.agro-product-subtitle {
  font-family: var(--font-primary);
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.agro-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.agro-product-features li {
  font-family: var(--font-primary);
  color: #444444;
  font-size: 13px;
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.agro-product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #DDA933;
  border-radius: 50%;
}

.agro-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.agro-product-price {
  font-family: var(--font-primary);
  background: linear-gradient(to right, #DDA933, #f0d046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
}

.agro-product-btn-enquire {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom, #DDA933, #f0d046);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.agro-product-card:hover .agro-product-btn-enquire {
  background: linear-gradient(to bottom, #DDA933, #f0d046);
}

.agro-product-btn-details {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  border: 1.5px solid #ddd;
  color: #333;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.agro-product-btn-details:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ============================================
   CARD COLOR VARIANTS — Rotating gradients
   ============================================ */

/* Color 1: Gold → Olive (default) */
.agro-product-card.agro-color-1 .agro-product-price {
  background: linear-gradient(to right, #DDA933, #f0d046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.agro-product-card.agro-color-1 .agro-product-btn-enquire {
  background: linear-gradient(to right, #DDA933, #f0d046);
}
.agro-product-card.agro-color-1 .agro-product-category {
  color: #9aa22d;
}
.agro-product-card.agro-color-1 .agro-product-features li::before {
  background: #9aa22d;
}

/* Color 2: Teal → Cyan */
.agro-product-card.agro-color-2 .agro-product-price {
  background: linear-gradient(to right, #DDA933, #f0d046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.agro-product-card.agro-color-2 .agro-product-btn-enquire {
  background: linear-gradient(to right, #DDA933, #f0d046);
}
.agro-product-card.agro-color-2 .agro-product-category {
  color: #0d7377;
}
.agro-product-card.agro-color-2 .agro-product-features li::before {
  background: #0d7377;
}

/* Color 3: Deep Blue → Indigo */
.agro-product-card.agro-color-3 .agro-product-price {
  background: linear-gradient(to right, #DDA933, #f0d046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.agro-product-card.agro-color-3 .agro-product-btn-enquire {
  background: linear-gradient(to right, #DDA933, #f0d046);
}
.agro-product-card.agro-color-3 .agro-product-category {
  color: #2b4c8c;
}
.agro-product-card.agro-color-3 .agro-product-features li::before {
  background: #2b4c8c;
}

/* Color 4: Burnt Orange → Amber */
.agro-product-card.agro-color-4 .agro-product-price {
  background: linear-gradient(to right, #DDA933, #f0d046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.agro-product-card.agro-color-4 .agro-product-btn-enquire {
  background: linear-gradient(to right, #DDA933, #f0d046);
}
.agro-product-card.agro-color-4 .agro-product-category {
  color: #c45e20;
}
.agro-product-card.agro-color-4 .agro-product-features li::before {
  background: #c45e20;
}

/* Color 5: Forest Green → Emerald */
.agro-product-card.agro-color-5 .agro-product-price {
  background: linear-gradient(to right, #DDA933, #f0d046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.agro-product-card.agro-color-5 .agro-product-btn-enquire {
  background: linear-gradient(to right, #DDA933, #f0d046);
}
.agro-product-card.agro-color-5 .agro-product-category {
  color: #2d6a3f;
}
.agro-product-card.agro-color-5 .agro-product-features li::before {
  background: #2d6a3f;
}

/* Empty state */
.agro-products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
}

.agro-products-empty h3 {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.agro-products-empty p {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

/* ============================================
   SINGLE PRODUCT PAGE — Premium Design
   ============================================ */

/* Breadcrumb */
.agro-sp-breadcrumb {
  background: linear-gradient(180deg, #0f0f1a 0%, #111A21 100%);
  padding: 6.5rem 0 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.agro-sp-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.agro-sp-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.agro-sp-breadcrumb a:hover {
  color: #dab920;
}

.agro-sp-breadcrumb svg {
  opacity: 0.4;
}

.agro-sp-breadcrumb-cat {
  color: rgba(255, 255, 255, 0.5);
}

.agro-sp-breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.agro-sp-hero {
  background: linear-gradient(180deg, #111A21 0%, #0f0f1a 100%);
  padding: 3rem 0 5rem;
}

.agro-sp-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .agro-sp-hero-container {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Gallery */
.agro-sp-gallery {
  position: relative;
}

.agro-sp-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a2e;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.agro-sp-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.agro-sp-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
}

.agro-sp-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #dab920, #9aa22d);
  color: #000;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.agro-sp-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.agro-sp-gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: #dab920;
}

.agro-sp-gallery-prev {
  left: 1rem;
}

.agro-sp-gallery-next {
  right: 1rem;
}

.agro-sp-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.agro-sp-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  background: none;
  padding: 0;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.agro-sp-thumb:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.3);
}

.agro-sp-thumb.active {
  border-color: #dab920;
  opacity: 1;
  box-shadow: 0 0 12px rgba(218, 185, 32, 0.3);
}

.agro-sp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.agro-sp-info {
  padding-top: 0.5rem;
}

.agro-sp-category {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9aa22d;
  margin-bottom: 0.75rem;
}

.agro-sp-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.agro-sp-subtitle {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.agro-sp-price {
  font-family: var(--font-primary);
  background: linear-gradient(to right, #DDA933, #f0d046);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.agro-sp-description {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.agro-sp-content {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.agro-sp-content p {
  margin-bottom: 1rem;
}

/* Features */
.agro-sp-features {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.agro-sp-features-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.agro-sp-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.agro-sp-features-list li {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}

.agro-sp-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dab920, #9aa22d);
}

/* Action Buttons */
.agro-sp-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.agro-sp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: linear-gradient(135deg, #dab920, #9aa22d);
  color: #000;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(218, 185, 32, 0.25);
}

.agro-sp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(218, 185, 32, 0.35);
}

.agro-sp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.agro-sp-btn-secondary:hover {
  border-color: #dab920;
  color: #dab920;
  transform: translateY(-2px);
}

/* ============================================
   SINGLE PRODUCT — Specifications
   ============================================ */
.agro-sp-specs {
  background: linear-gradient(180deg, #0a0a14 0%, #0f1520 40%, #111a24 60%, #0a0a14 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.agro-sp-specs::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154, 162, 45, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.agro-sp-specs-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.agro-sp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.agro-sp-section-title {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.agro-sp-section-subtitle {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.agro-sp-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .agro-sp-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.agro-sp-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  transition: background 0.3s ease;
}

.agro-sp-spec-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.agro-sp-spec-item:nth-child(odd) {
  background: rgba(255, 255, 255, 0.025);
}

.agro-sp-spec-label {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
}

.agro-sp-spec-value {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

/* ============================================
   SINGLE PRODUCT — Enquiry Form
   ============================================ */
.agro-sp-enquiry {
  background: linear-gradient(180deg, #0f0f1a 0%, #111A21 100%);
  padding: 5rem 0;
}

.agro-sp-enquiry-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .agro-sp-enquiry-container {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
  }
}

.agro-sp-enquiry-info {
  padding-top: 1rem;
}

.agro-sp-enquiry-info .agro-sp-section-title {
  text-align: left;
  font-size: 26px;
}

.agro-sp-enquiry-info .agro-sp-section-subtitle {
  text-align: left;
  margin-bottom: 2rem;
}

.agro-sp-enquiry-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agro-sp-enquiry-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.agro-sp-enquiry-detail-item svg {
  color: #dab920;
  flex-shrink: 0;
}

/* Form */
.agro-sp-enquiry-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.agro-sp-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.agro-sp-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .agro-sp-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.agro-sp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.agro-sp-form-group-full {
  grid-column: 1 / -1;
}

.agro-sp-form-group label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.agro-sp-form-group input,
.agro-sp-form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.agro-sp-form-group input::placeholder,
.agro-sp-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.agro-sp-form-group input:focus,
.agro-sp-form-group textarea:focus {
  border-color: #dab920;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(218, 185, 32, 0.1);
}

.agro-sp-form-group input[readonly] {
  opacity: 0.7;
  cursor: default;
}

.agro-sp-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.agro-sp-form-submit {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #dab920, #9aa22d);
  color: #000;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(218, 185, 32, 0.25);
  align-self: flex-start;
}

.agro-sp-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(218, 185, 32, 0.4);
}

/* ============================================
   SINGLE PRODUCT — Back Link
   ============================================ */
.agro-sp-back {
  background: linear-gradient(180deg, #0a0a14 0%, #0d1117 100%);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.agro-sp-back-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.agro-sp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.agro-sp-back-link:hover {
  color: #dab920;
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .agro-page-hero-title {
    font-size: 32px;
  }

  .agro-sp-title {
    font-size: 28px;
  }

  .agro-sp-price {
    font-size: 26px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
  .agro-page-hero-products {
    padding: 7rem 1.25rem 3rem;
  }

  .agro-page-hero-title {
    font-size: 26px;
  }

  .agro-page-hero-desc {
    font-size: 14px;
  }

  .agro-products-filter-bar {
    top: 70px;
  }

  .agro-products-filter-container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 1.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .agro-products-filter-btn {
    flex-shrink: 0;
  }

  .agro-products-section {
    padding: 2.5rem 0;
  }

  .agro-products-container {
    padding: 0 1.25rem;
  }

  .agro-sp-hero {
    padding: 2rem 0 3rem;
  }

  .agro-sp-hero-container {
    padding: 0 1.25rem;
    gap: 2rem;
  }

  .agro-sp-title {
    font-size: 24px;
  }

  .agro-sp-price {
    font-size: 22px;
  }

  .agro-sp-features-list {
    grid-template-columns: 1fr;
  }

  .agro-sp-actions {
    flex-direction: column;
  }

  .agro-sp-actions .agro-sp-btn-primary,
  .agro-sp-actions .agro-sp-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .agro-sp-specs-container {
    padding: 0 1.25rem;
  }

  .agro-sp-breadcrumb {
    padding: 5.5rem 0 1rem;
  }

  .agro-sp-enquiry-form-wrap {
    padding: 1.5rem;
  }

  .agro-sp-enquiry-container {
    padding: 0 1.25rem;
  }

  .agro-sp-back-container {
    padding: 0 1.25rem;
  }
}
