/* ============================================================
   VRIINDOR — THEME SYSTEM
   To switch the entire theme, change ONE class on <body>:
     class="theme-vriindor"   (default dark-brown + gold)
     class="theme-green"      (forest green + gold)
     class="theme-navy"       (navy blue + amber)

   Or override any variable inside :root for one-off tweaks.
   ============================================================ */

/* ── DEFAULT THEME (dark brown + gold) ── */
:root,
body.theme-vriindor {
  /* Core palette */
  --color-primary:        #5e4228;   /* dark brown – navbars, footers, banners */
  --color-primary-hover:  #2a1e12;   /* darker shade for hover states */
  --color-accent:         #C9A84C;   /* gold – headings, highlights */
  --color-accent-hover:   #b08d38;   /* darker gold on hover */

  /* Buttons */
  --btn-bg:               #3B2A1A;
  --btn-color:            #ffffff;
  --btn-hover-bg:         #2a1e12;
  --btn-border:           #3B2A1A;

  --btn-outline-color:    #3B2A1A;
  --btn-outline-border:   #3B2A1A;
  --btn-outline-hover-bg: #3B2A1A;
  --btn-outline-hover-color: #ffffff;

  --btn-accent-bg:        #C9A84C;
  --btn-accent-color:     #ffffff;
  --btn-accent-hover-bg:  #b08d38;

  /* Surface & text */
  /* --bg-light:             #faf6f0;    */
  --bg-light:             #f8ebdc;   /* page background */
  --bg-card:              #ffffff;
  --text-dark:            #2d2d2d;
  --text-muted:           #6c6c6c;
  --text-on-primary:      #ffffff;
  --text-on-accent:       #ffffff;

  /* Borders & dividers */
  --border-color:         #e0d5c8;
  --divider-accent:       #C9A84C;

  /* Top bar & nav */
  --topbar-bg:            #2a1e12;
  --nav-bg:               #ffffff;
  --nav-link-color:       #2d2d2d;
  --nav-link-hover:       #C9A84C;
  --nav-active-color:     #C9A84C;
  --nav-active-border:    #C9A84C;

  /* Stats/feature bar */
  --statsbar-bg:          #3B2A1A;
  --statsbar-text:        #ffffff;
  --statsbar-icon-color:  #C9A84C;

  /* Section headings */
  --section-label-color:  #C9A84C;

  /* Footer */
  --footer-bg:            #2a1e12;
  --footer-text:          #d4c9be;
  --footer-heading:       #ffffff;
  --footer-link:          #d4c9be;
  --footer-link-hover:    #C9A84C;

  /* Checkmark bullets */
  --check-color:          #C9A84C;

  /* Card border accent */
  --card-border:          #e0d5c8;

  /* Typography */
  --font-heading:         'Playfair Display', Georgia, serif;
  --font-body:            'Inter', 'Segoe UI', sans-serif;
}

/* ── ALTERNATE THEME: Forest Green ── */
body.theme-green {
  --color-primary:        #1e3d2f;
  --color-primary-hover:  #142b20;
  --color-accent:         #C9A84C;
  --color-accent-hover:   #b08d38;
  --btn-bg:               #1e3d2f;
  --btn-color:            #ffffff;
  --btn-hover-bg:         #142b20;
  --btn-border:           #1e3d2f;
  --btn-outline-color:    #1e3d2f;
  --btn-outline-border:   #1e3d2f;
  --btn-outline-hover-bg: #1e3d2f;
  --btn-outline-hover-color: #ffffff;
  --topbar-bg:            #142b20;
  --nav-link-hover:       #C9A84C;
  --nav-active-color:     #C9A84C;
  --statsbar-bg:          #1e3d2f;
  --footer-bg:            #142b20;
  --check-color:          #4caf76;
  --divider-accent:       #4caf76;
}

