/* ============================================================
   SHAKTIRANG — GLASSMORPHISM + FULLY LIGHT THEME
   ============================================================ */

/* ── CSS PROPERTIES ───────────────────────────────────────────── */
:root {
  --glass-bg:       rgba(255, 255, 255, 0.55);
  --glass-bg-light: rgba(255, 255, 255, 0.78);
  --glass-border:   rgba(255, 255, 255, 0.68);
  --glass-shadow:   0 8px 32px rgba(31, 38, 135, 0.13);
  --glass-blur:     blur(12px);
  --section-a:      linear-gradient(160deg, #fff3e8 0%, #fdf0f8 100%);
  --section-b:      linear-gradient(160deg, #f0eaff 0%, #fdf8f0 100%);
  --section-c:      linear-gradient(160deg, #eef6ff 0%, #fff3e8 100%);
}

/* ── BODY: warm Holi-inspired pastel gradient ─────────────────── */
body {
  background: linear-gradient(135deg,
    #fff8f0 0%,
    #fef0f8 20%,
    #f5eeff 45%,
    #eef6ff 70%,
    #fff8f0 100%);
  background-attachment: fixed;
}

/* ── SKIP LINK (Accessibility) ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 16px;
  z-index: 100000;
  background: #1B3C8F;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 6px 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #C8892A;
  outline-offset: 2px;
}

/* ── ANNOUNCE BAR ─────────────────────────────────────────────── */
.announce {
  background: rgba(255, 248, 240, 0.9) !important;
  color: var(--text-d) !important;
  border-bottom: 1px solid rgba(200, 137, 42, 0.2);
}
.announce a { color: var(--gold) !important; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  NAV — fully light frosted glass                            ║
   ╚══════════════════════════════════════════════════════════════╝ */
.nav {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(27, 60, 143, 0.1);
  box-shadow: 0 2px 24px rgba(27, 60, 143, 0.08) !important;
}
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(27, 60, 143, 0.13) !important;
}

/* Nav links */
.nav-left a,
.nav-right a {
  color: var(--text-d) !important;
  font-weight: 700 !important;
}
.nav-left a:hover,
.nav-right a:hover {
  color: var(--blue) !important;
  background: rgba(27, 60, 143, 0.07) !important;
}

/* Nav icons */
.nav-icon {
  color: var(--text-d) !important;
}
.nav-icon:hover {
  background: rgba(27, 60, 143, 0.08) !important;
  color: var(--blue) !important;
}

/* Logo tagline under logo image */
.nav-logo span { color: var(--text-s) !important; }

/* Hamburger lines → dark */
.hamburger span { background: var(--text-d) !important; }

/* ── MOBILE NAV ───────────────────────────────────────────────── */
.mobile-nav {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}
.mobile-links a {
  color: var(--text-d) !important;
}
.mobile-links a:hover {
  background: rgba(27, 60, 143, 0.07) !important;
  color: var(--blue) !important;
}
.mobile-close {
  background: rgba(27, 60, 143, 0.08) !important;
  color: var(--text-d) !important;
}

/* ── SECTION BACKGROUNDS (dark → warm light) ──────────────────── */
.season-band      { background: var(--section-a) !important; }
.catalogue-band   { background: var(--section-b) !important; }
.cta-band         { background: var(--section-c) !important; }
.catalogue-band::before,
.cta-band::before { display: none !important; }

/* Season wave container (was dark blue) */
.season-wave { background: #fdf0f8 !important; }

/* ── WAVE SVG FILLS ───────────────────────────────────────────── */
.hero .wave svg path    { fill: #fff3e8 !important; }
.season-wave svg path   { fill: #fdf8f0 !important; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  GLASS CARDS                                                ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* Remove postcard dashed inner borders — cleaner on glass */
.season-card::before,
.product-card::before,
.stamp-card::before,
.cat-download-card::before { display: none !important; }

/* Season cards */
.season-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}
.season-card:hover {
  box-shadow: 0 20px 56px rgba(31, 38, 135, 0.18) !important;
}

/* Flipkart product cards */
.product-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}
.product-card:hover {
  box-shadow: 0 20px 56px rgba(31, 38, 135, 0.18) !important;
  border-color: rgba(27, 60, 143, 0.22) !important;
}
.product-card-footer {
  background: rgba(255, 255, 255, 0.35) !important;
  border-top-color: rgba(27, 60, 143, 0.1) !important;
}

/* Catalogue download cards */
.cat-download-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid rgba(27, 60, 143, 0.14) !important;
  box-shadow: var(--glass-shadow) !important;
}
.cat-download-card:hover { background: var(--glass-bg-light) !important; }

/* Why Shree feature tiles */
.why-feat {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}
.why-feat:hover {
  box-shadow: 0 12px 36px rgba(31, 38, 135, 0.16) !important;
}

/* Why visual card (was dark blue) */
.why-visual-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid rgba(27, 60, 143, 0.13) !important;
  box-shadow: var(--glass-shadow) !important;
}
.why-visual-card::before { border-color: rgba(27, 60, 143, 0.12) !important; }
.why-stats   { background: rgba(27, 60, 143, 0.05) !important; }
.why-stat    { border-right-color: rgba(27, 60, 143, 0.09) !important; }
.why-stat-n  { color: var(--gold) !important; }
.why-stat-l  { color: var(--text-m) !important; }
.why-img p   { color: var(--text-s) !important; }

/* Testimonial stamp cards */
.stamp-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: 0 20px 60px rgba(31, 38, 135, 0.11) !important;
  outline: none !important;
}

/* Inquiry form card */
.form-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid rgba(27, 60, 143, 0.13) !important;
  box-shadow: var(--glass-shadow) !important;
}
.form-card::before { border-color: rgba(27, 60, 143, 0.1) !important; }
.fg input, .fg select, .fg textarea {
  background: rgba(255, 255, 255, 0.72) !important;
}

/* Hero postcard visual */
.hero-postcard {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid rgba(27, 60, 143, 0.13) !important;
  box-shadow: var(--glass-shadow) !important;
}
.hero-postcard::before { border-color: rgba(27, 60, 143, 0.12) !important; }
.hero-float {
  background: var(--glass-bg-light) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* FAQ items */
.faq-item {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid var(--glass-border) !important;
}
.faq-q:hover,
.faq-q[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.65) !important;
}

/* Product page cards */
.prod-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}
.prod-card::before { display: none !important; }
.prod-card:hover   { box-shadow: 0 16px 48px rgba(31, 38, 135, 0.18) !important; }
.prod-card-footer  {
  background: rgba(255, 255, 255, 0.35) !important;
  border-top-color: rgba(27, 60, 143, 0.1) !important;
}

