:root {
  --green-dark:  #0d4a1f;
  --green-mid:   #1a6b30;
  --green-light: #2e8b3e;
  --green-pale:  #e8f5e9;
  --gold:        #d4a017;
  --gold-light:  #f5c842;
  --white:       #ffffff;
  --off-white:   #f8faf5;
  --gray-light:  #f2f4f0;
  --gray-text:   #555;
  --dark:        #1a1a1a;
  --shadow:      0 8px 32px rgba(0,0,0,0.12);
  --radius:      14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Antonio", sans-serif;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.nav-scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links > li > a {
  color: #1a1a1a;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--green-dark); background: var(--green-pale); }

.nav-chevron { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; }
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e4ece0;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  min-width: 260px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  color: #1a1a1a;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--green-pale); color: var(--green-dark); }

.nav-cta {
  background: var(--green-dark);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  font-family: Arial, Helvetica, sans-serif;
}
.nav-cta:hover { background: var(--green-mid); transform: scale(1.03); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: 0.3s; }
nav.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  margin-top: 80px;
  background: var(--off-white);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 80px 60px;
  position: relative;
  overflow: hidden;
}
/* .hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.85)   0%,
    rgba(255,255,255,0.75) 25%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0.15) 72%,
    transparent            90%
  );
} */
.hero-inner {
  max-width: 1240px; width: 100%;
  display: flex;
  align-items: center;
}
.hero-text { flex: 1; max-width: none; }

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-title {
  font-family: "Antonio", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: #00550b;
  line-height: 120px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top:100px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.hero-title.slide-in {
  animation: heroTitleIn 1.2s ease both;
}
.hero-title.slide-in span {
  display: block;
  animation: heroTitleIn 1.2s ease 0.25s both;
}
.hero-title span {
  font-family: "Antonio", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #000;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  background: var(--green-dark);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px 10px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
  position: relative;
  letter-spacing: 0.2px;
  font-family: Arial, Helvetica, sans-serif;
}
.hero-tagline::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--gold-light);
  border-radius: 0 4px 4px 0;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 18px 12px;
  max-width: 540px;
}
.htr-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 0 8px;
}
.htr-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.htr-icon svg { width: 50px; height: 50px; }
.htr-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: 0.3px;
  font-family: Arial, Helvetica, sans-serif;
}
.htr-divider {
  width: 1px;
  height: 64px;
  background: #dde8d9;
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold-light);
  color: var(--green-dark);
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(213,160,23,0.4);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(213,160,23,0.5); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── SECTION HELPERS ── */
section { padding: 80px clamp(20px, 5vw, 80px); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title span { color: var(--green-light); }
.section-sub { color: var(--gray-text); font-size: 1rem; line-height: 1.7; max-width: 620px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── ABOUT ── */
#about { background: var(--off-white); padding: 80px clamp(20px, 5vw, 80px); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-slider {
  position: relative;
  border-radius: 20px;
  max-width: 520px;
  box-shadow: 0 16px 48px rgba(13,74,31,0.22);
  background: #fff;
  margin-bottom: 20px;
}
.about-slider-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}
@keyframes aboutFadeIn { from { opacity: 0; } to { opacity: 1; } }
.about-slide { display: none; }
.about-slide.active { display: block; animation: aboutFadeIn 0.6s ease; }
.about-slide img { width: 100%; height: auto; display: block; }

.about-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--green-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.about-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.about-prev { left: 12px; }
.about-next { right: 12px; }

.about-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.about-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.about-dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.3);
}

.about-year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold-light);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(213,160,23,0.35);
  z-index: 5;
}
.ayb-num { display: block; font-family: "Antonio", sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.ayb-lbl { display: block; font-family: Arial, Helvetica, sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }

.about-stat-row {
  display: flex;
  gap: 0;
  margin-top: 50px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  overflow: hidden;
}
.about-stat {
  flex: 1;
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid #eef2ea;
}
.about-stat:last-child { border-right: none; }
.as-num { display: block; font-family: "Antonio", sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--green-dark); }
.as-lbl { display: block; font-family: Arial, Helvetica, sans-serif; font-size: 0.72rem; font-weight: 600; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }

.about-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}

/* ── PRODUCTS ── */
#products { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.products-grid a { text-decoration: none; }
.product-card {
  border: 2px solid #e8eee5;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  background: white;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-light);
}