/* ── ALTERNATE THEME: Navy Blue ── */
body.theme-navy {
  --color-primary:        #1a2744;
  --color-primary-hover:  #111a30;
  --color-accent:         #e8a020;
  --color-accent-hover:   #c8880a;
  --btn-bg:               #1a2744;
  --btn-color:            #ffffff;
  --btn-hover-bg:         #111a30;
  --btn-border:           #1a2744;
  --btn-outline-color:    #1a2744;
  --btn-outline-border:   #1a2744;
  --btn-outline-hover-bg: #1a2744;
  --btn-outline-hover-color: #ffffff;
  --topbar-bg:            #111a30;
  --nav-link-hover:       #e8a020;
  --nav-active-color:     #e8a020;
  --statsbar-bg:          #1a2744;
  --section-label-color:  #e8a020;
  --footer-bg:            #111a30;
  --check-color:          #e8a020;
  --divider-accent:       #e8a020;
}


/* ============================================================
   BASE STYLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
}

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

/* ── Custom scrollbar (optional) ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }


/* ============================================================
   UTILITY CLASSES (theme-aware)
   ============================================================ */
.text-accent     { color: var(--color-accent) !important; }
.bg-primary-theme { background-color: var(--color-primary) !important; }
.bg-accent       { background-color: var(--color-accent) !important; }
.bg-light-theme  { background-color: var(--bg-light) !important; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--section-label-color);
}

.divider-leaf {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 6px 0 18px;
}
.divider-leaf::before,
.divider-leaf::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--divider-accent);
}
.divider-leaf span {
  color: var(--divider-accent);
  font-size: 1.1rem;
}


/* ============================================================
   BUTTONS (override Bootstrap, use theme vars)
   ============================================================ */
.btn-theme {
  background-color: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid var(--btn-border);
  border-radius: 4px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
.btn-theme:hover,
.btn-theme:focus {
  background-color: var(--btn-hover-bg);
  color: var(--btn-color);
  border-color: var(--btn-hover-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.btn-outline-theme {
  background-color: transparent;
  color: var(--btn-outline-color);
  border: 2px solid var(--btn-outline-border);
  border-radius: 4px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}
.btn-outline-theme:hover,
.btn-outline-theme:focus {
  background-color: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-color);
  border-color: var(--btn-outline-hover-bg);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--btn-accent-bg);
  color: var(--btn-accent-color);
  border: 2px solid var(--btn-accent-bg);
  border-radius: 4px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background-color 0.25s ease, transform 0.15s ease;
}
.btn-accent:hover {
  background-color: var(--btn-accent-hover-bg);
  color: var(--btn-accent-color);
  border-color: var(--btn-accent-hover-bg);
  transform: translateY(-1px);
}

/* Arrow buttons */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }


/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.topbar {
  background-color: var(--topbar-bg);
  color: var(--text-on-primary);
  font-size: 0.78rem;
  padding: 7px 0;
}
.topbar a {
  color: var(--text-on-primary);
  transition: color 0.2s;
}
.topbar a:hover { color: var(--color-accent); }
.topbar .topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar .topbar-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar .topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar .topbar-social a {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.2s;
}
.topbar .topbar-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-navbar {
  background-color: var(--nav-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.site-navbar .navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}
.site-navbar .navbar-brand .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 600;
}
.brand-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.site-navbar .nav-link {
  color: var(--nav-link-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 14px !important;
  position: relative;
  transition: color 0.2s;
}
.site-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--nav-active-border);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--nav-active-color);
}
.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.site-navbar .btn-enquire {
  background-color: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  border-radius: 4px;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: background-color 0.25s, transform 0.15s;
}
.site-navbar .btn-enquire:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-color);
  transform: translateY(-1px);
}
.navbar-toggler {
  border-color: var(--color-primary);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2859%2C42%2C26%2C0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background-color: var(--bg-light);
  padding: 0px 0 50px;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.25);
}
.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.hero-section h1 .accent-word {
  color: var(--color-accent);
}
.hero-section p.lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Trust badges below CTA */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hero-badge .badge-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.hero-badge .badge-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Hero image */
/* .hero-image-wrap {
  position: relative;
  text-align: center;
}
.hero-image-wrap img {
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0z.12));
  max-height: 520px;
  object-fit: contain;
  width: 100%;
} */

