/* ============================================================
   TinyNest Co. — global stylesheet (multi-page)
   ============================================================ */

:root {
  --cream: #FAFBFD; --cream-2: #FFFFFF; --ink: #23273F; --ink-soft: #565A78;
  --muted: #9698B0; --line: #E8EAF1;
  --coral: #7FB4EC; --coral-2: #F7B7D2; --coral-deep: #4E7FD6;
  --pink: #EC7CA8; --pink-deep: #DA5C93;
  --sage: #6FC2A6; --sage-2: #AEE0CE; --lav: #C9BCE8; --gold: #E7BE7C;
  --night: #20263F; --night-2: #2A3150; --night-3: #3A4266;
  --radius: 22px; --radius-lg: 34px;
  --shadow-sm: 0 4px 18px rgba(43,43,64,.08);
  --shadow: 0 18px 50px rgba(43,43,64,.12);
  --shadow-lg: 0 40px 90px rgba(43,43,64,.16);
  --coral-grad: #4E7FD6; /* solid — no gradient */
  --ease: cubic-bezier(.22,1,.36,1);
  --maxw: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-padding-top: 90px; }
body { font-family: var(--font-ui); color: var(--ink); background: var(--cream); line-height: 1.6; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; }
em { font-style: italic; }
.text-muted { color: var(--muted); }
::selection { background: var(--coral-2); color: var(--ink); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Reveal + parallax */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-parallax] { will-change: transform; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } [data-parallax] { transform: none !important; } * { animation: none !important; } }

/* Eyebrow / stars */
.eyebrow { display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-deep); background: rgba(120,190,232,.20); padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; }
.eyebrow--center { display: block; width: fit-content; margin: 0 auto 18px; }
.eyebrow--light { color: var(--coral-2); background: rgba(246,187,211,.26); }
.stars { color: #F5A623; letter-spacing: 2px; }
.stars--sm { font-size: 15px; }
.stars--sm span { font-family: var(--font-ui); font-size: 13.5px; color: var(--muted); letter-spacing: 0; margin-left: 6px; }

/* ============================================================ Buttons ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-ui); font-weight: 600; font-size: 15px; border: none; cursor: pointer; border-radius: 100px; padding: 12px 22px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s; color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--primary { background: var(--coral-grad); color: #fff; box-shadow: 0 10px 26px rgba(94,143,214,.32); }
.btn--primary:hover { box-shadow: 0 16px 38px rgba(94,143,214,.42); }
.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; box-shadow: none; border: 1.5px solid var(--line); }
.btn--ghost:hover { background: #fff; }

/* ============================================================ Brand ============ */
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--ink); }
.brand__mark { color: var(--coral-deep); display: grid; place-items: center; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.08); }
.brand__co { color: var(--coral-deep); }

/* ============================================================ Announce + Nav ============ */
.announce { background: var(--night); color: #F3ECE1; font-size: 13px; font-weight: 500; letter-spacing: .02em; overflow: hidden; height: 38px; display: flex; align-items: center; }
.announce__track { display: flex; gap: 34px; white-space: nowrap; animation: marquee 28s linear infinite; padding-left: 34px; }
.announce__track span { opacity: .92; }
@keyframes marquee { to { transform: translateX(-50%); } }

.nav { position: sticky; top: 0; z-index: 60; background: rgba(250,251,252,.72); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid transparent; transition: border-color .4s, box-shadow .4s; }
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(32,30,51,.05); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--coral); border-radius: 2px; transition: width .35s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 50%; border: none; background: transparent; color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .25s; }
.icon-btn:hover { background: rgba(32,30,51,.06); }
.cart-count { position: absolute; top: 2px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 100px; background: var(--coral-deep); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; transition: transform .3s var(--ease); }
.cart-count.is-empty { transform: scale(0); }
.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }

/* ============================================================ Overlay / Mobile menu / Cart drawer ============ */
.overlay { position: fixed; inset: 0; background: rgba(26,23,48,.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .35s; z-index: 80; }
.overlay.show { opacity: 1; pointer-events: auto; }

.mobile-menu { position: fixed; top: 0; right: 0; width: min(320px, 84vw); height: 100%; background: var(--cream-2); z-index: 90; transform: translateX(100%); transition: transform .4s var(--ease); padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-lg); }
.mobile-menu.open { transform: none; }
.mobile-menu__x { align-self: flex-end; width: 40px; height: 40px; border: none; background: transparent; font-size: 30px; line-height: 1; cursor: pointer; color: var(--ink); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin: 10px 0 20px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 1.5rem; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu nav a.is-active { color: var(--coral-deep); }

.cart-drawer { position: fixed; top: 0; right: 0; width: min(420px, 92vw); height: 100%; background: var(--cream-2); z-index: 95; transform: translateX(100%); transition: transform .42s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.cart-drawer.open { transform: none; }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-size: 1.5rem; }
.cart__x { border: none; background: transparent; font-size: 30px; line-height: 1; cursor: pointer; color: var(--ink); }
.cart__ship-bar { background: rgba(127,168,138,.14); color: var(--sage); font-size: 13.5px; padding: 10px 24px; text-align: center; }
.cart__body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart__empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart__empty span { font-size: 42px; display: block; margin-bottom: 14px; }
.cart__empty p { margin-bottom: 20px; }
.cart__item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart__thumb { width: 64px; height: 64px; border-radius: 14px; overflow: hidden; display: block; }
.cart__info b { font-size: 15px; }
.cart__info > span { display: block; color: var(--muted); font-size: 13px; margin: 2px 0 8px; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 15px; line-height: 1; color: var(--ink); }
.qty span { min-width: 20px; text-align: center; font-weight: 600; font-size: 14px; }
.qty__rm { width: auto !important; border: none !important; background: none !important; color: var(--muted) !important; font-size: 12px !important; text-decoration: underline; margin-left: 4px; }
.cart__line { font-family: var(--font-display); font-weight: 600; }
.cart__foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.cart__row { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink-soft); }
.cart__row--total { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin: 10px 0 16px; }
.cart__note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ============================================================ Hero (photo + parallax) ============ */
.hero { position: relative; overflow: hidden; min-height: min(92vh, 820px); display: flex; align-items: center; }
.hero__bg { position: absolute; inset: -10% 0; z-index: 0; }
.hero__bg img { width: 100%; height: 120%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(250,251,252,.97) 0%, rgba(250,251,252,.9) 34%, rgba(250,251,252,.55) 60%, rgba(250,251,252,.15) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; width: 100%; }
.hero__copy { max-width: 620px; }
.hero__title { font-size: clamp(2.8rem, 6.4vw, 5rem); font-weight: 600; }
.hero__title em { color: var(--pink-deep); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 500px; margin: 22px 0 32px; }
.hero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__rating { display: flex; flex-direction: column; font-size: 13.5px; color: var(--ink-soft); }
.hero__badges { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.hero__badges li { background: rgba(255,255,255,.75); border: 1px solid var(--line); padding: 9px 15px; border-radius: 100px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-sm); }
.hero__float { position: absolute; z-index: 3; font-size: 30px; filter: drop-shadow(0 6px 12px rgba(32,30,51,.15)); }
.hero__float.f1 { top: 16%; right: 14%; animation: drift 7s ease-in-out infinite; }
.hero__float.f2 { top: 40%; right: 28%; animation: drift 6s ease-in-out infinite .6s; }
.hero__float.f3 { bottom: 20%; right: 10%; animation: drift 8s ease-in-out infinite 1s; }
@keyframes drift { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(8deg); } }