/* Wholesale / about / contact page cards */
.trust-card, .process-card, .export-card,
.timeline-card, .value-card, .gen-card,
.contact-card, .shop-card,
.variant-card, .spec-card, .bulk-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}

/* ── TEXT FIXES: was white on dark ────────────────────────────── */

/* Season section */
.season-hdr h2         { color: var(--text-d) !important; }
.season-hdr h2 em      { color: var(--blue)   !important; }
.season-hdr .section-tag {
  background: rgba(27, 60, 143, 0.08) !important;
  color: var(--blue) !important;
}
.season-sub { color: var(--text-m) !important; }

/* Catalogue section */
.catalogue-text h2            { color: var(--text-d) !important; }
.catalogue-text p             { color: var(--text-m) !important; }
.cat-download-card .cat-title { color: var(--text-d) !important; }
.cat-download-card .cat-sub   { color: var(--text-s) !important; }
.cat-download-card .cat-btn   { color: var(--blue)   !important; }

/* CTA section */
.cta-text h2 { color: var(--text-d) !important; }
.cta-text p  { color: var(--text-m) !important; }
.btn-white {
  background: var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(27, 60, 143, 0.28) !important;
}
.btn-white:hover { background: var(--blue-dark) !important; }
.btn-outline-white {
  color: var(--blue) !important;
  border-color: rgba(27, 60, 143, 0.4) !important;
  background: transparent !important;
}
.btn-outline-white:hover {
  background: var(--blue) !important;
  color: #fff !important;
  border-color: var(--blue) !important;
}

/* Keep ghost buttons white inside sections that stay dark blue */
.wholesale-cta .btn-outline-white,
.page-hero .btn-outline-white,
.b2b-band .btn-outline-white,
.markets .btn-outline-white {
  color: #fff !important;
  border-color: rgba(255,255,255,0.45) !important;
}
.wholesale-cta .btn-outline-white:hover,
.page-hero .btn-outline-white:hover,
.b2b-band .btn-outline-white:hover,
.markets .btn-outline-white:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.7) !important;
  color: #fff !important;
}
/* Wholesale Enquiry button inside wholesale-cta stays white bg + blue text */
.wholesale-cta .btn-white {
  background: #fff !important;
  color: var(--blue) !important;
}

