:root {
  --purple-950: #231039;
  --purple-900: #351054;
  --purple-800: #4a1677;
  --purple-700: #5d1aa8;
  --purple-600: #7227c7;
  --purple-100: #efe5f8;
  --purple-50: #f8f3fc;
  --green-900: #0a4d2f;
  --green-800: #0f633d;
  --green-700: #17804f;
  --green-100: #ddf2e6;
  --ink: #15131a;
  --muted: #6c6875;
  --line: #ebe8ee;
  --soft: #f7f6f8;
  --white: #fff;
  --shadow: 0 20px 60px rgba(51, 16, 84, .09);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img, video { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 20px 0; }

.page-loader {
  position: fixed; inset: 0; background: #fff; z-index: 9999;
  display: grid; place-items: center;
}
.loader-mark {
  width: 46px; height: 46px; border-radius: 50%; border: 4px solid var(--purple-100);
  border-top-color: var(--purple-700); animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.promo-bar {
  background: linear-gradient(90deg, var(--purple-900), var(--purple-700));
  color: #fff; min-height: 38px; display: grid; place-items: center; overflow: hidden;
}
.promo-track { display: flex; gap: 18px; align-items: center; font-size: 13px; font-weight: 600; white-space: nowrap; }
.promo-divider { width: 1px; height: 14px; background: rgba(255,255,255,.35); }
.promo-track i { margin-right: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px); border-bottom: 1px solid rgba(235,232,238,.85);
  transition: box-shadow .25s ease, transform .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 34px rgba(26, 18, 35, .08); }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 240px; max-height: 66px; object-fit: contain; }