/* FIX: image area backgrounds — light colours so missing images don't look black */
.product-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  background: #f0f9f0;
}
.product-img.green-bg  { background: #f0f9f0; }
.product-img.yellow-bg { background: #fdf9ee; }
.product-img.blue-bg   { background: #eef3ff; }

.pic-img {
  height: auto !important;
          aspect-ratio: 4 / 4 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  position: relative;
  overflow: hidden;
  background: #f0f9f0;
}
.pic-img.green-bg  { background: #f0f9f0; }
.pic-img.yellow-bg { background: #fdf9ee; }
.pic-img.blue-bg   { background: #eef3ff; }

/* FIX: images fill their container properly */
.pic-img img, .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0;
  box-sizing: border-box;
}

.product-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green-dark);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-body { padding: 24px; }
.product-body h3 {
  font-family: "Antonio", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.product-body p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-chip {
  background: var(--green-pale);
  color: var(--green-mid);
  border: 1px solid #a5d6a7;
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.76rem;
  font-weight: 600;
}

/* Tab bar */
.prod-tabs {
  display: flex;
  justify-content: space-around;
  gap: 0;
  margin: 60px 0 0;
  border-bottom: 2px solid #e4ece0;
  flex-wrap: wrap;
}
.prod-tab {
  padding: 13px 28px;
  border: none;
  background: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.prod-tab:hover { color: var(--green-dark); background: var(--green-pale); }
.prod-tab.active { color: var(--green-dark); border-bottom-color: var(--green-dark); background: none; }

.prod-panel { display: none; padding-top: 36px; }
.prod-panel.active { display: block; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.prod-grid-center {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  max-width: 620px;
}
.prod-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 620px;
}

.prod-item-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
  position: relative;
}
.pic-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.prod-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(13,74,31,0.14);
}

.pic-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: #ff6b35;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  z-index: 2;
}

.pic-body { padding: 18px 18px 20px; }
.pic-category { display: block; font-size: 0.75rem; color: #999; margin-bottom: 4px; }
.pic-body h3 {
  font-family: "Antonio", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pic-stars { color: var(--green-light); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }

.pic-colors { margin-bottom: 12px; position: relative; z-index: 2; }
.pic-colors-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.pic-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.pic-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #555;
  background: #f7f7f7;
  border: 1.5px solid #e8e8e8;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.pic-chip.active { border-color: var(--green-dark); background: #e8f5e9; color: var(--green-dark); }
.pic-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.dot-black { background: #1a1a1a; }
.dot-colored { background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #ffd93d 100%); }
.dot-milky { background: #f0f0f0; border: 1px solid #ccc; }
.dot-transparent { background: rgba(180,200,230,0.5); border: 1px solid #aabbd0; }
.dot-all { background: linear-gradient(135deg, #ff6b6b, #ffd93d, #4ecdc4, #9b59b6); }
.dot-white { background: #fff; border: 1px solid #ccc; }
.dot-ivory { background: #fffff0; border: 1px solid #d4c870; }
.dot-brown { background: #8B4513; }
.dot-standard { background: #999; }
.dot-custom { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.pic-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.pic-mrp { font-size: 0.88rem; color: #bbb; text-decoration: line-through; }
.pic-price {
  font-family: "Antonio", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.pic-unit { font-family: Arial, Helvetica, sans-serif; font-size: 0.72rem; font-weight: 500; color: #999; }
.pic-moq-bar {
  margin-top: 10px;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-mid);
  background: rgba(46,139,62,0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

/* ── TRUST ── */
#trust { background: var(--off-white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.trust-card {
  background: white;
  border-radius: var(--radius);
  text-align: center;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.11); }
.trust-card-icon {
  width: 60px; height: 60px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-dark);
}
.trust-card-icon svg { width: 28px; height: 28px; }
.trust-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.trust-card p { font-size: 0.88rem; color: #666; line-height: 1.65; }

/* Certifications */
.cert-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cert-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}
.cert-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(13,74,31,0.18); }
.cert-card-top {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 28px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cert-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.cert-card-icon svg { width: 26px; height: 26px; }
.cert-num {
  font-family: "Antonio", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  line-height: 1;
}
.cert-card-body { background: #fff; padding: 22px 22px 26px; }
.cert-card h4 { font-size: 0.98rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.cert-card p { font-size: 0.85rem; color: #666; line-height: 1.6; margin: 0; }

.clients-section { margin-top: 60px; }
.clients-title {
  font-family: "Antonio", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 28px;
}

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2s infinite;
}
.float-wa svg { display: block; }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.8); }
}
.float-call {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #2563eb;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,99,235,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: callPulse 2s infinite;
}
.float-call svg { display: block; }
.float-call:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,99,235,0.7); }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,99,235,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,99,235,0.8); }
}

#scrollTop {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 9998;
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  display: none;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
#scrollTop:hover { background: var(--green-mid); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--green-dark);
  z-index: 999;
  padding: 16px 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-sub {
  padding-left: 20px !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.65) !important;
}

/* ── HERO SLIDER ── */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: 100% 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero::before { z-index: 1; }
.hero-inner { position: relative; z-index: 2; }

/* ── HERO CATEGORY BAR ── */
.hero-cat-bar {
  position: absolute;
  bottom: 0; left: 0;
  z-index: 4;
  width: 70%;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 50%, calc(100% - 48px) 100%, 0 100%);
}
.hcb-inner {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  padding: 0 68px 0 36px;
}
.hcb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  text-decoration: none;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 18px 22px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.hcb-item:hover { color: #fff; background: rgba(255,255,255,0.08); }
.hcb-item svg { width: 22px; height: 22px; flex-shrink: 0; }
.hcb-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.28); flex-shrink: 0; }
.hcb-gold { height: 5px; background: var(--gold-light); }

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.30); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.slider-dot.active { background: var(--gold-light); border-color: var(--gold-light); transform: scale(1.3); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── TESTIMONIALS ── */
.testi-section { background: #f4fbf4; }
.tsl-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #bddcbd;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  background: #fff;
  margin-bottom: 18px;
}
.tsl-main-heading {
  font-family: "Antonio", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.28;
  margin-bottom: 0;
}
.tsl-main-heading span { color: var(--green-light); }
.tsl-outer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}
.tsl-viewport { flex: 1; overflow: hidden; }
.tsl-track {
  display: flex;
  gap: 24px;
  transition: transform 0.52s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  align-items: stretch;
}
.tsl-card {
  flex-shrink: 0;
  background: #e4f4e4;
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: background 0.35s, box-shadow 0.35s;
}
.tsl-card.active { background: #5aab55; box-shadow: 0 12px 40px rgba(90,171,85,0.35); }
.tsl-qcircle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #5aab55;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  padding-bottom: 4px;
  flex-shrink: 0;
  margin-bottom: 18px;
  transition: background 0.35s;
}
.tsl-card.active .tsl-qcircle { background: #3d8039; }
.tsl-stars-row { font-size: 1.1rem; color: #5aab55; letter-spacing: 2px; margin-bottom: 14px; transition: color 0.35s; }
.tsl-card.active .tsl-stars-row { color: #fff; }
.tsl-quote { font-size: 0.92rem; line-height: 1.72; color: #2a3a2a; flex: 1; margin-bottom: 18px; transition: color 0.35s; }
.tsl-card.active .tsl-quote { color: rgba(255,255,255,0.92); }
.tsl-divider { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin-bottom: 18px; transition: border-color 0.35s; }
.tsl-card.active .tsl-divider { border-color: rgba(255,255,255,0.3); }
.tsl-author-row { display: flex; align-items: center; gap: 12px; }
.tsl-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: "Antonio", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: background 0.35s;
}
.tsl-card.active .tsl-av { background: rgba(255,255,255,0.25); }
.tsl-aname { font-family: "Antonio", sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; transition: color 0.35s; }
.tsl-card.active .tsl-aname { color: #fff; }
.tsl-arole { font-size: 0.73rem; color: var(--gray-text); transition: color 0.35s; }
.tsl-card.active .tsl-arole { color: rgba(255,255,255,0.72); }
.tsl-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid #c0d8c0;
  background: #fff;
  color: var(--green-dark);
  font-size: 1.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.16s;
  line-height: 1;
  padding-bottom: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.tsl-arrow:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: scale(1.08); }
.tsl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 52px;
}
.tsl-dot {
  height: 10px; width: 10px;
  border-radius: 50%;
  background: #c4dcc4;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}
.tsl-dot.active { width: 32px; border-radius: 5px; background: #5aab55; }
.testi-cta { text-align: center; padding: 44px 32px; }
.testi-cta p { font-size: 1.05rem; color: var(--dark); margin-bottom: 20px; }
.testi-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-section { background: #f4fbf4; padding: 80px clamp(20px, 5vw, 80px); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid #bddcbd; border-radius: 30px;
  padding: 6px 16px; font-size: 0.8rem; font-weight: 600;
  color: var(--green-dark); background: #fff; margin-bottom: 20px;
}
.faq-heading {
  font-family: "Antonio", sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--green-dark); line-height: 1.28; margin-bottom: 36px;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1.5px solid #ddeedd;
  border-radius: 14px; overflow: hidden;
  cursor: pointer; transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover { border-color: #5aab55; box-shadow: 0 4px 16px rgba(90,171,85,0.12); }
.faq-item.active { border-color: #5aab55; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 20px;
  font-size: 0.95rem; font-weight: 600; color: var(--green-dark);
  transition: background 0.25s, color 0.25s;
  border-radius: 12px 12px 0 0;
}
.faq-item.active .faq-question { background: #5aab55; color: #fff; border-radius: 12px 12px 0 0; }
.faq-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  border-radius: 50%; background: #5aab55;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.25s;
}
.faq-item.active .faq-icon { background: rgba(255,255,255,0.25); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-icon-close { display: none; }
.faq-icon-open  { display: block; }
.faq-item.active .faq-icon-close { display: block; }
.faq-item.active .faq-icon-open  { display: none; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-answer > p { overflow: hidden; padding: 0 20px; font-size: 0.9rem; line-height: 1.72; color: #4a5a4a; margin: 0; }
.faq-item.active .faq-answer > p { padding: 16px 20px 20px; }

.faq-right { display: flex; flex-direction: column; gap: 20px; }
.faq-img-wrap { position: relative; border-radius: 20px; overflow: visible; }
.faq-img { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; display: block; }
.faq-cta-card { background: var(--green-dark); border-radius: 20px; padding: 36px 32px; text-align: center; }
.faq-cta-title { font-family: "Antonio", sans-serif; font-size: 1.7rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.faq-cta-sub { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 28px; max-width: 360px; margin-left: auto; margin-right: auto; }
.faq-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.faq-cta-btn {
  display: inline-block; padding: 13px 24px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s; cursor: pointer;
}
.faq-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.faq-cta-btn--solid { background: #fff; color: var(--green-dark); }
.faq-cta-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.faq-cta-btn--outline:hover { border-color: #fff; }

/* ═══════════════════════════════════════
   FOOTER — FULLY FIXED
═══════════════════════════════════════ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 32px 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 6px 14px;
  border-radius: 8px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.35); }

.footer-col h4 {
  font-family: "Antonio", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-links li a::before {
  content: '›';
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links li a:hover { color: #fff; }
.footer-links li a:hover::before { color: rgba(255,255,255,0.7); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.fci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.855rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.fci-icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  color: rgba(255,255,255,0.5);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cert-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-slider { max-width: 100%; }
  .hero-cat-bar { display: none; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-right { display: none; }
  .faq-heading { font-size: 1.9rem; }
}

/* ── 768px: tablet ── */
@media (max-width: 768px) {
  /* Navbar */
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    min-height: 55vh;
    padding: 32px 20px 60px;
  }
  .hero-slide {
    background-size: cover;
    background-position: center;
  }
  .hero-inner { justify-content: flex-start; text-align: left; }
  .hero-text { width: 100%; }
  .hero-tagline { justify-content: flex-start; font-size: 0.82rem; }
  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.6rem);
    line-height: 1.2;
    white-space: normal;
    margin-top: 0;
    margin-bottom: 10px;
    text-shadow: 0 1px 8px rgba(255,255,255,0.7);
  }
  .hero-title span { font-size: clamp(1.2rem, 5.5vw, 2rem); line-height: 1.2; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-dots { bottom: 14px; }
  .slider-dot { width: 8px; height: 8px; }

  /* Trust strip pinned to bottom of hero */
  .hero-trust-row {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    max-width: none;
    margin: 0; padding: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(0,0,0,0.07);
  }
  .htr-item {
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 9px 4px;
  }
  .htr-divider { display: block; width: 1px; height: 28px; background: rgba(0,0,0,0.1); flex-shrink: 0; }
  .htr-icon { width: 20px; height: 20px; }
  .htr-icon svg { width: 18px; height: 18px; }
  .htr-item span { font-size: 9.5px; line-height: 1.25; text-align: left; letter-spacing: 0; white-space: nowrap; }

  /* About */
  .about-year-badge { right: 0; bottom: -16px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
  .product-img { height: 240px; }
  .prod-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .prod-tabs::-webkit-scrollbar { display: none; }
  .prod-tab { flex-shrink: 0; padding: 12px 18px; font-size: 0.85rem; }
  .prod-grid { grid-template-columns: 1fr; gap: 16px; }
  .prod-grid-2 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .prod-grid-center { max-width: 100%; }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-cards { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .tsl-main-heading { font-size: 1.8rem; }
  .tsl-arrow { width: 36px; height: 36px; font-size: 1.5rem; }
  .testi-cta-btns { flex-direction: column; align-items: center; }

  /* Footer — 2 columns on tablet */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  footer { padding: 48px 24px 0; }
}

/* ── 560px ── */
@media (max-width: 560px) {
  .cert-cards { grid-template-columns: 1fr; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  section { padding: 48px 16px; }
  .section-inner { padding: 0; }

  /* Hero */
  .hero { min-height: 25vh; padding: 24px 12px 50px; }
  .hero-title { font-size: 1.5rem; line-height: 1.2; }
  .hero-title span { font-size: 1.25rem; }
  .hero-tagline { font-size: 0.76rem; padding: 7px 12px; }
  .htr-item { padding: 8px 2px; gap: 4px; }
  .htr-icon svg { width: 15px; height: 15px; }
  .htr-item span { font-size: 8.5px; }

  /* Products — 1 col */
  .products-grid { grid-template-columns: 1fr; }
  .product-img { height: 300px; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-grid-2 { grid-template-columns: 1fr; }
  .pic-img { font-size: 3.5rem; }
  .pic-price { font-size: 1.3rem; }
  .prod-tab { padding: 10px 14px; font-size: 0.78rem; }

  /* About stats */
  .about-stat-row { flex-wrap: wrap; }
  .about-stat { flex: 0 0 50%; border-bottom: 1px solid #eef2ea; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .tsl-outer { gap: 6px; }
  .tsl-arrow { width: 34px; height: 34px; font-size: 1.4rem; }

  /* FAQ */
  .faq-heading { font-size: 1.6rem; }
  .faq-cta-card { padding: 28px 20px; }
  .faq-cta-btns { flex-direction: column; align-items: center; }

  /* Footer — 1 col on small phones */
  footer { padding: 40px 16px 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.75rem;
  }
  .footer-bottom span { display: block; width: 100%; }
  .footer-logo-img { height: 44px; }
  .footer-col h4 { margin-bottom: 14px; }

  /* Float buttons */
  .float-wa { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .float-wa svg { width: 24px; height: 24px; }
  .float-call { bottom: 16px; left: 16px; width: 50px; height: 50px; }
  .float-call svg { width: 24px; height: 24px; }
  #scrollTop { bottom: 76px; right: 16px; }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .section-sub { font-size: 0.88rem; }
}

/* ── 376px ── */
@media (max-width: 376px) {
  .hero {
    min-height: 30vh;
    padding: 24px 12px 50px;
  }
}

/* ── 360px: very small phones ── */
@media (max-width: 360px) {
  nav { padding: 0 12px; }
  .hero { padding: 80px 12px 56px; }
  .hero-title { font-size: 1.5rem; }
  .hero-title span { font-size: 1.2rem; }
  section { padding: 40px 12px; }
  .prod-grid { gap: 10px; }
  footer { padding: 32px 12px 0; }
  .footer-top { gap: 20px; }
}

/* ── Product detail page ── */
@media (max-width: 768px) {
  .pd-wrap { flex-direction: column; }
  .pd-gallery { width: 100%; }
  .pd-main-img { height: 260px; }
  .pd-tab-bar { flex-wrap: wrap; }
  .pd-tab { flex: 1; min-width: 0; padding: 10px 8px; font-size: 0.8rem; white-space: nowrap; }
  .pd-ship-grid { grid-template-columns: 1fr 1fr; }
  .pd-related-grid { grid-template-columns: 1fr 1fr; }
  .pd-color-options { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .pd-main-img { height: 200px; }
  .pd-tab { font-size: 0.72rem; padding: 9px 6px; }
  .pd-ship-grid { grid-template-columns: 1fr; }
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-trust-row { flex-wrap: wrap; gap: 10px; }
  .pd-trust-item { flex: 0 0 calc(50% - 5px); }
  .pd-cta-row { flex-direction: column; }
  .pd-btn-wa, .pd-btn-call { width: 100%; justify-content: center; }
}

/* ── Products listing page ── */
@media (max-width: 768px) {
  .pp-tab-bar { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .pp-tab-bar::-webkit-scrollbar { display: none; }
  .pp-tab { flex-shrink: 0; min-width: 0; }
  .cat-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pp-hero { padding: 100px 16px 48px; }
  .pp-section { padding: 0 16px 56px; }
  .pp-tab { padding: 11px 10px; font-size: 0.75rem; }
  .pp-cta-banner { padding: 36px 20px; }
  .pp-cta-btns { flex-direction: column; align-items: center; }
}