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

:root {
  --blush:    #EEF1F5;
  --blush2:   #DDE3EB;
  --rose:     #0F2744;
  --rose-dk:  #0A1B30;
  --gold:     #C8A44D;
  --gold-lt:  #E3CE99;
  --cream:    #F7F8FA;
  --charcoal: #2E3138;
  --muted:    #5C6470;
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(253,248,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 27px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--charcoal); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--rose);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--charcoal); }
.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--rose);
  border: 1.5px solid var(--rose); border-radius: 999px;
  padding: 8px 16px; cursor: pointer; transition: background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--rose); color: var(--white); }
.cart-icon { width: 19px; height: 19px; flex-shrink: 0; }
.cart-count { line-height: 1; }

/* ── ACCOUNT / SIGN-IN ── */
.account-slot { display: flex; align-items: center; margin-right: 0.9rem; }
.account-wrap { position: relative; }
.account-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--blush2); cursor: pointer;
  padding: 6px 14px 6px 6px; font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.03em; color: var(--charcoal);
  border-radius: 999px;
  transition: border-color 0.2s;
}
.account-btn:hover { border-color: var(--rose); }
.account-btn.signed-out { padding: 8px 18px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; white-space: nowrap; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.account-btn.signed-out:hover { border-color: var(--gold); background: var(--gold); color: var(--charcoal); }
.account-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; display: block; }
.account-avatar-fallback {
  width: 26px; height: 26px; border-radius: 50%; background: var(--rose);
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; flex-shrink: 0;
}
.account-name { max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 140px;
  background: var(--white); border: 1px solid var(--blush2);
  box-shadow: 0 12px 28px rgba(44,31,23,0.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 250;
}
.account-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.account-my-account {
  display: block; width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; border-bottom: 1px solid var(--blush2);
}
.account-my-account:hover { background: var(--blush); color: var(--charcoal); }
.account-signout {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted);
}
.account-signout:hover { background: var(--blush); color: var(--charcoal); }

@media (max-width: 580px) {
  .account-name { display: none; }
  .account-btn { padding: 6px; }
  .account-btn.signed-out { padding: 7px 10px; font-size: 9px; letter-spacing: 0.06em; }
}

/* ── GOOGLE SIGN-IN BUTTON (checkout) ── */
.google-signin-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; background: var(--white); border: 1px solid #DADCE0;
  padding: 12px 20px; font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 500; color: #3C4043; cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}
.google-signin-btn:hover { background: #F8F8F8; box-shadow: 0 1px 4px rgba(60,64,67,0.2); }
.google-signin-btn:disabled { opacity: 0.6; cursor: default; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--charcoal); color: var(--gold-lt);
  padding: 12px 0; overflow: hidden;
}
.marquee-inner {
  display: flex; gap: 3rem;
  animation: marquee 24s linear infinite; white-space: nowrap;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.marquee-inner span { opacity: 0.45; }
.marquee-inner strong { opacity: 1; font-weight: 400; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-inner { animation: none; } }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--charcoal); color: var(--cream);
  padding: 13px 34px; font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.25s; text-decoration: none;
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: var(--white);
  padding: 11px 24px; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.25s;
  text-decoration: none; margin-top: 0.9rem;
}
.btn-whatsapp:hover { background: var(--rose-dk); }
.btn-whatsapp .icon { width: 16px; height: 16px; flex-shrink: 0; }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  padding: 12px 30px; font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s; background: transparent; cursor: pointer;
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-ghost {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rose); text-decoration: none;
  border: none; border-bottom: 1px solid var(--rose); padding-bottom: 2px;
  background: transparent; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--rose-dk); border-bottom-color: var(--rose-dk); }

/* ── SECTION COMMONS ── */
.section { padding: 88px 8vw; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 300; line-height: 1.15;
}

/* ── HERO CAROUSEL ── */
.hero {
  margin-top: 68px;
  position: relative;
  width: 100%;
  height: calc(100vh - 68px);
  background: var(--cream);
  /* No overflow:hidden here — let slides breathe */
}

