:root {
  --ivory: #F5F0E8;
  --cream: #EDE8DC;
  --sage-mist: #E8EFE6;
  --sage-light: #C8D9C4;
  --sage: #8FA68A;
  --blue-mist: #DDE6EA;
  --dusty-blue: #A8BAC4;
  --nude-light: #EDD9C8;
  --nude: #D4B8A0;
  --chrome: #E8EAEC;
  --warm-grey: #8C8880;
  --charcoal: #3A3832;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== STICKY NAV ========== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 64px;
  border-bottom: 1px solid rgba(58, 56, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.nav-logo .logo-accent {
  font-style: italic;
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-grey);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  background: var(--sage);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #7a9476;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .site-nav {
    padding: 0 20px;
  }
}

/* ========== HERO ========== */
.hero {
  background: var(--ivory);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stars {
  color: #C8A96A;
  font-size: 14px;
}

.hero-stars-text {
  font-size: 13px;
  color: var(--warm-grey);
}

.hero-cod-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  color: var(--charcoal);
}

.hero-bangla {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--warm-grey);
  font-style: italic;
  border-left: 2px solid var(--sage-light);
  padding-left: 14px;
}

.hero-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-grey);
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
}

.btn-primary:hover {
  background: #7a9476;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid rgba(58, 56, 50, 0.25);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--charcoal);
}

.hero-delivery {
  font-size: 12px;
  color: var(--warm-grey);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--warm-grey);
}

.trust-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.hero-image {
  background: var(--nude-light);
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ========== HERO SLIDESHOW ========== */
.hero-slideshow {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ========== SLIDESHOW DOTS ========== */
.slideshow-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.slideshow-dots .dot.active {
  background: var(--sage);
}

.img-placeholder {
  background: var(--cream);
  border: 1.5px dashed var(--sage-light);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  font-size: 11px;
  color: var(--warm-grey);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    order: 1;
    padding: 64px 24px;
  }
  .hero-image {
    order: 2;
    min-height: 360px;
  }
  .btn-primary {
    width: 100%;
  }
}

/* ========== STICKY BOTTOM BAR (MOBILE) ========== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sage);
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  transform: translateY(100%);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bottom-bar span {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .sticky-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 56px;
  }
}

/* ========== SOCIAL PROOF BAR ========== */
.social-proof-bar {
  background: var(--charcoal);
  padding: 20px 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.proof-item {
  text-align: center;
}

.proof-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #fff;
}

.proof-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 600px) {
  .proof-divider {
    display: none;
  }
  .social-proof-inner {
    gap: 20px;
  }
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  background: var(--cream);
  padding: 96px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-bottom: 16px;
}

.problem-section h2,
.step-zero h2,
.before-after h2,
.how-it-works h2,
.comparison h2,
.reviews-section h2,
.urgency h2,
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
}

.problem-section h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 12px;
}

.problem-bangla {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--warm-grey);
  margin-bottom: 20px;
}

.problem-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 28px;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.problem-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nude);
  flex-shrink: 0;
  margin-top: 6px;
}

.problem-list strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.problem-list span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.5;
}

.wasa-card {
  background: var(--ivory);
  border: 1px solid rgba(58, 56, 50, 0.08);
  border-radius: 8px;
  padding: 24px;
}

.wasa-card-header {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm-grey);
  margin-bottom: 16px;
}

.wasa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(58, 56, 50, 0.06);
  font-size: 13px;
}

.wasa-row .label {
  color: var(--charcoal);
}

.wasa-row .value {
  color: #B5705A;
  font-weight: 500;
}

.wasa-row .value.good {
  color: var(--sage);
}

.wasa-row.separator {
  border-top: 2px solid rgba(58, 56, 50, 0.08);
  margin-top: 8px;
  padding-top: 14px;
}

.wasa-footer {
  font-size: 10px;
  font-style: italic;
  color: var(--warm-grey);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
}

/* ========== STEP ZERO ========== */
.step-zero {
  background: var(--sage-mist);
  padding: 96px 0;
  text-align: center;
}

.step-zero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.step-zero h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.step-zero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--warm-grey);
  max-width: 560px;
  margin: 0 auto 12px;
}

.step-zero-bangla {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--warm-grey);
  margin-bottom: 40px;
}

.routine-ladder {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto 56px;
}

.routine-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(58, 56, 50, 0.08);
  border-radius: 6px;
  padding: 14px 20px;
  margin-top: -1px;
  text-align: left;
}

.routine-step.highlighted {
  background: var(--sage);
  border-color: var(--sage);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  flex-shrink: 0;
  background: var(--sage-mist);
  color: var(--sage);
}

.highlighted .step-number {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.step-content {
  flex: 1;
}

.step-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
}

.highlighted .step-name {
  color: #fff;
  font-weight: 500;
}

.step-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--warm-grey);
}

.highlighted .step-sub {
  color: rgba(255, 255, 255, 0.7);
}

.step-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.routine-caption {
  font-size: 12px;
  font-style: italic;
  color: var(--warm-grey);
  margin-top: 24px;
  margin-bottom: 24px;
}

/* ========== BEFORE/AFTER ========== */
.before-after {
  background: var(--ivory);
  padding: 96px 0;
}

.before-after-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.before-after h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 12px;
}

.before-after-sub {
  font-size: 15px;
  color: var(--warm-grey);
  max-width: 480px;
  margin: 0 auto 36px;
}

.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid var(--warm-grey);
  background: transparent;
  color: var(--warm-grey);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 860px;
  margin: 0 auto;
}

.ba-column {
  overflow: hidden;
}

.ba-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 16px;
}

.ba-label.before {
  background: var(--nude-light);
  color: var(--warm-grey);
}

