
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --rose:       #8d1847;
  --rose-dk:    #fa5398;
  --rose-lt:    #fa5398;
  --blush:      #f9eded;
  --nude:       #f5ede6;
  --nude-dk:    #e8d5c8;
  --cream:      #fdf8f5;
  --bark:       #4a3728;
  --bark-lt:    #000000;
  --warm-gray:  #000000;
  --border:     rgba(74,55,40,0.1);
  --white:      #ffffff;

  --serif: 'Poppins', system-ui, sans-serif;
  /*--sans:    'DM Sans', system-ui, sans-serif;*/

  --sans: 'Montserrat', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--bark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--sans); border: none; }
ul { list-style: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLLBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANNOUNCEMENT BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.announce-bar {
  background: var(--rose-dk);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.announce-bar span { margin: 0 16px; opacity: 0.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .3s;
}
nav.elevated { box-shadow: 0 2px 24px rgba(74,55,40,0.06); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.04em;
}
.nav-logo em { color: var(--rose-dk); font-style: italic; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--bark-lt);
  letter-spacing: 0.04em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose-dk);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--bark); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-icon-btn {
  background: transparent;
  padding: 6px;
  color: var(--bark);
  font-size: 1.1rem;
  border-radius: 50%;
  transition: background .2s;
  line-height: 1;
}
.nav-icon-btn:hover { background: var(--rose-lt); }

.nav-shop-btn {
  background: var(--rose-dk);
  color: var(--white);
  padding: 9px 22px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 40px;
  transition: background .25s, transform .15s;
}
.nav-shop-btn:hover { background: var(--bark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 4px; background: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--bark); transition: all .3s; }

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 800;
  flex-direction: column;
  padding: 96px 36px 40px;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--bark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--nude);
}

/* LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,180,184,0.25);
  border: 1px solid rgba(212,145,154,0.35);
  color: var(--rose-dk);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  width: fit-content;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .2s both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-dk);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(1.4); }
}

.hero-title {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--bark);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .35s both;
}
.hero-title em { font-style: italic; color: var(--rose-dk); }

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--bark-lt);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .65s both;
}

.btn-filled {
  background: var(--bark);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background .25s, transform .2s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.btn-filled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity .2s;
}
.btn-filled:hover::after { opacity: 1; }
.btn-filled:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(74,55,40,0.22); }

.btn-outline-rose {
  background: transparent;
  color: var(--rose-dk);
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--rose-dk);
  transition: background .25s, color .25s, transform .2s;
}
.btn-outline-rose:hover { background: var(--rose-dk); color: var(--white); transform: translateY(-2px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s both;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-left: -10px;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--white);
  overflow: hidden;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.8rem; color: var(--bark-lt); line-height: 1.5; }
.hero-trust-text strong { color: var(--bark); font-weight: 500; }

/* RIGHT */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--nude) 0%, transparent 30%),
              linear-gradient(to top, rgba(245,237,230,0.4) 0%, transparent 40%);
}

/* Fallback gradient */
.hero-img-fallback {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, var(--rose-lt) 0%, var(--nude-dk) 50%, var(--rose) 100%);*/
  display: flex; align-items: center; justify-content: center;
}

.hero-decorative {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 3;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(74,55,40,0.1);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-deco-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--rose-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-deco-title { font-size: 0.8rem; font-weight: 500; color: var(--bark); }
.hero-deco-sub { font-size: 0.7rem; color: var(--warm-gray); margin-top: 1px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee-wrap {
  background: var(--rose-dk);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 48px;
}
.marquee-dot { font-size: 0.5rem; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED SECTION STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
section { padding: 96px 48px; }
.section-inner { max-width: 1300px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dk);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--rose-dk); }

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--bark-lt);
  line-height: 1.75;
  max-width: 440px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
  position: relative;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--blush); }

.feature-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--rose-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background .3s, transform .3s;
}
.feature-card:hover .feature-icon-wrap { background: var(--rose); transform: scale(1.08); }

.feature-icon-wrap svg { width: 26px; height: 26px; stroke: var(--rose-dk); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.feature-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 10px;
}
.feature-desc { font-size: 0.82rem; font-weight: 300; color: var(--bark-lt); line-height: 1.65; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.products { background: var(--cream); }

.products-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.filter-pill {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--bark-lt);
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
  transition: all .2s;
}
.filter-pill.active,
.filter-pill:hover { background: var(--rose-dk); color: var(--white); border-color: var(--rose-dk); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(74,55,40,0.1); }

.prod-img-wrap {
  position: relative;
  height: 280px;
  background: var(--nude);
  overflow: hidden;
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

.prod-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rose-dk);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