.hero-image-wrap {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 0;
  filter: none;
  display: block;
  max-height: none;
}
.hero-section .col-lg-5 {
  padding: 70px 0 70px 0;
}
.hero-float-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.hero-float-badge .badge-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}


/* ============================================================
   STATS / FEATURES BAR
   ============================================================ */
.stats-bar {
  background-color: var(--statsbar-bg);
  padding: 28px 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--statsbar-text);
  padding: 8px 0;
}
.stat-item .stat-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--statsbar-icon-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.stat-item .stat-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.stat-item .stat-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}
.stats-bar .col-divider {
  border-right: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 767px) {
  .stats-bar .col-divider { border-right: none; }
}


/* ============================================================
   SECTION — PRODUCTS
   ============================================================ */
.products-section {
  padding: 30px 0;
  background-color: var(--bg-light);
}
.section-title-block {
  text-align: center;
  margin-bottom: 10px;
}
.section-title-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
}

/* .product-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.product-card-img {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 220px;
}
.product-card-img img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-card-body .product-sci {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.product-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.product-checklist li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}
.product-checklist li::before {
  content: '✓';
  color: var(--check-color);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.product-card .btn-view {
  margin-top: auto;
  align-self: flex-start;
} */


.product-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
  transform: translateY(-4px);
}
.product-card-img {
  width: 42%;
  flex-shrink: 0;
  background: var(--bg-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;          /* ← padding hatao */
  min-height: 300px;   /* ← minimum height do */
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ← contain ki jagah cover */
  object-position: center;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.product-card-body .product-sci {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.product-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.product-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.product-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text-dark);
  font-weight: 500;
}
.product-checklist li .pc-icon {
  color: var(--check-color);
  font-size: 1rem;
  flex-shrink: 0;
}
.product-card .btn-view {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 575px) {
  .product-card { flex-direction: column; }
  .product-card-img { width: 100%; min-height: 200px; }
  .product-card-body { padding: 22px 20px; }
}


/* ============================================================
   SECTION — WHY CHOOSE + ABOUT (split 3-col)
   ============================================================ */
.why-about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Why Choose */
.why-card {
  background: var(--color-primary);
  color: var(--text-on-primary);
  border-radius: 12px;
  padding: 36px 32px;
  height: 100%;
}
.why-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  line-height: 1.5;
}
.why-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-highlight {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  border-left: 3px solid var(--color-accent);
}

/* Center image */
.why-center-img {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}
.why-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About card */
.about-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 36px 32px;
  height: 100%;
  border: 1px solid var(--border-color);
}
.about-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}
.about-mini-stat {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 8px;
}
.about-mini-stat .stat-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}
.about-mini-stat .stat-val {
  font-size: 0.78rem;
  color: var(--text-dark);
  font-weight: 600;
}


/* ============================================================
   SECTION — SUPPLIERS & VENDORS
   ============================================================ */