.ba-label.after {
  background: var(--sage-mist);
  color: var(--sage);
}

.ba-image {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ba-image.before-img {
  background: var(--nude-light);
}

.ba-image.after-img {
  background: var(--sage-mist);
}

.ba-caption {
  font-size: 13px;
  color: var(--warm-grey);
  padding: 16px;
  text-align: left;
  line-height: 1.5;
}

.ba-note {
  font-size: 11px;
  font-style: italic;
  color: var(--warm-grey);
  text-align: center;
  margin-top: 20px;
}

.ba-tab-content {
  display: none;
}

.ba-tab-content.active {
  display: block;
}

@media (max-width: 600px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--blue-mist);
  padding: 96px 0;
}

.how-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.how-it-works h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 12px;
}

.how-sub {
  font-size: 15px;
  color: var(--warm-grey);
  max-width: 440px;
  margin: 0 auto;
}

.how-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.how-card {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-card:first-child {
  border-radius: 8px 0 0 8px;
}

.how-card:last-child {
  border-radius: 0 8px 8px 0;
}

.how-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
}

.how-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.how-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--charcoal);
}

.how-card p {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.6;
}

.how-spec {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage);
  border-top: 1px solid var(--sage-mist);
  padding-top: 16px;
  margin-top: auto;
}

.how-product-image {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0 24px;
}

@media (max-width: 900px) {
  .how-cards {
    grid-template-columns: 1fr;
  }
  .how-card:first-child {
    border-radius: 8px 8px 0 0;
  }
  .how-card:last-child {
    border-radius: 0 0 8px 8px;
  }
}

/* ========== COMPARISON TABLE ========== */
.comparison {
  background: var(--charcoal);
  padding: 96px 0;
}

.comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.comparison h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 12px;
}

.comparison-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  text-align: left;
}

.comparison-table th:first-child {
  color: rgba(255, 255, 255, 0.35);
}

.comparison-table th.lunara-col {
  background: rgba(143, 166, 138, 0.15);
  color: var(--sage-light);
}

.comparison-table th.other-col {
  color: rgba(255, 255, 255, 0.35);
}

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
  text-align: left;
}

.comparison-table td:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.comparison-table td.lunara-col {
  background: rgba(143, 166, 138, 0.08);
  color: #fff;
  font-weight: 500;
}

.comparison-table td.other-col {
  color: rgba(255, 255, 255, 0.3);
}

.check {
  color: var(--sage-light);
}

.cross {
  color: rgba(255, 255, 255, 0.2);
}

.partial {
  color: var(--nude);
}

.comparison-footer {
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 20px;
}

/* ========== REVIEWS ========== */
.reviews-section {
  background: var(--nude-light);
  padding: 96px 0;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}

.reviews-section h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
}

.reviews-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--charcoal);
}

.reviews-stars {
  color: #C8A96A;
  font-size: 20px;
}

.reviews-count {
  font-size: 12px;
  color: var(--warm-grey);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(58, 56, 50, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(58, 56, 50, 0.08);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.review-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

.review-location {
  font-size: 12px;
  color: var(--warm-grey);
}

.review-verified {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--sage-mist);
  color: var(--sage);
  padding: 3px 8px;
  border-radius: 4px;
}

.review-stars {
  color: #C8A96A;
  font-size: 14px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--warm-grey);
  margin-top: auto;
}

.review-product {
  color: var(--sage);
}

.reviews-load-more {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== URGENCY ========== */
.urgency {
  background: var(--ivory);
  padding: 80px 0;
  border-top: 1px solid rgba(58, 56, 50, 0.06);
  text-align: center;
}

.urgency-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.urgency-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #B5705A;
}

.urgency h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.stock-bar-wrapper {
  width: 220px;
  height: 6px;
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
}

.stock-bar-fill {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border-radius: 3px;
}

.stock-label {
  font-size: 12px;
  color: var(--warm-grey);
}

.urgency-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.urgency-chip {
  border: 1px solid rgba(58, 56, 50, 0.12);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--charcoal);
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--sage-mist);
  padding: 112px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.final-product-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px dashed var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--warm-grey);
  text-align: center;
  padding: 20px;
}

.final-cta h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
}

.final-bangla {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: var(--warm-grey);
  border-left: 2px solid var(--sage-light);
  padding-left: 16px;
  text-align: left;
}

.final-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-grey);
  max-width: 480px;
}

.final-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.final-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.final-badge.sage {
  border: 1px solid var(--sage);
  color: var(--sage);
}

.final-badge.charcoal {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.final-btn {
  font-size: 20px;
  padding: 20px 48px;
}

.final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 12px;
  color: var(--warm-grey);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--charcoal);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-logo .logo-accent {
  font-style: italic;
  color: var(--sage-light);
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-tagline-bn {
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
  }
  .footer-right {
    align-items: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========== ASSEMBLY SCROLL ANIMATION ========== */
.assembly-section {
  height: 300vh;
  position: relative;
}

.assembly-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

#assembly-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.assembly-copy {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 32px;
  pointer-events: none;
}

.assembly-copy .section-eyebrow {
  color: var(--charcoal);
  opacity: 0.6;
}

.assembly-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--charcoal);
  line-height: 1.2;
  margin-top: 8px;
}

.assembly-copy h2 em {
  font-style: italic;
  color: var(--sage);
}

.assembly-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  opacity: 0.65;
  margin-top: 10px;
}

.assembly-scroll-hint {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.45;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.assembly-scroll-hint.hidden {
  opacity: 0;
}

@media (max-width: 600px) {
  .assembly-section {
    height: 250vh;
  }

  .assembly-copy {
    bottom: 8%;
  }

  .assembly-copy h2 {
    font-size: clamp(24px, 7vw, 36px);
  }
}