.prod-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(74,55,40,0.08);
  font-size: 1rem;
  color: var(--warm-gray);
  transition: color .2s, background .2s;
  cursor: pointer;
}
.prod-wish:hover, .prod-wish.active { color: #e0525f; background: #fff; }

.prod-quick-view {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(74,55,40,0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .3s, transform .3s var(--ease);
  cursor: pointer;
}
.prod-card:hover .prod-quick-view { opacity: 1; transform: translateY(0); }

.prod-body { padding: 20px 22px 22px; }

.prod-category {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-dk);
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 6px;
  line-height: 1.35;
}
.prod-desc { font-size: 16px; font-weight: 500; color: var(--warm-gray); line-height: 1.6; margin-bottom: 14px; }

.prod-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.stars { color: #e8a838; font-size: 0.8rem; letter-spacing: 1px; }
.rating-count { font-size: 0.72rem; color: var(--warm-gray); }

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.prod-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bark);
}
.prod-price-old { font-size: 0.82rem; color: var(--warm-gray); text-decoration: line-through; margin-left: 6px; font-weight: 300; }

.prod-buy-btn {
  background: var(--rose-dk);
  color: var(--white)!important;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.76rem;
  font-weight: 500;
  transition: background .2s, transform .15s;
}
.prod-buy-btn:hover { background: var(--bark); transform: scale(1.04); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STRIP / BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mid-banner {
  background: linear-gradient(135deg, var(--nude) 0%, var(--rose-lt) 100%);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232,180,184,0.3);
}
.mid-banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mid-banner-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.mid-banner-title em { font-style: italic; color: var(--rose-dk); }
.mid-banner-desc { font-size: 0.95rem; color: var(--bark-lt); line-height: 1.75; margin-bottom: 32px; font-weight: 300; }

.mid-banner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mid-stat {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  padding: 24px;
}
.mid-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--rose-dk);
  line-height: 1;
  margin-bottom: 6px;
}
.mid-stat-label { font-size: 16px; font-weight: 400; color: var(--bark-lt); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY CHOOSE US
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.why-card:hover { border-color: var(--rose); box-shadow: 0 12px 36px rgba(232,180,184,0.25); transform: translateY(-4px); }

.why-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--rose-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background .3s;
}
.why-card:hover .why-icon-wrap { background: var(--rose); }
.why-icon-wrap svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.why-num { font-size: 0.65rem; font-weight: 600; color: var(--rose-dk); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.why-title { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--bark); margin-bottom: 10px; }
.why-desc { font-size: 16px; font-weight: 500; color: var(--bark-lt); line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials { background: var(--nude); overflow: hidden; }

.t-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.t-nav { display: flex; gap: 10px; }
.t-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--rose-dk);
  background: transparent;
  color: var(--rose-dk);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.t-nav-btn:hover { background: var(--rose-dk); color: var(--white); }

.t-track-wrap { overflow: hidden; }
.t-track {
  display: flex;
  gap: 20px;
  transition: transform .6s var(--ease);
}

.t-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.t-card:hover { box-shadow: 0 12px 40px rgba(74,55,40,0.08); }

.t-quote-glyph { font-family: var(--serif); font-size: 3.5rem; color: var(--rose); line-height: 1; margin-bottom: 12px; }

.t-stars { color: #e8a838; font-size: 0.9rem; letter-spacing: 1.5px; margin-bottom: 14px; }

.t-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-lt);
  overflow: hidden;
  background: var(--rose-lt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--rose-dk); font-size: 0.9rem;
}
.t-name { font-size: 0.88rem; font-weight: 500; color: var(--bark); }
.t-loc { font-size: 0.72rem; color: var(--warm-gray); margin-top: 1px; }
.t-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; color: #2b9348; font-weight: 500; margin-top: 3px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq { background: var(--cream); }

.faq-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left {}

.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--rose); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bark);
  cursor: pointer;
}
.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--warm-gray);
  transition: transform .3s, background .2s, border-color .2s;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); background: var(--rose-lt); border-color: var(--rose); color: var(--rose-dk); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--bark-lt);
  line-height: 1.75;
}

.faq-right {
  position: sticky;
  top: 100px;
}
.faq-cta-card {
  background: linear-gradient(135deg, var(--rose-lt), var(--nude-dk));
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.faq-cta-icon { font-size: 2.5rem; margin-bottom: 18px; }
.faq-cta-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--bark); margin-bottom: 12px; }
.faq-cta-desc { font-size: 0.85rem; color: var(--bark-lt); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.faq-cta-btn {
  display: inline-block;
  background: var(--bark);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: background .25s, transform .2s;
}
.faq-cta-btn:hover { background: var(--rose-dk); transform: translateY(-1px); }

.size-guide {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.size-guide h4 { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--bark); margin-bottom: 16px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.size-table th { background: var(--rose-lt); color: var(--bark); font-weight: 500; padding: 8px 12px; text-align: left; font-size: 0.72rem; letter-spacing: 0.06em; }
.size-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--bark-lt); }
.size-table tr:last-child td { border-bottom: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FINAL CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.final-cta {
  background: var(--bark);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,180,184,0.12) 0%, transparent 70%);
}
.final-cta-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; }
.final-cta-title { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.final-cta-title em { font-style: italic; color: var(--rose); }
.final-cta-desc { font-size: 0.95rem; font-weight: 300; color: rgba(253,248,245,0.55); margin-bottom: 40px; line-height: 1.7; max-width: 420px; margin-left: auto; margin-right: auto; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--bark);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: background .25s, transform .2s;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color .25s, background .25s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 72px 48px 0;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--bark); margin-bottom: 14px; }
.footer-logo em { font-style: italic; color: var(--rose-dk); }
.footer-about { font-size: 16px; font-weight: 400; color: var(--bark-lt); line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--bark-lt);
  font-size: 0.75rem;
  font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
}
.social-pill:hover { border-color: var(--rose-dk); color: var(--rose-dk); background: var(--rose-lt); }

