/* ══════════════════════════════════════════
   EWA INDIA — Main Stylesheet
   Fonts: Schibsted Grotesk (headings)
          Hanken Grotesk (body)
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --cream:       #F6F1EB;
  --dark:        #1E1933;
  --dark2:       #252040;
  --dark3:       #1E1933;
  --lavender:    #EDE6F5;
  --lavender2:   #B8A7D6;
  --sage:        #EAF0E0;
  --sage2:       #A7B48A;
  --pink:        #F4E6EA;
  --warm-beige:  #EFE9DC;
  --brown1:      #5C544B;
  --brown2:      #3A352F;
  --muted:       #8A8278;
  --border:      #E7DFD3;
  --card-bg:     #FFFDFC;
  --font-head:   'Schibsted Grotesk', system-ui, sans-serif;
  --font-body:   'Hanken Grotesk', system-ui, sans-serif;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --shadow-sm:   0 4px 16px rgba(11,11,11,0.06);
  --shadow-md:   0 12px 32px rgba(11,11,11,0.10);
  --shadow-lg:   0 24px 56px rgba(11,11,11,0.16);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark3);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6, .font-head {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.display-hero {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.display-lg {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-md {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-sm {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ── Announcement Bar ── */
.ewa-announce {
  background: #1E1933;
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}

/* ── Navbar ── */
.ewa-navbar {
  background: rgba(246, 241, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ewa-navbar .navbar-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.14em;
  color: var(--dark3);
  text-decoration: none;
}

.ewa-navbar .nav-link {
  color: var(--brown2);
  font-weight: 500;
  font-size: 15px;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  margin: 0 10px;
}

.ewa-navbar .nav-link:hover,
.ewa-navbar .nav-link.active {
  color: var(--dark);
  border-bottom-color: var(--dark);
}

.btn-shop-nav {
  background: #1E1933;
  color: var(--cream) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.btn-shop-nav:hover { opacity: 0.85; color: var(--cream) !important; }

/* Cart icon */
.cart-icon-wrap {
  position: relative;
  cursor: pointer;
  padding: 4px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--lavender2);
  color: var(--dark3);
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge.show { display: flex; }

/* ── Buttons ── */
.btn-ewa-dark {
  background: #1E1933;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}

.btn-ewa-dark:hover { opacity: 0.88; color: var(--cream); transform: translateY(-1px); }

.btn-ewa-outline {
  background: transparent;
  color: var(--dark3);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 9px;
  border: 1.5px solid rgba(28, 28, 28, 0.22);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s, transform 0.15s;
  white-space: nowrap;
}

.btn-ewa-outline:hover { border-color: var(--dark); color: var(--dark3); transform: translateY(-1px); }

.btn-ewa-cream {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  padding: 17px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s;
}

.btn-ewa-cream:hover { opacity: 0.9; color: var(--dark); }

.btn-ewa-lavender {
  background: var(--lavender);
  color: var(--dark3);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 9px;
  border: 1.5px solid var(--lavender2);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s;
}

.btn-ewa-lavender:hover { opacity: 0.88; color: var(--dark3); }

/* ── Section Labels ── */
.section-label {
  color: var(--sage2);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* ── Cards ── */
.ewa-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card .icon-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: auto;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--brown1);
  margin: 0;
}

/* Product card (category page) */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.product-card .card-img-wrap {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card .card-body { padding: 20px; }

.product-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  margin: 0;
  color: var(--dark3);
}

/* ── Testimonial cards ── */
.testimonial-card {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.testimonial-card .quote-mark {
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 0.8;
  font-weight: 800;
  opacity: 0.6;
  user-select: none;
}

.testimonial-card p { font-size: 17px; line-height: 1.6; margin: 0; font-weight: 500; }

/* ── Marquee ── */
.ewa-marquee-wrap {
  background: var(--dark2);
  color: var(--cream);
  overflow: hidden;
  padding: 13px 0;
}

@keyframes ewamarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ewa-marquee-track {
  display: flex;
  width: max-content;
  animation: ewamarquee 30s linear infinite;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.92;
}

/* ── Hero Speaker Mock ── */
@keyframes ewafloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

.speaker-mock {
  width: 180px;
  height: 260px;
  border-radius: 28px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: ewafloat 7s ease-in-out infinite;
  transition: background 0.35s;
  position: relative;
  z-index: 2;
}

.speaker-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lavender2);
  opacity: 0.3;
  transition: background 0.4s;
}

/* ── Specs table ── */
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  font-size: 15px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .spec-label { color: var(--brown1); }
.spec-row .spec-val   { font-weight: 600; text-align: right; color: var(--dark3); }

.spec-group-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B0A89E;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark3);
}