.suppliers-section {
  padding: 0 0 70px;
  margin-top: -30px;
  background-color: #ffffff;
}
.supplier-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-primary);
}
@media (max-width: 767px) {
  .supplier-frame { aspect-ratio: 4 / 3; }
}
.supplier-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.supplier-slide.is-active {
  opacity: 1;
}
.supplier-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px) brightness(0.55);
  transform: scale(1.15);
}
.supplier-slide-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.supplier-frame-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}
.supplier-dots {
  display: flex;
  gap: 6px;
}
.supplier-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.3s ease;
}
.supplier-dots span.is-active {
  background: var(--color-accent);
}
.supplier-view-gallery {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.supplier-view-gallery i {
  transition: transform 0.2s ease;
}
.supplier-frame:hover .supplier-view-gallery i {
  transform: translateX(3px);
}

/* Lightbox modal grid */
#supplierGalleryModal .modal-content {
  background-color: var(--bg-light);
  border: none;
  border-radius: 12px;
}
#supplierGalleryModal .modal-header {
  border-bottom: 1px solid var(--border-color);
}
#supplierGalleryModal .modal-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 800;
}
.supplier-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.supplier-gallery-grid .sg-item {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.supplier-gallery-grid .sg-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.supplier-gallery-grid .sg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-size viewer overlay (opened from a gallery thumbnail) — true full-screen,
   independent of the modal panel size, so the photo shows as large as possible */
#supplierGalleryModal .modal-body {
  position: relative;
}
.supplier-full-viewer {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 4, 0.96);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.supplier-full-viewer img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}
.sfv-close,
.sfv-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.sfv-close:hover,
.sfv-nav:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.sfv-close {
  top: 12px;
  right: 12px;
}
.sfv-prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.sfv-next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   SECTION — CERTIFICATIONS
   ============================================================ */
.certifications-section {
  padding: 56px 0;
  background-color: var(--bg-light);
}
.cert-logo-wrap {
  min-height: 174px;
  width: 100%;
  padding: 18px 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-bottom: 3px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cert-logo-wrap:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(59,42,26,0.09);
}
.cert-logo {
  width: 88px;
  height: 88px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.1;
}
.cert-logo .cert-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cert-logo.cert-iec   { font-size: 1rem; letter-spacing: 1px; }
.cert-logo.cert-iso   { font-size: 0.7rem; }
.cert-logo.cert-fssai { font-size: 0.7rem; color: #0057a8; }
.cert-logo.cert-apeda { color: #2e7d32; }
.cert-logo.cert-msme  { font-size: 0.65rem; letter-spacing: 0.5px; }
.cert-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}
.btn-view-certs {
  border: 1px solid var(--btn-outline-border);
  color: var(--btn-outline-color);
  border-radius: 4px;
  padding: 10px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  background: transparent;
}
.btn-view-certs:hover {
  background: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-color);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🌿';
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.cta-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.7;
}
.cta-banner .btn-accent {
  white-space: nowrap;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 0;
}
.footer-export-markets {
  display: none;
}
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--footer-heading);
  line-height: 1.1;
}
.footer-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--footer-text);
  line-height: 1.7;
  margin: 14px 0 18px;
  max-width: 240px;
}
.site-footer .footer-logo-panel {
  background: #fffaf1;
  border-left: 4px solid var(--color-accent);
  border-radius: 3px;
  display: inline-flex;
  margin: 0;
  padding: 10px 14px;
}
.site-footer .footer-logo-panel img {
  display: block;
  height: auto;
  max-width: 180px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-link);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--footer-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--footer-link);
  font-size: 0.82rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--footer-link-hover);
  padding-left: 4px;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--footer-text);
  line-height: 1.5;
}
.footer-contact-list li .fi {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list a {
  color: var(--footer-link);
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--footer-link-hover); }

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--color-accent); }


/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .hero-section { padding: 50px 0 40px; }
  .hero-section h1 { font-size: 2rem; }
  .hero-image-wrap { margin-top: 40px; }
  .hero-float-badge { display: none; }
  .why-center-img { min-height: 260px; }
  .about-mini-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .topbar .topbar-brand { display: none; }
  .stats-bar .stat-item { justify-content: center; text-align: left; }
  .hero-badges { gap: 14px; }
  .product-checklist { grid-template-columns: 1fr; }
  .about-mini-stats { grid-template-columns: repeat(3, 1fr); }
  .cta-banner { padding: 48px 0; text-align: center; }
  .cta-banner .d-flex { flex-direction: column; align-items: center !important; gap: 16px; }
  .cta-banner p { margin: 0 auto; }
}