/* ============================================================ Section scaffolding ============ */
.section { padding: 96px 24px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section__head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.1rem; }
.dark { background: var(--night); color: #F3ECE1; }
.dark .section__head p { color: #C8BFD6; }

/* Value props */
.values { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { text-align: center; padding: 20px; }
.value__ico { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 20px; display: grid; place-items: center; font-size: 28px; background: rgba(120,190,232,.16); }
.value h4 { font-size: 1.2rem; margin-bottom: 6px; }
.value p { color: var(--ink-soft); font-size: 14.5px; }

/* Lifestyle parallax band */
.band { position: relative; height: 460px; overflow: hidden; display: grid; place-items: center; text-align: center; color: #fff; }
.band__bg { position: absolute; inset: -18% 0; z-index: 0; }
.band__bg img { width: 100%; height: 130%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,23,48,.28), rgba(26,23,48,.5)); z-index: 1; }
.band__inner { position: relative; z-index: 2; max-width: 640px; padding: 24px; }
.band__inner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: #fff; }
.band__inner p { font-size: 1.15rem; margin-top: 14px; opacity: .95; }

/* Split feature (image + copy) */
.split { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 24px; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__copy h2, .split__copy h3 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 12px 0 16px; }
.split__copy p { color: var(--ink-soft); font-size: 1.08rem; }

/* Ticks */
.ticks { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; font-weight: 500; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; background: var(--sage); color: #fff; border-radius: 50%; font-size: 12px; display: grid; place-items: center; font-weight: 700; }

/* Stats */
.stat-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 34px; box-shadow: var(--shadow-sm); min-width: 170px; text-align: center; }
.stat__num, .stat__unit { font-family: var(--font-display); font-weight: 600; color: var(--coral-deep); }
.stat__num { font-size: 3rem; } .stat__unit { font-size: 1.5rem; }
.stat p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.dark .stat { background: var(--night-2); border-color: var(--night-3); }
.dark .stat p { color: #C8BFD6; }

/* ============================================================ Product card + visual ============ */
.shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: var(--maxw); margin: 0 auto; }
.pc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.pc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pc__media { position: relative; aspect-ratio: 1.1; overflow: hidden; display: block; }
.pc__badge { position: absolute; top: 14px; left: 14px; z-index: 3; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.pc__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pc__body h4 { font-size: 1.35rem; }
.pc__tag { color: var(--muted); font-size: 14px; margin: 4px 0 10px; }
.pc__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pc__price { display: flex; align-items: baseline; gap: 8px; }
.pc__price b { font-family: var(--font-display); font-size: 1.5rem; }
.pc__price s { color: var(--muted); font-size: 14px; }
.pc__save { background: rgba(127,168,138,.16); color: var(--sage); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.pc__btn { background: var(--ink); color: #fff; font-size: 14px; padding: 10px 18px; box-shadow: none; white-space: nowrap; }
.pc__btn:hover { background: var(--coral-deep); }

.pv { position: relative; width: 100%; height: 100%; display: grid; place-items: center; background: var(--cw); overflow: hidden; }
.pv--photo img { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; object-fit: cover; background: #fff; }
.pv--lg.pv--photo img, .pd__main .pv--photo img { object-fit: contain; padding: 6%; }
.pv__halo { position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%; background: var(--gw); filter: blur(2px); box-shadow: 0 0 60px rgba(255,180,120,.5); animation: haloPulse 6s ease-in-out infinite; }
.pv--dark .pv__halo { box-shadow: 0 0 60px rgba(140,157,255,.55); }
@keyframes haloPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.1); opacity: 1; } }
.pv__emoji { position: relative; z-index: 2; font-size: 3.4rem; filter: drop-shadow(0 6px 12px rgba(32,30,51,.22)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.pv--lg .pv__emoji { font-size: 6rem; }
.pv--thumb .pv__emoji { font-size: 1.7rem; }
.pv--thumb .pv__halo { box-shadow: none; }

/* Shop filters */
.shop__filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.shop__filters button { border: 1.5px solid var(--line); background: #fff; padding: 9px 20px; border-radius: 100px; font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--ink-soft); cursor: pointer; transition: all .25s; }
.shop__filters button:hover { border-color: var(--coral-2); }
.shop__filters button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================ Product detail ============ */
.pd { max-width: var(--maxw); margin: 0 auto; padding: 30px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.pd__gallery { position: sticky; top: 90px; }
.pd__main { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.pd__photo { width: 100%; height: 100%; object-fit: cover; }
.pd__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd__thumb { width: 84px; height: 84px; border-radius: 16px; overflow: hidden; border: 2px solid var(--line); background: #fff center/cover; cursor: pointer; padding: 0; }
.pd__thumb.is-active { border-color: var(--coral); }
.pd__thumb .pv { border-radius: 0; }
.pd__back { color: var(--muted); font-size: 14px; font-weight: 600; }
.pd__badge { display: inline-block; margin-left: 12px; background: rgba(127,168,138,.15); color: var(--sage); font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 100px; }
.pd__info h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 6px; }
.pd__tag { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 12px; }
.price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.price__now { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; }
.price__was { font-size: 1.3rem; color: var(--muted); text-decoration: line-through; }
.price__save { background: var(--pink); color: #fff; font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 100px; }
.pd__desc { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 22px; }
.pd__bundle { display: grid; gap: 12px; margin-bottom: 22px; }
.qtyopt { display: flex; align-items: center; gap: 14px; border: 2px solid var(--line); border-radius: var(--radius); padding: 15px 18px; cursor: pointer; transition: border-color .3s, background .3s; }
.qtyopt:has(input:checked) { border-color: var(--coral); background: rgba(120,190,232,.11); }
.qtyopt input { accent-color: var(--coral-deep); width: 18px; height: 18px; }
.qtyopt div { flex: 1; display: flex; flex-direction: column; }
.qtyopt div b { font-size: 15.5px; } .qtyopt div span { font-size: 13px; color: var(--muted); }
.qtyopt__price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.tag { background: var(--gold); color: #fff; font-style: normal; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }
.pd__buy { display: flex; gap: 12px; margin-bottom: 20px; }
.qtybox { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden; }
.qtybox button { width: 44px; height: 52px; border: none; background: #fff; font-size: 20px; cursor: pointer; color: var(--ink); }
.qtybox input { width: 44px; height: 52px; border: none; text-align: center; font-family: var(--font-ui); font-weight: 700; font-size: 16px; }
.pd__add { flex: 1; }
.pd__trust { list-style: none; display: grid; gap: 8px; font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.pd__features { border-top: 1px solid var(--line); padding-top: 22px; }
.pd__specs { max-width: var(--maxw); margin: 40px auto; padding: 40px 24px; }
.pd__specs h3, .pd__related h3 { font-size: 1.8rem; text-align: center; margin-bottom: 28px; }
.specgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.specgrid > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.specgrid span { display: block; color: var(--muted); font-size: 13px; }
.specgrid b { font-family: var(--font-display); font-size: 1.2rem; }
.pd__related { max-width: var(--maxw); margin: 0 auto 60px; padding: 20px 24px; }

/* ============================================================ Reviews ============ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--maxw); margin: 0 auto; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.review:hover { transform: translateY(-6px); }
.review blockquote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; margin: 14px 0 22px; }
.review figcaption { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.review figcaption em { color: var(--muted); font-weight: 500; font-style: normal; font-size: 13px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--a, var(--coral)); flex: none; box-shadow: inset 0 -4px 8px rgba(0,0,0,.12); }

/* ============================================================ Guarantee / FAQ / Newsletter ============ */
.guarantee__inner { max-width: 760px; margin: 0 auto; display: flex; align-items: center; gap: 34px; background: #EAF1FC; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.guarantee__seal { flex: none; width: 120px; height: 120px; border-radius: 50%; background: var(--coral-grad); color: #fff; display: grid; place-items: center; text-align: center; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: .9; box-shadow: 0 14px 34px rgba(94,143,214,.38); }
.guarantee__seal span { font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; }
.guarantee h3 { font-size: 1.7rem; margin-bottom: 8px; }
.guarantee p { color: var(--ink-soft); }

.faq__list { max-width: 800px; margin: 0 auto; }
.faq__list details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: box-shadow .3s; }
.faq__list details[open] { box-shadow: var(--shadow-sm); }
.faq__list summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__list summary::-webkit-details-marker { display: none; }
.chev { width: 12px; height: 12px; border-right: 2px solid var(--coral-deep); border-bottom: 2px solid var(--coral-deep); transform: rotate(45deg); transition: transform .3s var(--ease); flex: none; }
.faq__list details[open] .chev { transform: rotate(-135deg); }
.faq__list p { padding: 0 26px 24px; color: var(--ink-soft); }

.newsletter__inner { max-width: 620px; margin: 0 auto; text-align: center; background: var(--night); color: #fff; border-radius: var(--radius-lg); padding: 56px 40px; position: relative; overflow: hidden; }
.newsletter__inner::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(246,187,211,.34), transparent 65%); }
.newsletter__inner h3 { font-size: 2.2rem; position: relative; }
.newsletter__inner > p { color: #C8BFD6; margin: 8px 0 26px; position: relative; }
.newsletter__form { display: flex; gap: 10px; position: relative; max-width: 440px; margin: 0 auto; }
.newsletter__form input { flex: 1; border: none; border-radius: 100px; padding: 14px 22px; font-family: var(--font-ui); font-size: 15px; }
.newsletter__form input:focus { outline: 2px solid var(--coral); }
.newsletter__note, .contact__note { position: relative; margin-top: 14px; font-size: 14px; color: var(--sage-2); min-height: 20px; }

/* ============================================================ About page ============ */
.page-hero { position: relative; overflow: hidden; min-height: 56vh; display: grid; place-items: center; text-align: center; color: #fff; }
.page-hero__bg { position: absolute; inset: -14% 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 128%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,23,48,.35), rgba(26,23,48,.55)); z-index: 1; }
.page-hero__inner { position: relative; z-index: 2; max-width: 700px; padding: 40px 24px; }
.page-hero__inner h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: #fff; }
.page-hero__inner p { font-size: 1.2rem; margin-top: 16px; opacity: .95; }
.prose { max-width: 720px; margin: 0 auto; text-align: center; }
.prose p { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 18px; }

/* ============================================================ Contact page ============ */
.contact { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea { border: 1.5px solid var(--line); border-radius: 14px; padding: 13px 16px; font-family: var(--font-ui); font-size: 15px; background: #fff; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--coral-2); border-color: transparent; }
.contact__aside { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.contact__aside h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact__list { list-style: none; display: grid; gap: 16px; margin-top: 18px; }
.contact__list li { display: flex; gap: 12px; align-items: flex-start; }
.contact__list span { font-size: 22px; }
.contact__list b { display: block; }
.contact__list small { color: var(--muted); }

/* ============================================================ Footer ============ */
.footer { background: var(--cream-2); border-top: 1px solid var(--line); padding: 60px 24px 30px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 300px; font-size: 14.5px; }
.footer__pay { margin-top: 16px; font-size: 13px; color: var(--ink-soft); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer__cols h5 { font-family: var(--font-ui); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.footer__cols a { display: block; color: var(--ink-soft); font-size: 14.5px; padding: 5px 0; transition: color .2s; }
.footer__cols a:hover { color: var(--coral-deep); }
.footer__bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 8px; }
.footer__demo { font-style: italic; }

/* ============================================================ Toast ============ */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(30px); background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 100px; font-weight: 600; font-size: 15px; z-index: 120; opacity: 0; pointer-events: none; transition: opacity .4s, transform .4s var(--ease); box-shadow: var(--shadow-lg); max-width: calc(100% - 40px); text-align: center; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================ Responsive ============ */
@media (max-width: 960px) {
  .nav__links, .nav__shop { display: none; }
  .hamburger { display: inline-flex; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 30px; padding: 50px 24px; }
  .split--rev .split__media { order: 0; }
  .shop__grid, .reviews__grid, .specgrid { grid-template-columns: 1fr 1fr; }
  .pd { grid-template-columns: 1fr; gap: 28px; }
  .pd__gallery { position: static; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .guarantee__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 620px) {
  .section { padding: 68px 20px; }
  .hero { min-height: auto; padding: 40px 0 20px; }
  .hero__bg::after { background: linear-gradient(160deg, rgba(250,251,252,.86), rgba(250,251,252,.96) 60%); }
  .hero__float { display: none; } /* decorative emojis collide with text on small screens */
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.2rem); }
  .shop__grid, .reviews__grid, .specgrid, .values { grid-template-columns: 1fr; }
  .hero__cta { gap: 14px; }
  .newsletter__form { flex-direction: column; }
  .band { height: 380px; }
  .cart-drawer, .mobile-menu { width: 100%; }
  .pd__buy { flex-direction: column; }
  .qtybox { align-self: flex-start; }
}