/* ── Forms ── */
.ewa-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown1);
  margin-bottom: 6px;
  display: block;
}

.ewa-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark3);
  background: var(--card-bg);
  outline: none;
  transition: border-color 0.2s;
}

.ewa-input:focus { border-color: var(--lavender2); box-shadow: 0 0 0 3px rgba(184,167,214,0.15); }
.ewa-input[readonly] { background: var(--cream); color: var(--muted); }

/* ── Payment options ── */
.pay-opt {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
}

.pay-opt.selected { border-color: var(--dark); background: var(--cream); }

.pay-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.pay-opt.selected .pay-radio { border-color: var(--dark); }
.pay-opt.selected .pay-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark);
  display: block;
}

/* ── Qty control ── */
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.qty-btn:hover { background: var(--lavender); }

/* ── Colour swatches ── */
.colour-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(0,0,0,0.1);
  transition: transform 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.colour-dot:hover { transform: scale(1.12); }
.colour-dot.active { border: 2.5px solid var(--dark); transform: scale(1.12); }

/* Category swatches */
.cat-swatch {
  border-radius: 14px;
  cursor: pointer;
  border: 2.5px solid transparent;
  height: 68px;
  transition: transform 0.16s;
}
.cat-swatch:hover { transform: scale(1.04); }
.cat-swatch.active { border-color: var(--dark); transform: scale(1.04); }

/* ── Filter buttons ── */
.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown1);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--card-bg);
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

/* ── Tabs ── */
.ewa-tabs {
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.ewa-tab-btn {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.15s, border-color 0.15s;
}
.ewa-tab-btn:hover { color: var(--dark3); }
.ewa-tab-btn.active { color: var(--dark3); border-bottom-color: var(--dark3); }

.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadein 0.25s ease; }

/* ── Breadcrumb ── */
.ewa-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 40px;
}
.ewa-breadcrumb a {
  color: var(--brown1);
  text-decoration: none;
}
.ewa-breadcrumb a:hover { color: var(--dark3); }

/* ── Trust badges ── */
.trust-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown1);
}

/* ── Cart item ── */
.cart-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.cart-item-thumb {
  width: 72px;
  height: 96px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Checkout progress ── */
.checkout-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.cp-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cp-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-step.done .cp-num  { background: var(--sage2); color: var(--dark3); }
.cp-step.curr .cp-num  { background: var(--dark); color: var(--cream); }
.cp-step.todo .cp-num  { background: var(--border); color: var(--muted); }
.cp-step.curr .cp-label { font-weight: 600; color: var(--dark3); }
.cp-step.todo .cp-label { color: var(--muted); }
.cp-label { font-size: 14px; font-weight: 500; }
.cp-line   { height: 1px; width: 28px; background: var(--border); }

/* ── Story steps ── */
.story-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.story-step:last-child { border-bottom: none; }
.story-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  color: var(--border);
  line-height: 1;
}