@media (max-width: 575px) {
  .hero-cta .btn-theme,
  .hero-cta .btn-outline-theme { width: 100%; text-align: center; justify-content: center; }
  .about-mini-stats { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   INNER PAGE — SHARED COMPONENTS
   (used by about.html, certifications.html, contact.html)
   ============================================================ */

/* ── Page Hero Banner ── */
.page-hero {
  background-color: var(--bg-light);
  overflow: hidden;
  position: relative;
  min-height: 370px;
  display: flex;
  align-items: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-light) 45%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  object-fit: cover;
  object-position: center top;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}
.page-hero-content .breadcrumb {
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.page-hero-content .breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
}
.page-hero-content .breadcrumb-item a:hover { color: var(--color-accent); }
.page-hero-content .breadcrumb-item.active { color: var(--color-accent); }
.page-hero-content .breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--text-muted);
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.page-hero-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin: 0;
}
.page-hero-divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 12px 0 16px;
}

@media (max-width: 767px) {
  .page-hero-img { display: none; }
  .page-hero::after { display: none; }
  .page-hero-content { padding: 36px 0; }
}


/* ── Numeric Stats Strip ── */
.num-stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
}
.num-stat {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--border-color);
}
.num-stat:last-child { border-right: none; }
.num-stat .ns-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  color: var(--color-accent);
  font-size: 1.3rem;
}
.num-stat .ns-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.num-stat .ns-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 575px) {
  .num-stat { border-right: none; border-bottom: 1px solid var(--border-color); }
  .num-stat:last-child { border-bottom: none; }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Who We Are section */
.who-we-are {
  padding: 80px 0;
  background: var(--bg-light);
}
.who-we-are .wwa-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.who-we-are h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.who-we-are p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.who-we-are .wwa-center-img {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}
.who-we-are .wwa-center-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Mission / Vision / Values cards */
.mvv-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.mvv-card:last-child { margin-bottom: 0; }
.mvv-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  transform: translateX(4px);
}
.mvv-card .mvv-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mvv-card .mvv-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.mvv-card .mvv-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}


/* ============================================================
   CERTIFICATIONS PAGE
   ============================================================ */
.certs-main {
  padding: 80px 0;
  background: var(--bg-light);
}
.certs-main .section-title-block p.desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 8px auto 0;
  line-height: 1.75;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.cert-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}