.footer-col h5 {
  font-size: 18px;
  font-weight: 600;
  /*letter-spacing: 0.16em;*/
  /*text-transform: uppercase;*/
  color: var(--bark);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 16px; font-weight: 400; color: var(--bark-lt); transition: color .2s; }
.footer-col ul a:hover { color: var(--rose-dk); }

.footer-contact-label { font-size: 16px; text-transform: uppercase; color: var(--rose-dk); font-weight: 500; margin-bottom: 4px; }
.footer-contact-val { font-size: 16px; color: var(--bark-lt); font-weight: 400; margin-bottom: 14px; }

.newsletter-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 9px 18px;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--bark);
  background: var(--cream);
  outline: none;
  transition: border-color .2s;
}
.newsletter-input:focus { border-color: var(--rose-dk); }
.newsletter-btn {
  background: var(--rose-dk);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: background .2s;
}
.newsletter-btn:hover { background: var(--bark); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.76rem; color: var(--warm-gray); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.76rem; color: var(--warm-gray); transition: color .2s; }
.footer-legal a:hover { color: var(--rose-dk); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODAL / BOOKING POPUP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(74,55,40,0.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--white);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  padding: 44px 40px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform .4s var(--ease);
  box-shadow: 0 32px 80px rgba(74,55,40,0.18);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 18px; right: 20px;
  background: var(--nude); border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1rem; color: var(--bark-lt);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--rose-lt); color: var(--rose-dk); }

.modal-eyebrow { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-dk); font-weight: 500; margin-bottom: 8px; }
.modal-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--bark); margin-bottom: 6px; }
.modal-sub { font-size: 0.82rem; color: var(--warm-gray); margin-bottom: 28px; }

.modal-form-group { margin-bottom: 16px; }
.modal-form-group label { display: block; font-size: 0.76rem; font-weight: 500; color: var(--bark); margin-bottom: 6px; }
.modal-form-group input,
.modal-form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--bark);
  background: var(--cream);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.modal-form-group input:focus,
.modal-form-group select:focus { border-color: var(--rose-dk); background: var(--white); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.modal-submit {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--rose-dk);
  color: var(--white);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background .25s, transform .15s;
  position: relative; overflow: hidden;
}
.modal-submit:hover { background: var(--bark); transform: translateY(-1px); }
.modal-submit.loading { color: transparent; }
.modal-submit.loading::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { rotate: 360deg; } }

.modal-success { display: none; text-align: center; padding: 20px 0; }
.modal-success.show { display: block; }
.modal-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem; color: #2b9348;
}
.modal-success-title { font-family: var(--serif); font-size: 1.4rem; color: var(--bark); margin-bottom: 8px; }
.modal-success-sub { font-size: 0.84rem; color: var(--bark-lt); line-height: 1.65; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 400px; }
  .hero-left { padding: 60px 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-right { position: static; }
  .mid-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .t-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-shop-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }
  section { padding: 64px 20px; }
  .hero-left { padding: 48px 20px; }
  .hero-right { height: 300px; }
  .hero-decorative { bottom: 16px; right: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .t-card { flex: 0 0 85vw; min-width: 85vw; }
  .mid-banner { padding: 60px 20px; }
  .mid-banner-stats { grid-template-columns: 1fr 1fr; }
  .final-cta { padding: 72px 20px; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .modal-box { padding: 32px 24px; }
  .modal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .mid-banner-stats { grid-template-columns: 1fr; }
  .announce-bar { font-size: 0.7rem; }
}


.nav-icon-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
}

.cart-icon i {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff3b3b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}




/* hero slider */

        /* Custom CSS to make the hero section impactfull */
.carousel-item {
  position: relative;              /* important */
  /*height: 100vh;                 */
  min-height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Overlay (FIXED) */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;                        /* 🔥 replaces top/left/width/height */
  /*background: rgba(0, 0, 0, 0.5);*/
  z-index: 1;
}
.about-padding{
    padding:0px 40px!important;
}
#contact-info ul{
    padding-left: 0px!important; 
}




        .carousel-caption {
            bottom: 30%;
            z-index: 2;
        }

        .carousel-caption h1 {
            font-size: 4rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        a {
     color: #000000!important; 
     text-decoration: none!important; 
}