/* ── Section backgrounds ── */
.bg-cream    { background: var(--cream); }
.bg-dark     { background: #1E1933; }
.bg-dark2    { background: #252040; }
.bg-dark3    { background: #1E1933; }
.bg-lavender { background: var(--lavender); }
.bg-sage     { background: var(--sage); }
.bg-pink     { background: var(--pink); }

/* ── Pill labels ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}
.pill-light  { background: rgba(11,11,11,0.06); color: var(--dark2); }
.pill-dark   { background: rgba(246,241,235,0.08); color: rgba(246,241,235,0.6); }
.pill-lavender { background: rgba(184,167,214,0.3); color: #4A3778; }
.pill-sage   { background: var(--sage2); color: var(--dark3); }

/* ── IPX badge ── */
.badge-ipx {
  background: var(--sage);
  color: #3A5C28;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ── Toast ── */
.ewa-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark2);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.ewa-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Divider pill ── */
.dot-sep { color: rgba(255,255,255,0.3); margin: 0 8px; }

/* ── Stock badge ── */
.in-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage);
  color: #3A5C28;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.in-stock::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3A5C28;
}

/* ── Dark section text ── */
.text-cream   { color: var(--cream) !important; }
.text-cream60 { color: rgba(246,241,235,0.6) !important; }
.text-cream50 { color: rgba(246,241,235,0.5) !important; }
.text-cream35 { color: rgba(246,241,235,0.35) !important; }
.text-muted-warm { color: var(--muted) !important; }
.text-brown   { color: var(--brown1) !important; }

/* ── Footer ── */
.ewa-footer {
  background: #1C1C1C;     /* footer keeps original dark */
  color: var(--cream);
  padding: 72px 0 0;
}
.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,235,0.4);
  margin-bottom: 20px;
}
.footer-link {
  color: rgba(246,241,235,0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(246,241,235,0.1);
  padding: 28px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(246,241,235,0.15);
  color: rgba(246,241,235,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.social-btn:hover { border-color: rgba(246,241,235,0.5); color: var(--cream); }

/* ── Order confirmed ── */
.confirmed-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 36px;
}

/* ── Animations ── */
@keyframes fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadein 0.4s ease both; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .display-hero { font-size: clamp(36px, 10vw, 64px); }
  .display-lg   { font-size: clamp(30px, 8vw, 48px); }
  .display-md   { font-size: clamp(26px, 7vw, 38px); }
  .ewa-navbar .nav-link { margin: 4px 0; }
  .cart-item { flex-wrap: wrap; }
  .spec-row .spec-val { font-size: 13px; }
}

/* ══════════════════════════════════════════
   EWA — BLOG, POLICY & SHIPPING ADDITIONS
══════════════════════════════════════════ */

/* ── Blog card ── */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.blog-card .blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--lavender);
}
.blog-card .blog-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-card .blog-body { padding: 24px; }
.blog-card .blog-tag,
.blog-card-featured .blog-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: auto;        /* never stretch full-width */
  align-self: flex-start;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--dark3);
}
.blog-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--brown1);
  margin: 0 0 16px;
}
.blog-card .blog-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Featured blog card */
.blog-card-featured {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.blog-card-featured .blog-img-wrap {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.blog-card-featured .blog-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card-featured h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--dark3);
}
.blog-card-featured p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--brown1);
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-card-featured .blog-img-wrap { min-height: 200px; }
  .blog-card-featured .blog-body { padding: 24px; }
}

/* ── Blog detail ── */
.blog-detail-header { padding: 72px 0 56px; }
.blog-detail-header .blog-tag { margin-bottom: 16px; }
.blog-detail-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.blog-hero-img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  margin-bottom: 56px;
}
.blog-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark3);
  max-width: 720px;
}
.blog-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  color: var(--dark3);
}
.blog-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 36px 0 12px;
  color: var(--dark3);
}
.blog-content p { margin: 0 0 20px; color: var(--brown1); }
.blog-content ul, .blog-content ol {
  padding-left: 20px;
  margin: 0 0 20px;
  color: var(--brown1);
}
.blog-content li { margin-bottom: 8px; line-height: 1.7; }
.blog-content blockquote {
  border-left: 3px solid var(--lavender2);
  padding: 20px 24px;
  background: var(--lavender);
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  font-size: 18px;
  font-style: italic;
  color: #2E2544;
}
.blog-content .tip-box {
  background: var(--sage);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 15px;
  color: #263318;
}
.blog-content .tip-box strong { color: #1A2710; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 16px;
  color: var(--dark3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.sidebar-post {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post:hover h5 { color: var(--dark); }
.sidebar-post .sp-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.sidebar-post h5 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 4px;
  transition: color 0.15s;
}
.sidebar-post span { font-size: 12px; color: var(--muted); }

/* Author card */
.author-card {
  background: var(--lavender);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lavender2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--dark3);
  flex-shrink: 0;
}

/* Category filter pills */
.cat-pill {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown1);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--card-bg);
  text-decoration: none;
  display: inline-block;
}
.cat-pill:hover,
.cat-pill.active {
  background: var(--dark3);
  color: var(--cream);
  border-color: var(--dark3);
}