/* Slides wrapper */
.slides-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;   /* clips Ken Burns zoom here instead */
}

/* Each slide is absolutely positioned and fades */
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
/* Subtle Ken Burns zoom on active slide image */
.slide .slide-visual img {
  transition: transform 7s ease-out;
  transform: scale(1.05);
}
.slide.active .slide-visual img {
  transform: scale(1);
}

.slide-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6vw 4vw 6vw 8vw;
  background: var(--cream);
  position: relative; z-index: 2;
}
.slide-brand-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--blush2); color: var(--muted);
  padding: 5px 14px; margin-bottom: 1.4rem; width: fit-content;
}
.slide-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}
.slide-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 300; line-height: 1.08;
  color: var(--charcoal); margin-bottom: 1.2rem;
}
.slide-title em { font-style: italic; color: var(--rose); }
.slide-desc {
  font-size: 14px; color: var(--muted);
  max-width: 360px; line-height: 1.85; margin-bottom: 2rem;
}
.slide-cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.slide-visual {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Individual slide visual backgrounds */
.slide-wellness  .slide-visual { background: linear-gradient(150deg,#EDD5CB 0%,#F5E6E0 50%,#E2C0A8 100%); }
.slide-soap      .slide-visual { background: linear-gradient(150deg,#EAE0D5 0%,#F0E8E0 50%,#D9C8B4 100%); }
.slide-women     .slide-visual { background: linear-gradient(150deg,#EBE5F5 0%,#F5F0FC 50%,#D8CEEC 100%); }
.slide-lotion    .slide-visual { background: linear-gradient(150deg,#E4EEE4 0%,#EEF5EE 50%,#CAD8CA 100%); }

.slide-visual svg { max-width: 78%; max-height: 78%; }

.slide-badge {
  position: absolute; bottom: 36px; right: 36px;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--charcoal); color: var(--gold-lt);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  font-family: 'Montserrat', sans-serif; z-index: 3;
  font-size: 11px; font-weight: 600; line-height: 1.4; letter-spacing: 0.04em;
}

/* ── CAROUSEL CONTROLS ── */


.carousel-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
  pointer-events: all;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blush2); cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border: none; padding: 0;
}
.dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

/* Slide progress bar */
.progress-bar {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--rose); z-index: 10;
  width: 0%;
  transition: width 5s linear;
}
.progress-bar.running { width: 100%; }

/* ── ICONS ── */
.icon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── CATEGORIES ── */
.categories-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.5rem;
}
.cat-card {
  aspect-ratio: 2/3; position: relative; overflow: hidden;
  cursor: pointer; text-decoration: none; display: block;
}
.cat-bg {
  width: 100%; height: 100%; transition: transform 0.5s ease;
  display: flex; align-items: flex-end; position: relative;
  background: var(--blush);
}
.cat-card:hover .cat-bg { transform: scale(1.04); }
.cat-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.cat-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.72) 0%, rgba(20,14,10,0.15) 55%, transparent 80%);
}
.cat-label { padding: 1.2rem 1rem; color: var(--cream); width: 100%; position: relative; z-index: 1; }
.cat-label h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 400; margin-bottom: 3px; color: var(--cream); }
.cat-label p { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253,248,245,0.75); }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card.hidden { display: none; }
.product-img {
  aspect-ratio: 3/4; background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; overflow: hidden; position: relative;
}
.product-img.ubuntu-bg { background: #EAE0D5; }
.product-img-inner {
  width: 100%; height: 100%; transition: transform 0.45s ease;
  display: flex; align-items: center; justify-content: center;
}
.product-card:hover .product-img-inner { transform: scale(1.04); }
.product-icon { font-size: 60px; opacity: 0.32; user-select: none; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--charcoal); color: var(--gold-lt);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px;
}
.product-badge.sale { background: var(--rose); color: var(--white); }
.product-badge.handmade { background: #5C3D2E; color: #E8D5A8; }
.product-badge.soldout { background: var(--muted); color: var(--white); }
.product-badge.soon {
  background: var(--gold); color: var(--charcoal);
  font-family: 'Parisienne', cursive; text-transform: none; letter-spacing: 0.02em;
  font-size: 17px; padding: 3px 14px 5px; line-height: 1;
}
.coming-soon-text {
  font-family: 'Parisienne', cursive; font-size: 20px; color: var(--rose);
  font-weight: 400; letter-spacing: 0.02em;
}
.product-brand { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.product-brand.ubuntu { color: #8B6347; }
.product-name { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 400; margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 16px; font-weight: 500; color: var(--charcoal); }
.product-price .old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.add-btn {
  background: transparent; border: 1px solid var(--charcoal);
  color: var(--charcoal); padding: 8px 18px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.add-btn:hover { border-color: var(--gold); color: var(--gold); }
.add-btn[disabled] { opacity: 0.5; cursor: not-allowed; border-color: var(--muted); color: var(--muted); }
.add-btn[disabled]:hover { background: transparent; color: var(--muted); }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; border-bottom: 1px solid var(--blush2); margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-tab {
  padding: 10px 20px; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; border: none;
  background: transparent; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.filter-tab:hover { color: var(--charcoal); }
.filter-tab.active { color: var(--charcoal); border-bottom-color: var(--rose); }

/* ── UBUNTU SPOTLIGHT ── */
.ubuntu-spotlight {
  padding: 88px 8vw;
  background: #2C1F17;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center;
}
.ubuntu-soaps { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.soap-tile {
  aspect-ratio: 1; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end; text-align: left; padding: 1.2rem; gap: 4px;
  background: #2C1F17;
}
.soap-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.soap-tile:hover img { transform: scale(1.06); }
.soap-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,7,0.82) 0%, rgba(15,10,7,0.25) 55%, transparent 85%);
}
.soap-name, .soap-sub { position: relative; z-index: 1; }
.soap-name { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 400; line-height: 1.2; color: var(--cream); }
.soap-sub { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,248,250,0.65); }

/* ── BRAND STORY ── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center;
}
.story-visual {
  height: 480px; background: var(--blush);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.story-circle { width: 420px; height: 420px; border-radius: 50%; overflow: hidden; box-shadow: 0 20px 50px rgba(44,31,23,0.18); }
.story-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-quote {
  position: absolute; bottom: 40px; left: 30px; right: 30px;
  font-family: 'Montserrat', sans-serif; font-size: 20px;
  font-style: italic; font-weight: 300; color: var(--charcoal); line-height: 1.4;
}
.story-content p { color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; font-size: 15px; }
.story-stats { display: flex; gap: 3rem; margin-top: 2.5rem; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 300; color: var(--rose); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--charcoal); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card { border: 1px solid rgba(201,169,110,0.22); padding: 2rem; }
.quote-mark { font-family: 'Montserrat', sans-serif; font-size: 60px; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; opacity: 0.4; }
.testimonial-text { font-family: 'Montserrat', sans-serif; font-size: 17px; font-style: italic; font-weight: 300; line-height: 1.7; color: rgba(253,248,245,0.85); margin-bottom: 1.5rem; }
.testimonial-author { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 1rem; letter-spacing: 2px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--blush2);
  background: var(--white); font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--charcoal); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--rose); }
.form-group textarea { height: 130px; resize: vertical; }
.contact-info h3 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 300; margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-detail-icon { margin-top: 2px; color: var(--rose); }
.contact-detail-icon .icon { width: 20px; height: 20px; }
.contact-detail-text strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 2px; }
.contact-detail-text span { font-size: 14px; color: var(--muted); }

/* ── NEWSLETTER ── */
.newsletter-wrap { text-align: center; padding: 88px 8vw; background: var(--blush); }
.newsletter-form { display: flex; max-width: 480px; margin: 2rem auto 0; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border: 1px solid var(--blush2);
  background: var(--white); font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none; color: var(--charcoal);
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--charcoal); color: var(--cream); border: none;
  padding: 14px 28px; font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--rose-dk); }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: rgba(253,248,245,0.5); padding: 60px 8vw 30px; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 40px; border-bottom: 1px solid rgba(253,248,245,0.1);
}
.footer-brand-desc { font-size: 13px; line-height: 1.8; max-width: 240px; margin-top: 1rem; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(253,248,245,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 1rem; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge { background: rgba(253,248,245,0.08); color: rgba(253,248,245,0.5); padding: 4px 10px; font-size: 11px; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  margin-top: 68px; padding: 70px 8vw 60px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--blush2);
}
.page-header .section-eyebrow { margin-bottom: 0.5rem; }
.page-header .section-title { margin-bottom: 0; }

/* ── ABOUT PAGE ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.value-card { padding: 2rem; border: 1px solid var(--blush2); background: var(--white); }
.value-icon { margin-bottom: 1rem; color: var(--rose); }
.value-icon .icon { width: 30px; height: 30px; }
.value-title { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 400; margin-bottom: 0.6rem; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--charcoal); color: var(--cream);
  padding: 14px 24px; font-size: 13px; letter-spacing: 0.05em;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
  border-left: 3px solid var(--gold);
}

/* ── PAGE VISIBILITY ── */
.page { display: none; }
.page.active { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
/* ══════════════════════════════
   MOBILE NAV HAMBURGER
══════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 201;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--cream); z-index: 199;
  border-bottom: 1px solid var(--blush2);
  flex-direction: column; padding: 1rem 0;
  box-shadow: 0 8px 24px rgba(44,36,32,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 7vw; font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--charcoal);
  text-decoration: none; border-bottom: 1px solid var(--blush2);
  transition: background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active { background: var(--blush); }

/* ══════════════════════════════
   TABLET  ≤ 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════
   MOBILE  ≤ 900px
══════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero carousel — stack, show visual behind text */
  .hero { height: auto; min-height: 100svh; }
  .slide { grid-template-columns: 1fr; position: absolute; inset: 0; }
  .slide-visual {
    position: absolute; inset: 0;
    min-height: unset; display: block; opacity: 1;
    z-index: 0;
  }
  .slide-text {
    position: relative; z-index: 1;
    padding: 6rem 7vw 4rem;
    justify-content: flex-end;
    min-height: 100svh;
    background: linear-gradient(
      to top,
      rgba(253,248,245,0.97) 0%,
      rgba(253,248,245,0.9) 30%,
      rgba(253,248,245,0.55) 55%,
      rgba(253,248,245,0.08) 78%,
      rgba(253,248,245,0) 100%
    );
  }
  .slide-title { font-size: clamp(36px, 9vw, 52px); }
  .slide-desc { max-width: 100%; }
  .slide-badge { top: 20px; right: 20px; bottom: auto; width: 72px; height: 72px; font-size: 10px; }

  /* Brand-tag and eyebrow can land on the photo itself (content is
     bottom-anchored, gradient fades toward the top) or on the cream
     backdrop, depending on how tall the slide's text is. Rather than
     darkening the whole photo to protect them, give the text itself a
     light fill with a soft dark shadow — that combination reads clearly
     against a photo AND against the cream backdrop, with no visible box. */
  .slide-brand-tag {
    color: #fff;
    border-color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 2px 10px rgba(0,0,0,0.3);
    box-shadow: 0 1px 8px rgba(0,0,0,0.15);
  }
  .slide-eyebrow {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 2px 10px rgba(0,0,0,0.3);
  }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* Ubuntu spotlight */
  .ubuntu-spotlight { grid-template-columns: 1fr; }
  .ubuntu-soaps { grid-template-columns: repeat(4, 1fr); }

  /* Story */
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { height: 220px; }
  .story-circle { width: 180px; height: 180px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Checkout */
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-form-col { padding: 40px 6vw; border-right: none; border-bottom: 1px solid var(--blush2); }
  .checkout-summary-col { padding: 40px 6vw; position: static; }
  .form-row { grid-template-columns: 1fr; }

  /* Product modal */
  #productModal { grid-template-columns: 1fr; width: 94vw; max-height: 88vh; overflow-y: auto; }
}

/* ══════════════════════════════
   SMALL MOBILE  ≤ 580px
══════════════════════════════ */
@media (max-width: 580px) {
  /* Section padding */
  .section { padding: 56px 6vw; }

  /* Nav */
  .nav-logo { font-size: 22px; }
  .cart-btn { padding: 6px 12px; font-size: 12px; gap: 6px; }
  .cart-icon { width: 17px; height: 17px; }

  /* Hero */
  .slide-text { padding: 5rem 6vw 4rem; }
  .slide-brand-tag { font-size: 9px; }
  .slide-title { font-size: clamp(32px, 10vw, 44px); }
  .slide-cta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: 11px; }
  .carousel-dots { bottom: 16px; }

  /* Categories — 2 col on small */
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .cat-label h3 { font-size: 14px; }

  /* Products — single col */
  .products-grid { grid-template-columns: 1fr; }
  .filter-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .filter-tab { white-space: nowrap; padding: 10px 14px; }

  /* Ubuntu soaps — 2x2 on small */
  .ubuntu-soaps { grid-template-columns: 1fr 1fr; }

  /* Story */
  .story-stats { gap: 1.5rem; }
  .stat-num { font-size: 32px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }

  /* Checkout */
  .delivery-option { flex-wrap: wrap; gap: 8px; }

  /* Modal */
  #productModal { width: 100vw; border-radius: 0; max-height: 100svh; }
  .modal-info { padding: 1.25rem 1.25rem 1.5rem; }
  .modal-name { font-size: 22px; }
}

/* ── CART TOAST ── */
#cartToast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--charcoal);
  color: var(--cream);
  padding: 13px 28px;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-left: 3px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  z-index: 500;
}
#cartToast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── IMAGE PLACEHOLDERS ── */
.product-img img,
.slide-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--blush);
}
/* Fallback colour while image loads */
.product-img { background: var(--blush); }
.product-img.ubuntu-bg { background: #EAE0D5; }
.slide-visual img { object-position: center top; }

/* ══════════════════════════════
   PRODUCT MODAL
══════════════════════════════ */
#productModalOverlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(44,36,32,0.55);
  z-index: 400;
  opacity: 0;
  transition: opacity 0.35s ease;
}
#productModalOverlay.open {
  display: block;
  opacity: 1;
}
#productModal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: min(920px, 94vw);
  max-height: 90vh;
  background: var(--cream);
  z-index: 401;
  display: none;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#productModal.open {
  display: grid;
  opacity: 1;
  transform: translate(-50%, -50%);
}
/* Mobile: the base rule above sets overflow:hidden (needed for desktop's
   two-column layout). On stacked single-column mobile layouts we need the
   whole modal to scroll so users can reach the flavour thumbnails and the
   Add to Cart button. This must stay AFTER the base #productModal rule in
   the file so it wins the cascade (same specificity, source order rules). */