/* Product page hero bands */
.prod-hero { background: var(--section-a) !important; }
.prod-hero-text h1,
.prod-hero-text p         { color: var(--text-d) !important; }
.prod-hero-text h1 em     { color: var(--blue)   !important; }
.prod-hero-text .section-tag {
  background: rgba(27, 60, 143, 0.08) !important;
  color: var(--blue) !important;
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  FOOTER — fully light                                       ║
   ╚══════════════════════════════════════════════════════════════╝ */
footer {
  background: linear-gradient(160deg, #fdf8f0 0%, #f5eeff 100%) !important;
  backdrop-filter: none !important;
  border-top: 1px solid rgba(27, 60, 143, 0.1);
}

/* Footer text — explicit hex, no CSS variable dependency */
.footer-about { color: #3A4F7A !important; }

.f-contact        { color: #3A4F7A !important; }
.f-contact a      { color: #3A4F7A !important; }
.f-contact a:hover { color: #C8892A !important; }
.f-contact-icon   { color: #C8892A !important; }

/* .f-c / .f-ci used on shop.html + product pages */
.f-c              { color: #3A4F7A !important; }
.f-c a            { color: #3A4F7A !important; }
.f-c a:hover      { color: #C8892A !important; }
.f-ci             { color: #C8892A !important; }

.footer-col h4    { color: #0D1E4A !important; }
.footer-col ul a  { color: #3A4F7A !important; }
.footer-col ul a:hover { color: #C8892A !important; }

.footer-bottom p  { color: #6B7FA8 !important; }
.footer-bottom a  { color: #1B3C8F !important; }
.footer-bottom-links a       { color: #6B7FA8 !important; }
.footer-bottom-links a:hover { color: #C8892A !important; }
.footer-bottom { border-top-color: rgba(27, 60, 143, 0.1) !important; }

/* Footer social icons — dark on light */
.fsocial {
  background: rgba(27, 60, 143, 0.07) !important;
  border-color: rgba(27, 60, 143, 0.12) !important;
  color: #3A4F7A !important;
}
.fsocial:hover {
  background: #C8892A !important;
  border-color: #C8892A !important;
  color: #fff !important;
}

/* Footer logos */
.footer-logos { display: flex !important; align-items: center !important; gap: 16px !important; flex-wrap: wrap !important; margin-bottom: 18px !important; }
.footer-logo-shaktirang { height: 68px !important; width: auto !important; display: block !important; }
.footer-logo-shree      { height: 52px !important; width: auto !important; display: block !important; opacity: 0.9; }

/* Footer logos — remove brightness filter (was for dark bg) */
.footer-logos img,
.footer-logos img.logo-main { filter: none !important; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  DUAL LOGO IN NAV                                           ║
   ╚══════════════════════════════════════════════════════════════╝ */
.nav-inner { height: 96px !important; }

.nav-logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
}
.nav-logo-primary {
  height: 86px !important;
  width: auto !important;
  max-height: 86px !important;
  display: block !important;
}
.nav-logo-secondary {
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  display: block !important;
  opacity: 0.92;
}
.nav-logo-sep {
  display: block !important;
  width: 1px !important;
  height: 42px !important;
  background: rgba(27, 60, 143, 0.18) !important;
  flex-shrink: 0 !important;
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  CATALOGUE DOWNLOAD GATE MODAL                              ║
   ╚══════════════════════════════════════════════════════════════╝ */
.cg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(10, 20, 60, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cg-overlay.cg-visible {
  display: flex;
}
.cg-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(10,20,60,0.22);
  padding: 40px 44px 36px;
  width: 100%;
  max-width: 540px;
  position: relative;
  animation: cgSlideUp .28s cubic-bezier(.22,.68,0,1.2) both;
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes cgSlideUp {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cg-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(27,60,143,0.07);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: #1B3C8F;
  line-height: 1;
  transition: background .18s;
}
.cg-close:hover { background: rgba(27,60,143,0.14); }
.cg-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.cg-title {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0D1E4A;
  margin: 0 0 8px;
  line-height: 1.2;
}
.cg-sub {
  font-size: 14px;
  color: #4A5E82;
  margin: 0 0 24px;
  line-height: 1.55;
}
.cg-field {
  margin-bottom: 16px;
  flex: 1;
}
.cg-row {
  display: flex;
  gap: 14px;
}
.cg-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0D1E4A;
  margin-bottom: 5px;
  letter-spacing: .02em;
}
.cg-req { color: #C8892A; }
.cg-opt { color: #8A9BC0; font-weight: 400; }
.cg-field input,
.cg-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #D4DCF0;
  border-radius: 9px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  color: #0D1E4A;
  background: #F8FAFF;
  transition: border .18s, box-shadow .18s;
  box-sizing: border-box;
}
.cg-field input:focus,
.cg-field select:focus {
  outline: none;
  border-color: #1B3C8F;
  box-shadow: 0 0 0 3px rgba(27,60,143,0.12);
  background: #fff;
}
.cg-field input.cg-invalid,
.cg-field select.cg-invalid {
  border-color: #d9534f;
}
.cg-err {
  display: none;
  font-size: 12px;
  color: #d9534f;
  margin-top: 3px;
}
.cg-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #C8892A 0%, #E8A832 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .18s, background .3s;
  letter-spacing: .02em;
}
.cg-btn:hover:not(:disabled) { opacity: .92; }
.cg-btn:disabled { cursor: not-allowed; opacity: .75; }
.cg-note {
  text-align: center;
  font-size: 12px;
  color: #8A9BC0;
  margin: 10px 0 0;
}
@media (max-width: 520px) {
  .cg-modal { padding: 28px 22px 24px; }
  .cg-row   { flex-direction: column; gap: 0; }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  SEARCH OVERLAY                                             ║
   ╚══════════════════════════════════════════════════════════════╝ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.search-overlay.open { display: flex; }
.search-overlay-inner { width: 100%; max-width: 680px; }
.search-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(27,60,143,0.08);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-d);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.search-close:hover { background: var(--blue); color: #fff; }
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 60px;
  padding: 12px 20px;
  box-shadow: 0 8px 32px rgba(27,60,143,0.12);
  margin-bottom: 28px;
}
.search-input-wrap span { font-size: 18px; flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-d);
  background: transparent;
}
.search-hint {
  font-size: 13px;
  color: var(--text-s);
  text-align: center;
  margin-bottom: 24px;
}
.search-results { display: flex; flex-direction: column; gap: 10px; }
.search-result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(27,60,143,0.12);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  box-shadow: 0 2px 12px rgba(27,60,143,0.06);
}
.search-result:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(27,60,143,0.14);
  transform: translateY(-2px);
}
.search-result-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-lite);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.search-result-body { flex: 1; }
.search-result-title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-d);
  margin-bottom: 3px;
}
.search-result-desc {
  font-size: 12px;
  color: var(--text-s);
  line-height: 1.55;
}
.search-result-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lite);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.search-no-results {
  text-align: center;
  padding: 40px 0;
  color: var(--text-s);
  font-size: 14px;
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  MOBILE NAV — hamburger + compact logos                     ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media (max-width: 768px) {
  /* Switch from grid to flex so hamburger renders in the same row as logo */
  .nav-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 68px !important;
  }
  /* Scale down logos for mobile */
  .nav-logo-primary {
    height: 46px !important;
    max-height: 46px !important;
  }
  .nav-logo-secondary {
    height: 32px !important;
    max-height: 32px !important;
  }
  .nav-logo-sep {
    height: 24px !important;
  }
}

/* ── REDUCED MOTION FALLBACK ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  PRODUCT CARD FLEX — equal-height cards, buttons aligned    ║
   ╚══════════════════════════════════════════════════════════════╝ */
.prod-card {
  display: flex !important;
  flex-direction: column !important;
}
.prod-card-body {
  flex: 1 !important;
}
/* Description line-clamp (up to 4 lines, expandable) */
.prod-card-body p {
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.prod-card-body p.expanded {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}
/* Show more / Show less toggle button */
.show-more-btn {
  background: none !important;
  border: none !important;
  color: var(--blue) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 0 0 6px !important;
  text-align: left !important;
  letter-spacing: .02em !important;
  display: block !important;
}
.show-more-btn:hover { text-decoration: underline !important; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  PAGE HERO — light glassmorphism (was dark blue)            ║
   ╚══════════════════════════════════════════════════════════════╝ */
.page-hero {
  background: linear-gradient(160deg, #eef6ff 0%, #fff8f0 100%) !important;
}
.page-hero::before { display: none !important; }

/* Headings */
.page-hero h1,
.page-hero h2 { color: var(--text-d) !important; }
.page-hero h1 em,
.page-hero h2 em { color: var(--blue) !important; }
.page-hero p   { color: var(--text-m) !important; }

/* Badge/label spans with white-transparent backgrounds */
.page-hero span[style*="rgba(255,255,255"] {
  background: rgba(27, 60, 143, 0.08) !important;
  color: var(--blue) !important;
  border-color: rgba(27, 60, 143, 0.18) !important;
}
/* First span in hero-inner (section sub-label) */
.page-hero-inner > div > span:first-child {
  background: rgba(27, 60, 143, 0.08) !important;
  color: var(--blue) !important;
}

/* Outline / transparent border CTA links */
.page-hero a[style*="transparent"] {
  color: var(--blue) !important;
  border-color: rgba(27, 60, 143, 0.35) !important;
}
/* Outline button (e.g. "Download Catalogue" on about page — was white on dark) */
.page-hero .btn-outline {
  color: var(--blue) !important;
  border-color: rgba(27, 60, 143, 0.4) !important;
  background: transparent !important;
}
.page-hero .btn-outline:hover {
  background: var(--blue) !important;
  color: #fff !important;
  border-color: var(--blue) !important;
}

/* Gold and blue filled buttons stay as-is */
.page-hero .btn-gold {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}
.page-hero .btn-blue {
  background: var(--blue) !important;
  color: #fff !important;
}

/* Hero stat cards (wholesale uses .hero-stat-card, about uses .hero-stamp) */
.hero-stat-card,
.hero-stamp {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(27, 60, 143, 0.12) !important;
  box-shadow: 0 4px 18px rgba(27, 60, 143, 0.08) !important;
}
/* Remove dashed inner border on wholesale stat cards */
.hero-stat-card::before { display: none !important; }

.stat-n              { color: var(--gold) !important; }
.stat-l              { color: var(--text-d) !important; }
.stat-sub            { color: var(--text-m) !important; }
/* about.html uses .hero-stamp .stat-l (higher specificity) — override explicitly */
.hero-stamp .stat-l  { color: var(--text-m) !important; }
.hero-stamp .stat-n  { color: var(--gold) !important; }

/* Wave fill to match new light hero */
.page-hero .wave svg path { fill: var(--cream) !important; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  B2B BAND — light glassmorphism (was dark blue)             ║
   ╚══════════════════════════════════════════════════════════════╝ */
.b2b-band {
  background: linear-gradient(160deg, #f0eaff 0%, #eef6ff 100%) !important;
}
.b2b-band::before { display: none !important; }

/* Text overrides */
.b2b-band h2,
.b2b-band .stitle        { color: var(--text-d) !important; }
.b2b-band h2 em,
.b2b-band .stitle em     { color: var(--blue) !important; }
.b2b-band > .container > .b2b-inner > div > p,
.b2b-band p              { color: var(--text-m) !important; }

/* Sub-label spans in b2b-band */
.b2b-band span[style*="rgba(255,255,255"] {
  background: rgba(27, 60, 143, 0.08) !important;
  color: var(--blue) !important;
}

/* Feature list items */
.b2b-feat {
  background: rgba(27, 60, 143, 0.06) !important;
  border-color: rgba(27, 60, 143, 0.12) !important;
}
.b2b-feat-icon {
  background: rgba(27, 60, 143, 0.1) !important;
  color: var(--blue) !important;
}
.b2b-feat strong { color: var(--text-d) !important; }
.b2b-feat span   { color: var(--text-m) !important; }

/* Transparent border CTA inside b2b-band */
.b2b-band a[style*="transparent"] {
  color: var(--blue) !important;
  border-color: rgba(27, 60, 143, 0.35) !important;
}
/* Gold button stays gold */
.b2b-band .btn-blue[style*="gold"],
.b2b-band .btn-blue[style*="var(--gold)"] {
  background: var(--gold) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(200, 137, 42, 0.4) !important;
}

/* Form helper text (was near-invisible white on light bg) */
.b2b-band .form-card p[style*="rgba(255,255,255"] { color: var(--text-s) !important; }

/* Form divider (was white lines on dark, now use border tone) */
.form-divider          { color: var(--text-s) !important; }
.form-divider::before,
.form-divider::after   { background: var(--border) !important; }

/* WhatsApp form button SVG fill fix */
.wa-form-btn svg path  { fill: #fff !important; }

/* Footer inline links (were rgba(255,255,255,.28) on dark footer, now light) */
.footer-bottom a[style*="rgba(255,255,255"] { color: var(--text-m) !important; }