/* ── Policy / Shipping pages ── */
.policy-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.policy-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.policy-updated {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Policy navigation sidebar */
.policy-nav {
  position: sticky;
  top: 96px;
}
.policy-nav a {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brown1);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.15s;
  margin-bottom: 4px;
}
.policy-nav a:hover,
.policy-nav a.active {
  background: var(--lavender);
  color: #4A3778;
  border-left-color: var(--lavender2);
}

/* Policy content */
.policy-content { max-width: 100%; }
.policy-section {
  margin-bottom: 56px;
  scroll-margin-top: 112px;
}
.policy-section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--dark3);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.policy-section h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  margin: 24px 0 10px;
  color: var(--dark3);
}
.policy-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown1);
  margin: 0 0 16px;
}
.policy-section ul {
  padding-left: 20px;
  margin: 0 0 16px;
  color: var(--brown1);
}
.policy-section li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Info box in policy */
.policy-info-box {
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.policy-info-box .box-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.policy-info-box p { font-size: 15px; line-height: 1.6; margin: 0; }

/* Timeline (shipping) */
.shipping-timeline {
  position: relative;
  padding-left: 32px;
}
.shipping-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-step {
  position: relative;
  margin-bottom: 32px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--lavender2);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot.done { background: var(--sage2); border-color: var(--sage2); }
.timeline-dot.done::after {
  content: '✓';
  font-size: 10px;
  color: var(--dark3);
  font-weight: 700;
}
.timeline-step h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--dark3);
}
.timeline-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--brown1);
  margin: 0;
}

/* Pincode checker */
.pincode-wrap {
  background: var(--lavender);
  border-radius: 16px;
  padding: 28px;
  margin-top: 32px;
}
.pincode-input-wrap {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.pincode-input-wrap input {
  flex: 1;
  border: 1.5px solid var(--lavender2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--card-bg);
  outline: none;
  color: var(--dark3);
  transition: border-color 0.2s;
}
.pincode-input-wrap input:focus { border-color: #4A3778; }
#pincode-result {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 500;
  min-height: 20px;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--dark3);
  transition: color 0.15s;
}
.faq-btn:hover { color: #4A3778; }
.faq-btn .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: all 0.2s;
}
.faq-item.open .faq-btn .faq-icon {
  background: var(--lavender);
  border-color: var(--lavender2);
  color: #4A3778;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown1);
}
.faq-item.open .faq-answer { display: block; }

/* Shipping rate table */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.rate-table th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  background: var(--cream);
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.rate-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--brown1);
  vertical-align: middle;
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:hover td { background: rgba(237,230,245,0.3); }
.rate-table .free-tag {
  background: var(--sage);
  color: #3A5C28;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Progress tracker */
.order-tracker {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin: 40px 0;
}
.order-tracker::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.tracker-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.tracker-step.done .tracker-dot { background: var(--sage2); border-color: var(--sage2); color: var(--dark3); }
.tracker-step.curr .tracker-dot { background: var(--dark); border-color: var(--dark); color: var(--cream); }
.tracker-label { font-size: 12px; font-weight: 600; color: var(--muted); text-align: center; max-width: 72px; }
.tracker-step.done .tracker-label,
.tracker-step.curr .tracker-label { color: var(--dark3); }

/* ══════════════════════════════════════════
   CENTERED NAV — added patch
══════════════════════════════════════════ */

/* Centred link list (absolutely positioned) */
.nav-center-links {
  /* pointer-events on the ul itself off so the
     invisible wide area doesn't block clicks */
  pointer-events: none;
  white-space: nowrap;
}
.nav-center-links li {
  pointer-events: auto;
}

/* Dot separators */
.nav-sep {
  color: #D4CDC6;
  font-size: 13px;
  user-select: none;
  padding: 0 2px;
}

/* Override nav-link for the centered list */
.nav-center-links .nav-link {
  color: #3A352F;
  font-weight: 500;
  font-size: 14.5px;
  padding: 5px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
  display: inline-block;
}
.nav-center-links .nav-link:hover {
  color: #0B0B0B;
}
/* Active state — set per-page via JS */
.nav-center-links .nav-link.active {
  color: #0B0B0B;
  border-bottom-color: #0B0B0B;
}

/* Mobile dropdown nav links */
#ewaMobileNav .nav-link {
  color: #3A352F;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
  text-decoration: none;
  display: block;
}
#ewaMobileNav .nav-link:hover,
#ewaMobileNav .nav-link.active {
  color: #0B0B0B;
}