.cert-card .cert-badge {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
}
.cert-card .cert-badge.iec  { background: #1565c0; color: #fff; font-size: 1.3rem; letter-spacing: 2px; }
.cert-card .cert-badge.gst  { background: var(--bg-light); border: 2px solid var(--border-color); color: var(--color-primary); font-size: 0.9rem; }
.cert-card .cert-badge.apeda{ background: #e8f5e9; color: #2e7d32; font-size: 0.8rem; }
.cert-card .cert-badge.fssai{ background: #fff; border: 2px solid #e0e0e0; color: #0057a8; font-size: 0.85rem; }
.cert-card .cert-badge.msme { background: #212121; color: #fff; font-size: 0.72rem; letter-spacing: 1px; }
.cert-card .cert-badge.iso  { background: #0d47a1; color: #fff; font-size: 0.72rem; border-radius: 50%; }
.cert-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cert-card .cert-sub {
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.cert-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Cert feature strip */
.cert-features {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 28px 0;
  margin-top: 60px;
}
.cert-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  border-right: 1px solid var(--border-color);
}
.cert-feature-item:last-child { border-right: none; }
.cert-feature-item .cfi-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.cert-feature-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
}
.cert-feature-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .cert-feature-item { border-right: none; border-bottom: 1px solid var(--border-color); }
  .cert-feature-item:last-child { border-bottom: none; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main {
  padding: 80px 0;
  background: var(--bg-light);
}

/* Contact info card */
.contact-info-card {
  background: var(--color-primary);
  border-radius: 12px;
  padding: 36px 32px;
  height: 100%;
  color: var(--text-on-primary);
}
.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.ci-item .ci-icon {
  width: 40px; height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ci-item .ci-text h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.ci-item .ci-text p,
.ci-item .ci-text a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.55;
  text-decoration: none;
}
.ci-item .ci-text a:hover { color: var(--color-accent); }

.ci-social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.ci-social-row a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.ci-social-row a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Contact form card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 36px 32px;
  height: 100%;
}
.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-form-card .form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.85rem;
  padding: 10px 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: #fff;
  outline: none;
}
.contact-form-card .form-control::placeholder { color: #aaa; }
.contact-form-card textarea.form-control { resize: vertical; min-height: 120px; }
.contact-form-card .privacy-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.contact-form-card .privacy-note i { color: var(--color-accent); }

/* Map section */
.map-section {
  padding: 0 0 80px;
  background: var(--bg-light);
}
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
}
.map-overlay-card {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 18px 20px;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  max-width: 240px;
}
.map-overlay-card .moc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.map-overlay-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .contact-info-card, .contact-form-card { padding: 24px 20px; }
  .map-overlay-card { display: none; }
}


/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

/* Intro section */
.products-intro {
  padding: 80px 0 20px;
  background: var(--bg-light);
}
.products-intro .section-title-block p.pi-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 8px auto 0;
  line-height: 1.75;
}

/* Large horizontal product card */
.product-h-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  margin-bottom: 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-h-card:hover {
  box-shadow: 0 14px 44px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.product-h-card .phc-img {
  width: 280px;
  flex-shrink: 0;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}
.product-h-card .phc-img img {
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-h-card:hover .phc-img img { transform: scale(1.05); }
.product-h-card .phc-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.product-h-card .phc-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.product-h-card .phc-body .phc-sci {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.product-h-card .phc-body .phc-divider {
  width: 40px; height: 2px;
  background: var(--color-accent);
  margin-bottom: 14px;
  border-radius: 1px;
}
.product-h-card .phc-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.product-h-card .phc-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-h-card .phc-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
}
.product-h-card .phc-checklist li::before {
  content: '✓';
  color: var(--check-color);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .product-h-card { flex-direction: column; }
  .product-h-card .phc-img { width: 100%; min-height: 200px; }
  .product-h-card .phc-body { padding: 24px 20px; }
  .product-h-card .phc-checklist { grid-template-columns: 1fr; }
}

/* Features icon strip */
.product-features-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 36px 0;
  margin: 48px 0;
}
.pf-item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--border-color);
}
.pf-item:last-child { border-right: none; }
.pf-item .pf-icon {
  width: 54px; height: 54px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--color-accent);
  font-size: 1.3rem;
  transition: all 0.25s;
}
.pf-item:hover .pf-icon {
  border-color: var(--color-accent);
  background: rgba(201,168,76,0.08);
}
.pf-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.pf-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 575px) {
  .pf-item { border-right: none; border-bottom: 1px solid var(--border-color); padding: 16px 0; }
  .pf-item:last-child { border-bottom: none; }
}

/* Commitment section */
.commitment-section {
  padding: 20px 0 80px;
  background: var(--bg-light);
}
.commitment-section .comm-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.commitment-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}
.commitment-section h2 .accent-word { color: var(--color-accent); }
.commitment-section p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.comm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.comm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 500;
}
.comm-list li::before {
  content: '✓';
  color: var(--check-color);
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.commitment-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.commitment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  border-radius: 14px;
  display: block;
}
.comm-float-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}
.comm-float-badge .cfb-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
}
.comm-float-badge .cfb-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.comm-float-badge .cfb-text span {
  font-size: 0.73rem;
  color: var(--text-muted);
}


/* ============================================================
   QUALITY ASSURANCE PAGE
   ============================================================ */