@media (max-width: 900px) {
  #productModal {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* Close button */
#modalClose {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  background: var(--white); border: 1px solid var(--blush2);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--muted);
  transition: all 0.2s;
}
#modalClose:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* Image column */
.modal-images {
  background: var(--blush);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.modal-main-img {
  flex: 1; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.modal-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s ease;
}
.modal-main-img.ubuntu { background: #EAE0D5; }
.modal-thumbs {
  display: flex; gap: 6px; padding: 10px;
  background: rgba(255,255,255,0.6);
  overflow-x: auto;
}
.modal-thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  cursor: pointer; border: 2px solid transparent;
  overflow: hidden; transition: border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: var(--blush);
}
.modal-thumb.ubuntu { background: #EAE0D5; }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumb.active { border-color: var(--rose); }

/* Mobile: give the image column a real height budget so the main image
   AND the flavour thumbnails both fit and are visible (the old vw-based
   max-height was shorter than the main image's min-height, so the
   overflow:hidden column was clipping the thumbnail row off entirely). */
@media (max-width: 900px) {
  .modal-images { max-height: none; overflow: visible; }
  .modal-main-img { flex: none; min-height: 0; height: 56vw; max-height: 300px; }
  .modal-thumbs { flex-shrink: 0; }
}

/* Info column */
.modal-info {
  padding: 2rem 2rem 1.5rem;
  display: flex; flex-direction: column;
  overflow-y: auto; max-height: 90vh;
}
.modal-brand {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.modal-brand.ubuntu { color: #8B6347; }
.modal-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 400; line-height: 1.2;
  margin-bottom: 0.5rem;
}
.modal-price {
  font-size: 22px; font-weight: 500;
  color: var(--charcoal); margin-bottom: 1.2rem;
}
.modal-price .old {
  font-size: 15px; color: var(--muted);
  text-decoration: line-through; margin-right: 8px;
}
.modal-divider {
  border: none; border-top: 1px solid var(--blush2); margin: 1rem 0;
}
.modal-desc-title {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.6rem;
}
.modal-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.85; margin-bottom: 1.2rem;
}
.modal-benefits {
  list-style: none; margin-bottom: 1.4rem;
}
.modal-benefits li {
  font-size: 13px; color: var(--muted);
  padding: 5px 0; border-bottom: 1px solid var(--blush2);
  display: flex; align-items: center; gap: 8px;
}
.modal-benefits li::before {
  content: '✦'; color: var(--gold); font-size: 9px; flex-shrink: 0;
}
.modal-add-btn {
  width: 100%; padding: 14px;
  background: var(--charcoal); color: var(--cream);
  border: none; font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s; margin-top: auto;
}
.modal-add-btn:hover { background: var(--rose-dk); }
.modal-add-btn[disabled] { opacity: 0.5; cursor: not-allowed; background: var(--muted); }
.modal-add-btn[disabled]:hover { background: var(--muted); }

@media (max-width: 700px) {
  #productModal { grid-template-columns: 1fr; }
  .modal-info { max-height: none; }

  /* Keep Add to Cart reachable and visible while scrolling the modal */
  .modal-add-btn {
    position: sticky;
    bottom: 0;
    z-index: 5;
    box-shadow: 0 -6px 14px rgba(44,31,23,0.12);
  }
}

/* ══════════════════════════════
   NOTIFY ME (Coming Soon)
══════════════════════════════ */
#notifyOverlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(44,36,32,0.55);
  z-index: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#notifyOverlay.open { display: block; opacity: 1; }
#notifyBox {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: min(380px, 90vw);
  background: var(--cream);
  z-index: 501;
  display: none;
  padding: 2.4rem 2rem 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#notifyBox.open { display: block; opacity: 1; transform: translate(-50%, -50%); }
#notifyClose {
  position: absolute; top: 14px; right: 14px;
  background: var(--white); border: 1px solid var(--blush2);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--muted);
  transition: all 0.2s;
}
#notifyClose:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.notify-eyebrow { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
#notifyTitle { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 400; margin-bottom: 0.8rem; }
#notifyText { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 1.4rem; }
#notifyEmail {
  width: 100%; padding: 12px 14px; border: 1px solid var(--blush2);
  background: var(--white); font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--charcoal); margin-bottom: 0.7rem;
}
#notifyEmail:focus { outline: none; border-color: var(--gold); }
#notifyMsg { font-size: 12px; min-height: 16px; margin-bottom: 0.8rem; }
#notifyMsg.error { color: #B3452C; }
#notifyMsg.success { color: #4C7A4C; }
#notifySubmit {
  width: 100%; background: var(--charcoal); color: var(--cream);
  border: none; padding: 13px; font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
#notifySubmit:hover { background: var(--rose-dk); }
#notifySubmit:disabled { opacity: 0.6; cursor: default; }