/* Reduce horizontal gap between nav items on
   medium-large screens where space is tighter */
@media (min-width: 1200px) and (max-width: 1380px) {
  .nav-center-links {
    gap: 6px !important;
  }
  .nav-center-links .nav-link {
    font-size: 13.5px;
  }
}

/* Footer — 5-column layout on large screens */
.ewa-footer .row > [class*="col-lg-2"] {
  /* keep columns from getting too narrow */
  min-width: 130px;
}

/* ══════════════════════════════════════════
   HERO — SMOOTH COLOUR CROSSFADE
   Images stacked, only opacity changes.
   No slide · No float · No parallax
══════════════════════════════════════════ */

#hero-stage {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
  /* transparent — no overflow:hidden needed, no clipping, no black */
}

/* All images stacked exactly on top of each other */
.hero-prod {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  filter:
    drop-shadow(0 22px 44px rgba(11,11,11,0.13))
    drop-shadow(0  5px 12px rgba(11,11,11,0.07));
  pointer-events: none;
}

/* Active: fade in */
.hero-prod.active {
  opacity: 1;
  pointer-events: auto;
}

/* Leaving: fade out (faster than fade-in for snappy feel) */
.hero-prod.leaving {
  opacity: 0;
  transition: opacity 1.0s ease-in-out;
}

  to   { transform: translateX(-50%) scale(1);    opacity: 1; }
}


/* Design section float (Metal in hand) */
@keyframes design-float {
  0%,100% { transform: translateY(0);     }
  50%      { transform: translateY(-16px); }
}

@media (max-width: 1199px) {
  #hero-stage { width: 340px; height: 340px; }
}
@media (max-width: 991px) {
  #hero-stage     { width: 280px; height: 280px; margin-bottom: 64px; }
}

/* ══════════════════════════════════════════
   PRODUCT SELL CARDS (all-pages section)
══════════════════════════════════════════ */
.prod-sell-card {
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s;
}
.prod-sell-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11,11,11,0.12);
  color: inherit;
}
.prod-sell-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.prod-sell-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(11,11,11,0.14));
  transition: transform 0.3s ease;
}
.prod-sell-card:hover .prod-sell-img img {
  transform: scale(1.06) translateY(-4px);
}
.prod-sell-body {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  padding: 16px 20px 18px;
  border-top: 1px solid rgba(255,255,255,0.6);
}
.prod-sell-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark3);
  margin: 0 0 8px;
}
.prod-sell-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--dark3);
}
.prod-sell-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.15s;
}
.prod-sell-card:hover .prod-sell-btn {
  color: var(--dark3);
}
@media (max-width: 991px) {
  .prod-sell-img { height: 200px; }
}
@media (max-width: 767px) {
  section .container-xl > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

/* ══════════════════════════════════════════
   WHATSAPP FIXED BUTTON
══════════════════════════════════════════ */
#wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s;
  animation: wa-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.2s both;
}
#wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 3px 12px rgba(0,0,0,0.18);
}
#wa-btn::after {
  content: 'Chat with us';
  position: absolute;
  right: 66px;
  background: #1F1C18;
  color: #F6F1EB;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
#wa-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}
@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@media (max-width: 576px) {
  #wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  #wa-btn::after { display: none; }
}


/* ══════════════════════════════════════════════════
   EWA DESIGN SYSTEM — UTILITY CLASSES
   Replaces all inline styles across the site
══════════════════════════════════════════════════ */

/* ── Section Wrappers ── */
.ewa-section      { padding: 88px 0; }
.ewa-section-sm   { padding: 72px 0; }
.ewa-section-lg   { padding: 96px 0; }
.ewa-section-xl   { padding: 112px 0; }

/* ── Section Backgrounds ── */
.section-dark     { background: var(--dark);  color: var(--cream); }
.section-dark2    { background: var(--dark2); color: var(--cream); }
.section-dark3    { background: var(--dark3); color: var(--cream); }
.section-cream    { background: var(--cream); }
.section-lavender { background: var(--lavender); }
.section-sage     { background: var(--sage); }
.section-pink     { background: var(--pink); }
.section-beige    { background: var(--warm-beige); }
.section-card     { background: var(--card-bg); }