/* Quality pillars grid */
.quality-pillars {
  padding: 80px 0 60px;
  background: var(--bg-light);
}
.quality-pillars .qp-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 8px auto 48px;
  line-height: 1.75;
}
.pillar-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.pillar-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}
.pillar-card .pc-icon {
  width: 58px; height: 58px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
  font-size: 1.4rem;
  transition: all 0.25s;
}
.pillar-card:hover .pc-icon {
  border-color: var(--color-accent);
  background: rgba(201,168,76,0.08);
}
.pillar-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Process timeline */
.quality-process {
  padding: 70px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.quality-process .qp-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 8px auto 52px;
  line-height: 1.75;
}
.process-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(8.33% + 14px);
  right: calc(8.33% + 14px);
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}
.process-step .ps-num {
  width: 56px; height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 14px;
  border: 3px solid var(--bg-card);
  box-shadow: 0 0 0 2px var(--color-primary);
  position: relative;
  z-index: 2;
}
.process-step .ps-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  color: var(--color-accent);
  font-size: 1.1rem;
}
.process-step h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 767px) {
  .process-track {
    flex-direction: column;
    gap: 0;
    max-width: 340px;
    margin: 0 auto;
  }
  .process-track::before {
    top: 28px; bottom: 28px;
    left: 28px; right: auto;
    width: 2px; height: auto;
  }
  .process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 28px;
  }
  .process-step .ps-num { margin: 0; flex-shrink: 0; }
  .process-step .ps-icon { display: none; }
}

/* Quality standards split */
.quality-standards {
  padding: 80px 0;
  background: var(--bg-light);
}
.quality-standards .qs-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}
.quality-standards .qs-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 380px;
}
.quality-standards .qs-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quality-standards h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.qs-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.qs-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}
.qs-check-list li:last-child { border-bottom: none; }
.qs-check-list li .ql-icon {
  color: var(--check-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.qs-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.qs-badge .qsb-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.qs-badge .qsb-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
}
.qs-badge .qsb-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.toast {

    width:390px;

    border-radius:18px;

    box-shadow:
    0 20px 45px rgba(0,0,0,.18);

    overflow:hidden;

}

.toast-body p{

    margin-bottom:12px;

}

.reference-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#F7F2E8;

    border-radius:10px;

    padding:12px 15px;

    margin:15px 0;

    font-family:Consolas, monospace;

    font-size:15px;

}

.copy-btn{

    border:none;

    background:none;

    cursor:pointer;

    font-size:18px;

}

/* ============================================================
   SECTION — PRODUCT DETAIL PAGES (Ashwagandha / Moringa)
   ============================================================ */
.pd-hero {
  padding: 56px 0 24px;
  background: var(--bg-light);
}
.pd-hero h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  margin: 12px 0 14px;
}
.pd-hero h1 .accent-word {
  color: var(--color-accent);
}
.pd-hero .lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 0;
}
.pd-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  min-height: 320px;
  height: 100%;
}
.pd-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .pd-hero-image { min-height: 260px; margin-top: 28px; }
}

.pd-specs-section {
  padding: 50px 0 70px;
  background: var(--bg-card);
}
.spec-card,
.why-choose-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 26px 28px;
  height: 100%;
}
.spec-card h3,
.why-choose-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.spec-table tr {
  border-bottom: 1px solid var(--border-color);
}
.spec-table tr:last-child {
  border-bottom: none;
}
.spec-table td {
  padding: 10px 4px;
  vertical-align: top;
}
.spec-table td:first-child {
  color: var(--text-dark);
  font-weight: 700;
  width: 42%;
}
.spec-table td:last-child {
  color: var(--text-muted);
}
.why-choose-card {
  position: relative;
  overflow: hidden;
}
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.why-choose-list li i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.why-choose-img {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  object-fit: cover;
  float: right;
  border: 4px solid var(--bg-light);
  margin-top: 4px;
}

.suppliers-band {
  background: var(--color-primary);
  padding: 44px 0 0;
  text-align: center;
}
.suppliers-band h2 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.suppliers-band p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  max-width: 520px;
  margin: 0 auto 28px;
}
.suppliers-band-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.suppliers-band-photos img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .suppliers-band-photos { grid-template-columns: repeat(2, 1fr); }
  .suppliers-band-photos img { height: 160px; }
  .why-choose-img { display: none; }
}