.desktop-nav { display: flex; gap: 26px; margin-left: auto; }
.desktop-nav a { position: relative; font-weight: 700; font-size: 15px; color: #39333f; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--purple-700); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; gap: 5px; align-items: center; }
.icon-btn { width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%; display: grid; place-items: center; position: relative; color: var(--purple-950); font-size: 19px; }
.icon-btn:hover { background: var(--purple-50); }
.badge { position: absolute; right: 1px; top: 1px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 10px; display: grid; place-items: center; background: var(--purple-700); color: #fff; font: 700 10px/1 "DM Sans"; }
.badge.green { background: var(--green-700); }
.menu-toggle { display: none; }
.mobile-search { display: none; padding-bottom: 13px; }
.search-box { height: 50px; border: 1px solid #ddd8e4; border-radius: 14px; display: flex; align-items: center; gap: 12px; padding: 0 16px; background: #fff; }
.search-box i { color: var(--purple-700); }
.search-box input { width: 100%; border: 0; outline: none; color: var(--ink); background: transparent; }

.mobile-drawer { position: fixed; z-index: 130; inset: 0 auto 0 0; width: min(88vw, 370px); background: #fff; transform: translateX(-105%); transition: transform .35s cubic-bezier(.22,.8,.22,1); padding: 18px; display: flex; flex-direction: column; }
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay { position: fixed; z-index: 120; inset: 0; background: rgba(20, 10, 29, .38); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.drawer-head img { width: 210px; }
.mobile-drawer nav { display: grid; margin-top: 12px; }
.mobile-drawer nav a { display: flex; align-items: center; justify-content: space-between; padding: 17px 8px; border-bottom: 1px solid var(--line); font-weight: 700; }
.drawer-card { margin-top: auto; padding: 18px; background: var(--purple-50); border-radius: var(--radius-lg); display: grid; gap: 10px; }
.drawer-card span { color: var(--purple-700); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.drawer-card strong { font-family: "Manrope"; font-size: 20px; line-height: 1.25; }

.hero { padding-top: 28px; padding-bottom: 24px; }
.hero-stage { min-height: min(710px, 78vh); border-radius: var(--radius-xl); position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: flex-end; box-shadow: var(--shadow); }
.hero-media { position: absolute; inset: -4%; z-index: -3; }
.hero-video { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,8,34,.86) 0%, rgba(28,8,43,.58) 42%, rgba(17,37,27,.18) 70%, rgba(9,31,20,.08) 100%); }
.hero-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,7,19,.25), transparent 44%); z-index: -1; pointer-events: none; }
.hero-copy { width: min(700px, 72%); padding: clamp(36px, 7vw, 86px); color: #fff; }
.eyebrow, .section-kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { color: #d8f7e6; }
.hero-title { font-family: "Manrope"; font-size: clamp(46px, 7.6vw, 94px); line-height: .96; margin: 16px 0 18px; letter-spacing: -.05em; }
.hero-title span { color: #95e4b9; display: block; }
.hero-copy p { max-width: 560px; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.btn { border: 0; border-radius: 999px; min-height: 50px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 10px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-purple { color: #fff; background: linear-gradient(135deg, var(--purple-700), #8d35d7); box-shadow: 0 15px 30px rgba(93,26,168,.27); }
.btn-green { color: #fff; background: linear-gradient(135deg, var(--green-800), var(--green-700)); box-shadow: 0 15px 30px rgba(15,99,61,.18); }
.watch-btn { border: 0; background: transparent; color: #fff; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.watch-btn span { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; display: grid; place-items: center; }
.hero-badge { position: absolute; right: 36px; top: 34px; border: 1px solid rgba(255,255,255,.28); background: rgba(40,16,58,.26); backdrop-filter: blur(14px); color: #fff; border-radius: 20px; padding: 17px 20px; }
.hero-badge span { display: block; font-size: 11px; letter-spacing: .2em; margin-bottom: 8px; color: #c8f0d6; }
.hero-badge strong { font-family: "Manrope"; line-height: 1.35; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; z-index: -1; }
.orb-one { width: 220px; height: 220px; right: -40px; bottom: 80px; background: rgba(99,33,174,.25); }
.orb-two { width: 120px; height: 120px; right: 180px; top: 120px; background: rgba(46,154,94,.18); }
.hero-dots { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.55); }
.hero-dots button.active { width: 28px; background: #fff; }

.account-card { padding: 20px 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; background: linear-gradient(110deg, #f5edf9, #edf8f1); border: 1px solid #eadff1; border-radius: var(--radius-lg); }
.account-icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--green-700); font-size: 24px; box-shadow: 0 8px 24px rgba(46,37,59,.07); }
.account-copy span { font: 800 19px/1.25 "Manrope"; }
.account-copy p { margin: 4px 0 0; color: var(--muted); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-kicker { color: var(--purple-700); margin-bottom: 8px; }
.section-head h2, .story-copy h2, .notify-card h2 { margin: 0; font: 800 clamp(30px, 4vw, 46px)/1.08 "Manrope"; letter-spacing: -.035em; }
.section-head p { margin: 8px 0 0; color: var(--muted); }
.text-link { color: var(--purple-700); font-weight: 800; white-space: nowrap; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { min-height: 86px; padding: 14px 16px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-md); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(42,22,56,.08); border-color: #dfd5e8; }
.category-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; }
.category-icon.purple { color: var(--purple-700); background: var(--purple-100); }
.category-icon.green { color: var(--green-700); background: var(--green-100); }
.category-card .arrow { font-size: 12px; color: #8f8997; }

.quality-panel { border-radius: var(--radius-lg); padding: 24px; background: #edf6ef; display: grid; grid-template-columns: 1.1fr 2.5fr; gap: 24px; align-items: center; }
.quality-intro span { color: var(--green-800); font-weight: 800; font-size: 18px; }
.quality-intro p { margin: 6px 0 0; color: #506057; }
.quality-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.quality-points div { min-height: 88px; background: #fff; border-radius: 14px; display: flex; align-items: center; gap: 12px; padding: 16px; font-weight: 700; }
.quality-points i { color: var(--green-700); font-size: 22px; }

.product-scroller { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: transform .24s ease, box-shadow .24s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image-wrap { aspect-ratio: 1 / .94; position: relative; overflow: hidden; background: #f4f3f5; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.8,.22,1); }
.product-card:hover img { transform: scale(1.045); }
.wishlist-btn { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border: 1px solid rgba(0,0,0,.07); border-radius: 50%; background: rgba(255,255,255,.92); color: var(--purple-900); font-size: 17px; }
.product-pill { position: absolute; left: 12px; bottom: 12px; color: #fff; font-size: 11px; font-weight: 800; padding: 8px 10px; border-radius: 999px; }
.product-pill.purple { background: rgba(93,26,168,.9); }
.product-pill.green { background: rgba(15,99,61,.9); }
.product-body { padding: 17px; }
.product-body h3 { margin: 0 0 14px; font: 800 18px/1.3 "Manrope"; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 15px; }
.product-meta strong { color: var(--purple-900); font-size: 19px; }
.product-meta span { color: var(--green-700); font-size: 12px; font-weight: 800; }
.btn-add { width: 100%; min-height: 46px; border-radius: 12px; color: #fff; background: var(--green-800); }

.story-panel { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 530px; background: var(--purple-950); border-radius: var(--radius-xl); overflow: hidden; }
.story-image { position: relative; overflow: hidden; }
.story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 62%, var(--purple-950)); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { color: #fff; align-self: center; padding: 60px 58px 60px 34px; }
.story-copy .section-kicker { color: #9be5bd; }
.story-copy p { color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.7; margin: 20px 0 28px; }

.notify-card { padding: clamp(28px, 5vw, 56px); border-radius: var(--radius-xl); background: linear-gradient(135deg, #f3e9fa 0%, #fff 48%, #e6f5ec 100%); border: 1px solid #e8deef; display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: end; }
.notify-card p { color: var(--muted); line-height: 1.6; }
.notify-form { display: flex; gap: 10px; background: #fff; border: 1px solid #ded8e5; border-radius: 999px; padding: 7px; }
.notify-form input { border: 0; outline: none; padding: 0 15px; flex: 1; min-width: 0; }

.footer { margin-top: 32px; padding: 56px 0 32px; background: #120c18; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 36px; }
.footer-logo { width: 220px; filter: brightness(0) invert(1); opacity: .95; }
.footer-grid p { color: rgba(255,255,255,.63); max-width: 380px; line-height: 1.6; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 10px; }
.footer-grid strong { color: #b9efcf; margin-bottom: 7px; }
.footer-grid a { color: rgba(255,255,255,.68); font-size: 14px; }
.footer-bottom { padding-top: 34px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); display: flex; justify-content: space-between; font-size: 13px; }
.mobile-bottom-nav { display: none; }

.reveal-up { opacity: 0; transform: translateY(34px); }

@media (max-width: 980px) {
  .desktop-nav, .desktop-search-trigger, .account-btn { display: none; }
  .menu-toggle { display: grid; }
  .header-inner { min-height: 76px; gap: 10px; }
  .header-actions { margin-left: auto; }
  .brand { flex: 1; display: flex; justify-content: center; }
  .brand img { width: min(240px, 46vw); }
  .mobile-search { display: block; }
  .hero-copy { width: 82%; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-panel { grid-template-columns: 1fr; }
  .quality-points { grid-template-columns: repeat(2, 1fr); }
  .product-scroller { grid-template-columns: repeat(2, 1fr); }
  .story-panel { grid-template-columns: 1fr; }
  .story-image { min-height: 420px; }
  .story-image::after { background: linear-gradient(0deg, var(--purple-950), transparent 45%); }
  .story-copy { padding: 34px; }
  .notify-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 680px) {
  body { padding-bottom: 76px; }
  .container { width: min(100% - 24px, 1180px); }
  .section-pad { padding: 38px 0; }
  .section-pad-sm { padding: 14px 0; }
  .promo-bar { min-height: 36px; }
  .promo-track { animation: ticker 18s linear infinite; width: max-content; }
  @keyframes ticker { from { transform: translateX(28%); } to { transform: translateX(-58%); } }
  .header-inner { min-height: 70px; }
  .icon-btn { width: 40px; height: 40px; }
  .header-actions .icon-btn:nth-child(1) { display: none; }
  .brand img { width: 205px; }
  .search-box { height: 48px; }
  .hero { padding-top: 14px; }
  .hero-stage { min-height: 565px; border-radius: 24px; align-items: end; }
  .hero-media { inset: 0; }
  .hero-overlay { background: linear-gradient(0deg, rgba(24,7,36,.91) 0%, rgba(24,7,36,.48) 52%, rgba(24,7,36,.08) 100%); }
  .hero-copy { width: 100%; padding: 26px 22px 56px; }
  .hero-title { font-size: clamp(48px, 14.6vw, 68px); }
  .hero-copy p { font-size: 16px; max-width: 94%; }
  .hero-badge { top: 18px; right: 18px; padding: 11px 13px; border-radius: 14px; }
  .hero-badge strong { font-size: 12px; }
  .hero-badge span { font-size: 9px; }
  .watch-btn { font-size: 13px; }
  .watch-btn span { width: 42px; height: 42px; }
  .account-card { grid-template-columns: auto 1fr; padding: 17px; }
  .account-card .btn { grid-column: 1 / -1; width: 100%; border-radius: 12px; }
  .account-copy span { font-size: 17px; }
  .account-copy p { font-size: 13px; }
  .section-head { align-items: center; }
  .section-head h2, .story-copy h2, .notify-card h2 { font-size: 30px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .category-card { min-height: 70px; padding: 11px; gap: 9px; font-size: 13px; }
  .category-icon { width: 39px; height: 39px; font-size: 16px; }
  .category-card .arrow { display: none; }
  .quality-panel { padding: 18px; }
  .quality-points { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .quality-points div { min-height: 78px; padding: 12px; font-size: 12px; }
  .product-scroller { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 10px; scrollbar-width: none; margin-right: -12px; }
  .product-scroller::-webkit-scrollbar { display: none; }
  .product-card { flex: 0 0 78%; max-width: 310px; scroll-snap-align: start; }
  .story-image { min-height: 340px; }
  .story-copy { padding: 28px 22px 32px; }
  .notify-card { padding: 24px 18px; }
  .notify-form { border-radius: 16px; display: grid; }
  .notify-form input { min-height: 44px; }
  .notify-form .btn { border-radius: 12px; }
  .footer { padding-bottom: 110px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 6px; }
  .mobile-bottom-nav { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; height: 76px; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); box-shadow: 0 -12px 30px rgba(35,16,57,.08); display: grid; grid-template-columns: repeat(5,1fr); padding: 8px 8px max(8px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
  .mobile-bottom-nav a { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; font-size: 10px; color: #6e6877; }
  .mobile-bottom-nav i { font-size: 19px; }
  .mobile-bottom-nav a.active { color: var(--purple-700); font-weight: 800; }
  .mobile-bottom-nav b { position: absolute; top: 0; left: 53%; min-width: 17px; height: 17px; border-radius: 50%; background: var(--green-700); color: #fff; font-size: 9px; display: grid; place-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-up { opacity: 1; transform: none; }
}