/* ── Text Utilities (dark sections) ── */
.text-cream55  { color: rgba(246,241,235,0.55) !important; }
.text-cream40  { color: rgba(246,241,235,0.40) !important; }

/* ── Stat / Info Cards ── */
.stat-card           { padding: 24px; border-radius: 16px; }
.stat-card--lavender { background: var(--lavender); }
.stat-card--sage     { background: var(--sage); }
.stat-card--pink     { background: var(--pink); }
.stat-card--beige    { background: var(--warm-beige); }
.stat-card--dark     { background: rgba(246,241,235,0.06); }
.stat-card--white    { background: var(--card-bg); border: 1px solid var(--border); }

.stat-num            { font-family: var(--font-head); font-weight: 800;
                       font-size: 34px; margin: 0 0 6px; line-height: 1; }
.stat-num--lavender  { color: #4A3778; }
.stat-num--sage      { color: #3A5C28; }
.stat-num--pink      { color: #7A3C58; }
.stat-num--beige     { color: #5C4E36; }
.stat-num--white     { color: #3A5C28; }
.stat-label          { font-size: 14px; margin: 0; }
.stat-label--lavender{ color: #7B6CA0; }
.stat-label--sage    { color: #5C7A40; }
.stat-label--pink    { color: #9A5070; }
.stat-label--beige   { color: #7A6A50; }

/* ── Palette Cards (feature/pillar) ── */
.palette-card        { border-radius: 22px; display: flex; flex-direction: column;
                       justify-content: space-between; overflow: hidden; }
.palette-card--lavender { background: var(--lavender); }
.palette-card--sage     { background: var(--sage); }
.palette-card--pink     { background: var(--pink); }
.palette-card--beige    { background: var(--warm-beige); }
.palette-card--dark     { background: var(--dark2); }

.palette-num         { font-family: var(--font-head); font-weight: 800;
                       font-size: 52px; line-height: 1; }
.palette-num--lavender  { color: var(--lavender2); }
.palette-num--sage      { color: var(--sage2); }
.palette-num--pink      { color: #C47090; }
.palette-num--beige     { color: #8A7A60; }
.palette-num--dark      { color: rgba(246,241,235,0.18); }

/* ── Team Member Cards ── */
.team-card           { background: var(--dark2); border-radius: 16px; padding: 28px; }
.team-avatar         { width: 56px; height: 56px; border-radius: 50%;
                       display: flex; align-items: center; justify-content: center;
                       margin-bottom: 16px; }
.team-avatar--lavender { background: var(--lavender2); }
.team-avatar--sage     { background: var(--sage2); }
.team-name           { font-family: var(--font-head); font-weight: 700;
                       font-size: 17px; color: var(--cream); margin: 0 0 4px; }
.team-role           { font-size: 13px; color: rgba(246,241,235,0.5); margin: 0 0 12px; }
.team-bio            { font-size: 14px; line-height: 1.6;
                       color: rgba(246,241,235,0.65); margin: 0; }

/* ── Info Boxes (policy/shipping) ── */
.info-box            { border-radius: 14px; padding: 20px 24px;
                       display: flex; gap: 14px; align-items: flex-start; }
.info-box--sage      { background: var(--sage); }
.info-box--lavender  { background: var(--lavender); }
.info-box--pink      { background: var(--pink); }
.info-box__icon      { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.info-box__text      { font-size: 15px; line-height: 1.6; margin: 0; }
.info-box__text--sage    { color: #263318; }
.info-box__text--lavender{ color: #2E2544; }
.info-box__text--pink    { color: #3A1C26; }

/* ── Blog Tags ── */
.blog-tag--product   { background: var(--lavender); color: #4A3778; }
.blog-tag--design    { background: var(--sage);     color: #3A5C28; }
.blog-tag--tech      { background: var(--warm-beige); color: #5C4E36; }
.blog-tag--story     { background: var(--pink);     color: #7A3C58; }
.blog-tag--community { background: var(--lavender2); color: var(--dark3); }

/* ── Float animations for product images ── */
.float-img     { animation: design-float 7s ease-in-out infinite;
                 object-fit: contain; }
.float-img-lg  { animation: design-float 8s ease-in-out infinite;
                 object-fit: contain; }
.img-shadow    { filter: drop-shadow(0 20px 44px rgba(11,11,11,0.14))
                         drop-shadow(0 5px 12px rgba(11,11,11,0.08)); }
.img-shadow-lg { filter: drop-shadow(0 28px 56px rgba(11,11,11,0.18))
                         drop-shadow(0 6px 16px rgba(11,11,11,0.12)); }
.img-shadow-dark { filter: drop-shadow(0 28px 56px rgba(0,0,0,0.45))
                           drop-shadow(0 6px 16px rgba(0,0,0,0.28)); }

/* ── Pull quote ── */
.pull-quote          { background: var(--dark2); border-radius: 20px;
                       padding: 40px 48px;
                       display: flex; align-items: center;
                       justify-content: space-between;
                       gap: 32px; flex-wrap: wrap; }

/* ── Contact info boxes (dark section) ── */
.contact-box         { background: rgba(246,241,235,0.06);
                       border-radius: 12px; padding: 24px; }
.contact-box__icon   { font-size: 22px; margin: 0 0 10px; }
.contact-box__title  { font-family: var(--font-head); font-weight: 700;
                       font-size: 15px; color: var(--cream); margin: 0 0 4px; }
.contact-box__desc   { font-size: 13.5px; color: rgba(246,241,235,0.55); margin: 0; }

/* ── Trust bar ── */
.trust-bar           { display: flex; align-items: center; justify-content: center;
                       gap: 16px; flex-wrap: wrap; padding: 20px;
                       background: var(--card-bg); border-radius: 16px;
                       border: 1px solid var(--border); }
.trust-bar__item     { font-size: 14px; font-weight: 500; color: var(--brown1);
                       display: flex; align-items: center; gap: 8px; }
.trust-bar__sep      { color: var(--border); }

/* ── Colour name pill (hero) ── */
.hero-colour-pill    { display: inline-flex; align-items: center; gap: 8px;
                       background: rgba(11,11,11,0.06);
                       color: var(--dark2); font-weight: 600; font-size: 12.5px;
                       letter-spacing: 0.06em; text-transform: uppercase;
                       padding: 7px 13px; border-radius: 999px; }

/* ── Section divider ── */
.section-border-top  { border-top: 1px solid var(--border); }

/* ── Overrides: remove need for common inline font ── */
.font-head-800 { font-family: var(--font-head); font-weight: 800; }
.font-head-700 { font-family: var(--font-head); font-weight: 700; }

/* ── Spacing helpers used across pages ── */
.max-w-480 { max-width: 480px; }
.max-w-520 { max-width: 520px; }
.max-w-560 { max-width: 560px; }
.max-w-620 { max-width: 620px; }
.max-w-720 { max-width: 720px; }
.max-w-900 { max-width: 900px; }

/* ── Product sell grid ── */
.prod-sell-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .prod-sell-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Product section wrapper ── */
.section-products {
  padding: 88px 0;
  background: var(--cream);
}

/* ── See all link ── */
.link-subtle {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown1);
  text-decoration: none;
}
.link-subtle:hover { color: var(--dark3); }

/* ── Trust bar (inline variant) ── */
.trust-bar-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ── Pillar image area ── */
.pillar-img-area {
  padding: 32px 32px 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Dimension stat (specs/design) ── */
.dim-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  margin: 0 0 4px;
  color: var(--dark3);
}
.dim-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ── Values section ── */
.section-values {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}

/* ── CTA section ── */
.section-cta-lavender {
  background: var(--lavender);
  padding: 80px 0;
}

/* ── Team row max-width ── */
.team-row { max-width: 700px; }

/* ── Mission paragraph ── */
.mission-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--brown1);
}

/* ── Design pillar text colors ── */
.text-lavender-dark { color: #4A3778; }
.text-sage-dark     { color: #3A5C28; }
.text-pink-dark     { color: #7A3C58; }
.text-beige-dark    { color: #5C4E36; }
.text-cream-muted   { color: rgba(246,241,235,0.55); }

/* ── Pillar small card heading ── */
.pillar-h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--dark3);
}
.pillar-h3--dark { color: var(--cream); }

/* ── Design hero para ── */
.design-hero-text {
  max-width: 520px;
  font-size: 19px;
  line-height: 1.55;
}
