/* ==========================================================================
   MUSE — Premium Fashion eCommerce
   Design system: soft, editorial, premium
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Design tokens ---------- */
:root {
  --coral: #F45D66;
  --pink: #FF7E82;
  --rose: #FCE7E8;
  --rose-soft: #FFF6F6;
  --white: #FFFFFF;
  --light: #F8F8F8;
  --ink: #1E1E1E;
  --body: #696969;
  --border: #ECECEC;
  --gold: #FFB400;

  --grad: linear-gradient(120deg, #F45D66 0%, #FF7E82 55%, #FF9C8F 100%);
  --grad-soft: linear-gradient(120deg, #FCE7E8 0%, #FFF 100%);

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .06);
  --shadow: 0 20px 60px rgba(0, 0, 0, .08);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .12);
  --shadow-coral: 0 18px 44px rgba(244, 93, 102, .32);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 32px;
  --r-pill: 999px;

  --container: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);

  --fs-hero: clamp(44px, 6.5vw, 72px);
  --fs-section: clamp(30px, 4.2vw, 54px);
  --fs-body: 18px;
  --fs-caption: 15px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.33, 1, .68, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
input { font: inherit; }
::selection { background: var(--rose); color: var(--coral); }

:focus-visible { outline: 3px solid rgba(244, 93, 102, .55); outline-offset: 2px; border-radius: 6px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

[hidden] { display: none !important; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 500;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: var(--r-pill);
  transition: top .25s ease; font-size: 14px; font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.icon { width: 22px; height: 22px; flex: none; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 13px; height: 13px; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 8vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--flush { padding-block: clamp(48px, 6vw, 88px) 0; }
.section--alt { background: var(--light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 16px; line-height: 1.2; white-space: nowrap;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
              background-color .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn .icon { width: 18px; height: 18px; }

.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(244, 93, 102, .42); }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow-sm); }

.btn-white { background: #fff; color: var(--coral); box-shadow: 0 18px 40px rgba(0, 0, 0, .18); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(0, 0, 0, .24); }

.btn-block { width: 100%; }

/* ---------- Eyebrows & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .22em; font-weight: 600;
  font-size: 12.5px; color: var(--coral);
}
.eyebrow--pill {
  background: var(--rose); color: var(--coral);
  padding: 9px 16px; border-radius: var(--r-pill);
}
.eyebrow--dark { color: var(--coral); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.section-title {
  font-size: var(--fs-section); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-top: 14px;
}
.section-title em { font-style: italic; color: var(--coral); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head--center {
  flex-direction: column; align-items: center; text-align: center;
}
.section-side { max-width: 400px; }
.section-sub { color: var(--body); font-size: 16px; margin-top: 6px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; margin-top: 14px; color: var(--ink);
  position: relative; padding-bottom: 4px;
}
.link-arrow::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow:hover .icon { transform: translate(2px, -2px); }
.link-arrow .icon { transition: transform .25s var(--ease); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink); color: #fff; font-size: 13px;
  padding: 10px 0; position: relative; z-index: 60;
}
.announce-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.announce-left { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.announce-left .icon { color: var(--pink); width: 15px; height: 15px; }
.announce-right { color: rgba(255,255,255,.75); }
.announce-right b { color: var(--pink); font-weight: 600; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }

.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: 76px;
}

.logo {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
  display: inline-flex; align-items: baseline; line-height: 1;
}
.logo-dot { color: var(--coral); }

.nav { flex: 1; display: flex; justify-content: center; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }

.nav-link {
  position: relative; font-weight: 600; font-size: 15.5px; padding: 8px 2px;
  color: var(--ink);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2.5px;
  border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link--sale { color: var(--coral); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background-color .25s ease, color .25s ease, transform .25s var(--ease-out);
}
.icon-btn:hover { background: var(--rose); color: var(--coral); transform: translateY(-2px); }
.icon-btn .icon { width: 21px; height: 21px; }

.count-badge {
  position: absolute; top: 1px; right: 0;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: var(--r-pill);
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(244, 93, 102, .4);
  transition: transform .25s var(--ease-out);
}
.count-badge.bump { animation: bump .45s var(--ease-out); }
@keyframes bump {
  0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); }
}

.icon-btn--menu { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(252, 231, 232, .75), transparent 62%),
    radial-gradient(700px 480px at -8% 110%, rgba(255, 244, 244, .9), transparent 60%),
    var(--white);
  padding-block: clamp(40px, 6vw, 84px) 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-copy { max-width: 560px; }

.hero-title {
  font-size: var(--fs-hero); font-weight: 800; line-height: 1.02;
  letter-spacing: -0.025em; margin: 22px 0 20px;
}
.hero-title em { font-style: italic; color: var(--coral); font-weight: 700; }

.hero-sub { color: var(--body); font-size: 18px; max-width: 470px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-trust { margin-top: 38px; display: grid; gap: 14px; max-width: 460px; }

.trust-chip {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 12px 18px; box-shadow: var(--shadow-sm);
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}
.avatar-stack img + img { margin-left: -12px; }
.trust-chip b { display: block; font-size: 14.5px; font-weight: 600; }

.stars { display: inline-flex; align-items: center; gap: 2px; color: var(--gold); }
.stars--sm { transform: scale(.85); transform-origin: left; }
.star { width: 16px; height: 16px; }
.star--half { display: inline-block; width: 8px; height: 16px; overflow: hidden; vertical-align: top; }
.star--half-inner { display: block; width: 16px; height: 16px; }

.member-chip {
  display: flex; align-items: center; gap: 14px;
  border: 1px dashed rgba(244, 93, 102, .45); border-radius: var(--r-md);
  background: var(--rose-soft); padding: 12px 18px;
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.member-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.member-icon {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-coral);
}
.member-icon .icon { width: 20px; height: 20px; }
.member-chip b { display: block; font-size: 14.5px; font-weight: 700; }
.member-chip small { color: var(--body); font-size: 12.5px; }

/* Hero media */
.hero-media { position: relative; min-height: 560px; }

.hero-frame {
  position: relative; z-index: 2;
  max-width: 520px; margin-inline: auto;
  aspect-ratio: .82;
  border-radius: 58% 42% 55% 45% / 46% 54% 46% 54%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grad-soft);
  will-change: transform;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-orbit { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(14px);
  animation: orbFloat 10s ease-in-out infinite alternate;
}
.orb--1 {
  width: 460px; height: 460px; top: -80px; right: -40px;
  background: radial-gradient(circle at 32% 32%, rgba(255, 126, 130, .5), rgba(255, 126, 130, 0) 70%);
}
.orb--2 {
  width: 380px; height: 380px; bottom: -60px; left: -70px;
  background: radial-gradient(circle at 60% 40%, rgba(244, 93, 102, .4), rgba(244, 93, 102, 0) 70%);
  animation-delay: -4s;
}
.orb--3 {
  width: 220px; height: 220px; top: 40%; left: 6%;
  background: radial-gradient(circle, rgba(255, 214, 216, .85), rgba(255, 214, 216, 0) 70%);
  animation-delay: -7s;
}
@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-14px, 22px, 0) scale(1.06); }
}

.float-badge {
  position: absolute; z-index: 3;
  border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-coral);
  animation: floatY 6s ease-in-out infinite alternate;
}
.float-badge--sale {
  width: 112px; height: 112px; top: 4%; right: 10%;
  transform: rotate(10deg);
}
.float-badge--sale .fb-num { font-size: 30px; font-weight: 800; line-height: 1; }
.float-badge--sale .fb-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .92; }

.float-card {
  position: absolute; z-index: 3;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 16px 18px;
  animation: floatY 7s ease-in-out infinite alternate;
}
.float-card--review { width: 250px; bottom: 12%; left: -2%; animation-delay: -2.5s; }
.float-card--review .fc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.float-card--review .fc-head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.float-card--review .fc-head b { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; }
.float-card--review .fc-head span { font-size: 12px; color: var(--body); }
.float-card--review p { font-size: 13px; color: var(--ink); margin-top: 7px; line-height: 1.5; }

.float-card--stats {
  width: 168px; text-align: center; top: 38%; left: -6%;
  padding: 18px; transform: rotate(-6deg); animation-delay: -4s;
}
.float-card--stats .fc-num { display: block; font-size: 28px; font-weight: 800; color: var(--coral); line-height: 1; }
.float-card--stats .fc-label { font-size: 12px; color: var(--body); }

@keyframes floatY {
  from { translate: 0 0; }
  to { translate: 0 -16px; }
}

/* ---------- Marquee ---------- */
.marquee {
  margin-top: clamp(48px, 7vw, 96px);
  padding: 22px 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 64px; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 15px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: #c9c9c9; white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Featured collections ---------- */
.collections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.collection-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
  isolation: isolate;
}
.collection-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .9s var(--ease);
}
.collection-card:hover img { transform: scale(1.09); }

.collection-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 26px; color: #fff;
  background: linear-gradient(to top, rgba(20, 10, 15, .62), rgba(20, 10, 15, 0) 58%);
}
.collection-count {
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .3);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: var(--r-pill); padding: 6px 12px; margin-bottom: 12px;
}
.collection-overlay h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; }
.collection-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; margin-top: 10px; opacity: .95;
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color .3s ease, opacity .3s ease;
}
.collection-card:hover .collection-cta { border-color: #fff; }
.collection-cta .icon { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.collection-card:hover .collection-cta .icon { transform: translate(3px, -3px); }

/* ---------- Categories ---------- */
.categories {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px;
}
.category-pill {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 26px 12px;
  color: var(--ink); font-weight: 600; font-size: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
}
.category-pill:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: rgba(244, 93, 102, .35); background: var(--rose-soft);
}
.cat-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--light); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .3s ease, color .3s ease, transform .3s var(--ease);
}
.category-pill:hover .cat-icon { background: var(--grad); color: #fff; transform: scale(1.06); }
.cat-icon .icon { width: 26px; height: 26px; }

/* ---------- Product cards ---------- */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 24px;
}

.product-card {
  position: relative;
  background: var(--white); border-radius: var(--r-lg);
  padding: 12px 12px 18px;
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-media {
  position: relative; overflow: hidden;
  border-radius: var(--r-md); aspect-ratio: 3 / 4; background: var(--light);
}
.product-link { position: absolute; inset: 0; display: block; }
.product-link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.product-card:hover .product-link img { transform: scale(1.07); }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 12px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.badge + .badge { top: 50px; }
.badge--sale { background: var(--grad); color: #fff; box-shadow: var(--shadow-coral); }
.badge--new { background: var(--ink); color: #fff; }
.badge--hot { background: var(--pink); color: #fff; }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform .25s var(--ease-out), color .25s ease, background-color .25s ease;
}
.wishlist-btn:hover { transform: scale(1.1); color: var(--coral); }
.wishlist-btn .icon { width: 19px; height: 19px; }
.icon-heart--fill { display: none; color: var(--coral); }
.wishlist-btn.is-wishlisted { background: var(--rose); }
.wishlist-btn.is-wishlisted .icon-heart { display: none; }
.wishlist-btn.is-wishlisted .icon-heart--fill { display: block; animation: heartPop .45s var(--ease); }
@keyframes heartPop {
  0% { transform: scale(.4); } 55% { transform: scale(1.35); } 100% { transform: scale(1); }
}

.quick-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--ink); font-weight: 700; font-size: 14.5px;
  box-shadow: var(--shadow);
  transform: translateY(130%);
  transition: transform .4s var(--ease), color .25s ease, background-color .25s ease;
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--grad); color: #fff; }
.quick-add .icon { width: 17px; height: 17px; }

.product-info { padding: 16px 4px 0; }
.product-cat {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--body); margin-bottom: 4px;
}
.product-name { font-size: 17px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.product-name a:hover { color: var(--coral); }

.rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rating-count { font-size: 13px; color: var(--body); }

.price { display: flex; align-items: baseline; gap: 10px; }
.price-sale { font-size: 19px; font-weight: 800; color: var(--coral); }
.price-old { font-size: 15px; color: #b5b5b5; font-weight: 500; }

/* ---------- Filter tabs ---------- */
.filter-tabs { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-tab {
  padding: 11px 22px; border-radius: var(--r-pill);
  background: var(--white); border: 1.5px solid var(--border);
  font-weight: 600; font-size: 14.5px; color: var(--ink);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}
.filter-tab:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.filter-tab.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-coral); }
.product-card.is-filtered { display: none; }

/* ---------- Editor's picks ---------- */
.picks {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; align-items: stretch;
}

.pick-feature {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-xl); min-height: 460px; box-shadow: var(--shadow-sm);
}
.pick-feature img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02); transition: transform .9s var(--ease);
}
.pick-feature:hover img { transform: scale(1.08); }
.pick-feature-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 34px; color: #fff;
  background: linear-gradient(to top, rgba(20, 10, 15, .66), rgba(20, 10, 15, 0) 60%);
}
.pick-feature-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(255, 255, 255, .18); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.35); border-radius: var(--r-pill); padding: 7px 14px;
}
.pick-feature-title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; margin: 16px 0 6px; }
.pick-feature-cta {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px;
  border-bottom: 1.5px solid transparent; padding-bottom: 3px; transition: border-color .3s ease;
}
.pick-feature:hover .pick-feature-cta { border-color: #fff; }

.pick-list { display: flex; flex-direction: column; gap: 16px; }

.pick-row {
  display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 18px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.pick-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(244,93,102,.3); }
.pick-thumb {
  width: 88px; height: 104px; border-radius: var(--r-sm); overflow: hidden; background: var(--light);
}
.pick-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pick-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pick-info b { font-size: 16px; font-weight: 600; line-height: 1.3; }
.pick-price { font-weight: 800; color: var(--coral); font-size: 17px; }
.pick-add {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--light); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .25s ease, color .25s ease, transform .25s var(--ease-out);
}
.pick-row:hover .pick-add { background: var(--grad); color: #fff; transform: rotate(90deg) scale(1.05); }

/* ---------- Special offers ---------- */
.offer-banner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  border-radius: var(--r-xl); overflow: hidden;
  background:
    radial-gradient(560px 420px at 12% 0%, rgba(255, 255, 255, .22), transparent 60%),
    radial-gradient(480px 400px at 95% 100%, rgba(255, 158, 142, .5), transparent 62%),
    var(--grad);
  color: #fff; box-shadow: var(--shadow-lg);
}
.offer-copy { padding: clamp(40px, 5vw, 76px); display: flex; flex-direction: column; align-items: flex-start; }
.offer-copy .eyebrow { color: rgba(255, 255, 255, .92); }
.offer-title {
  font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  margin: 18px 0 14px;
}
.offer-title em { font-style: italic; color: #FFE3C2; }
.offer-sub { color: rgba(255, 255, 255, .92); max-width: 420px; margin-bottom: 30px; }

.countdown { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 34px; }
.countdown-item {
  background: rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--r-md); min-width: 74px; padding: 14px 12px;
  text-align: center;
}
.countdown-item b { display: block; font-size: 32px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown-item span { font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em; opacity: .85; }
.countdown-sep { font-size: 28px; font-weight: 700; padding-top: 10px; color: rgba(255,255,255,.7); }

.offer-media { position: relative; min-height: 440px; }
.offer-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.offer-discount {
  position: absolute; top: 28px; right: 28px;
  width: 104px; height: 104px; border-radius: 50%;
  background: #fff; color: var(--coral);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transform: rotate(10deg);
  animation: floatY 6s ease-in-out infinite alternate;
}
.offer-discount span { font-size: 30px; font-weight: 800; line-height: 1; }
.offer-discount small { font-size: 11px; font-weight: 700; letter-spacing: .2em; }

.offer-card {
  position: absolute; left: 24px; bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .9); color: var(--ink);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: var(--r-pill); padding: 12px 18px; font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow);
}
.offer-card .icon { color: var(--coral); }

/* ---------- Brand story ---------- */
.story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.story-media { position: relative; padding-bottom: 30px; }
.story-main {
  border-radius: var(--r-xl); aspect-ratio: 6 / 7; width: 100%; object-fit: cover;
  box-shadow: var(--shadow);
}
.story-accent {
  position: absolute; right: -6px; bottom: 0; width: 46%;
  border-radius: var(--r-lg); border: 8px solid #fff;
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4 / 5;
}
.story-badge {
  position: absolute; top: 26px; left: -18px;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--shadow); transform: rotate(-5deg);
}
.story-badge .icon { color: var(--coral); margin-bottom: 6px; }
.story-badge b { font-size: 18px; font-weight: 800; }
.story-badge span { font-size: 12.5px; color: var(--body); }

.story-copy .section-title { margin-top: 14px; }
.story-text { color: var(--body); margin: 20px 0 26px; max-width: 480px; }

.story-points { display: grid; gap: 16px; margin-bottom: 34px; }
.story-points li { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 16px; }
.check-bullet {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-coral);
}
.story-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ---------- Services ---------- */
.services {
  padding-block: clamp(48px, 6vw, 88px);
  background: var(--light);
  border-block: 1px solid var(--border);
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: var(--rose); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .3s ease, color .3s ease, transform .3s var(--ease);
}
.service:hover .service-icon { background: var(--grad); color: #fff; transform: scale(1.06); }
.service-icon .icon { width: 24px; height: 24px; }
.service b { display: block; font-size: 16px; font-weight: 700; }
.service small { color: var(--body); font-size: 13.5px; }

/* ---------- Testimonials ---------- */
.testi-viewport {
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 14px 6px 30px;
  scrollbar-width: none;
}
.testi-viewport::-webkit-scrollbar { display: none; }

.testi-track { display: flex; gap: 24px; align-items: stretch; width: 100%; }

.testi-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-quote { width: 34px; height: 34px; color: var(--coral); }
.testi-card blockquote { font-size: 16px; color: var(--ink); line-height: 1.65; flex: 1; }
.testi-card figcaption { display: flex; align-items: center; gap: 12px; }
.testi-card figcaption img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.testi-card figcaption b { display: block; font-size: 15px; font-weight: 700; line-height: 1.3; }
.testi-card figcaption small { color: var(--body); font-size: 12.5px; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 10px; }
.testi-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .25s ease, color .25s ease, transform .25s var(--ease-out), border-color .25s ease;
}
.testi-arrow:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.testi-dots { display: flex; align-items: center; gap: 8px; }
.testi-dot {
  width: 9px; height: 9px; border-radius: var(--r-pill);
  background: #e2e2e2; border: 0; padding: 0;
  transition: width .3s var(--ease), background-color .3s ease;
}
.testi-dot.is-active { width: 26px; background: var(--grad); }

/* ---------- Instagram ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insta-item {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); aspect-ratio: 5 / 6; background: var(--light);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: #fff; background: linear-gradient(160deg, rgba(244, 93, 102, .88), rgba(255, 126, 130, .78));
  opacity: 0; transition: opacity .35s ease;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay .icon { width: 30px; height: 30px; }
.insta-overlay b { font-size: 15px; font-weight: 700; }

/* ---------- Newsletter ---------- */
.newsletter-card {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 72px);
  background:
    radial-gradient(520px 360px at 12% 10%, rgba(255, 126, 130, .18), transparent 60%),
    radial-gradient(520px 380px at 92% 88%, rgba(244, 93, 102, .16), transparent 60%),
    var(--rose-soft);
  border: 1px solid var(--border);
}
.nl-blob { position: absolute; border-radius: 50%; filter: blur(30px); pointer-events: none; }
.nl-blob--1 { width: 320px; height: 320px; top: -120px; right: -80px; background: rgba(255, 126, 130, .28); }
.nl-blob--2 { width: 260px; height: 260px; bottom: -100px; left: -60px; background: rgba(244, 93, 102, .22); }

.nl-icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-coral);
  position: relative;
}
.nl-icon .icon { width: 28px; height: 28px; }

.newsletter-sub { color: var(--body); max-width: 520px; margin: 16px auto 30px; }

.newsletter-form {
  display: flex; gap: 12px;
  max-width: 540px; margin-inline: auto;
  background: #fff; border-radius: var(--r-pill);
  padding: 8px; box-shadow: var(--shadow);
}
.newsletter-form input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  padding: 8px 16px; font-size: 15.5px; color: var(--ink); border-radius: var(--r-pill);
}
.newsletter-form input::placeholder { color: #b5b5b5; }
.newsletter-form input:focus { outline: none; }
.newsletter-form .btn { padding: 14px 26px; }

.newsletter-note { margin-top: 18px; font-size: 12.5px; color: var(--body); }
.newsletter-note a { color: var(--coral); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink); color: #bdbdbd;
  padding: clamp(56px, 7vw, 96px) 0 0;
  margin-top: clamp(72px, 8vw, 128px);
}
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer .logo { color: #fff; font-size: 28px; }
.footer-tagline { margin: 16px 0 22px; max-width: 300px; font-size: 14.5px; line-height: 1.7; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .25s ease, color .25s ease, transform .25s var(--ease-out), border-color .25s ease;
}
.footer-social a:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); }
.footer-social .icon { width: 18px; height: 18px; }

.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; color: #bdbdbd; transition: color .2s ease; position: relative; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0 28px; font-size: 13.5px;
}
.footer-payments { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-payments span {
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 8px;
  padding: 5px 10px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: #e4e4e4;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 180;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .3s ease, transform .3s var(--ease-out), visibility .3s, background-color .25s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--coral); }

/* ---------- Toasts ---------- */
.toasts {
  position: fixed; left: 50%; bottom: 28px; z-index: 400;
  transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  pointer-events: none; width: min(92vw, 420px);
}
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-md); padding: 14px 20px;
  box-shadow: var(--shadow-lg); font-size: 14.5px; font-weight: 500;
  animation: toastIn .45s var(--ease);
  width: 100%;
}
.toast .toast-check {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.toast .toast-check .icon { width: 14px; height: 14px; }
.toast.hiding { animation: toastOut .35s ease forwards; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(24px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut { to { opacity: 0; transform: translateY(12px) scale(.95); } }

/* ---------- Overlays / drawer / cart ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 240;
  display: grid; place-items: center; padding: 20px;
  background: rgba(30, 30, 30, .42);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 1; transition: opacity .3s ease;
}
.overlay[hidden] { display: none; }

.search-box {
  width: min(660px, 94vw); background: #fff; border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--shadow-lg);
  animation: toastIn .4s var(--ease);
}
.search-form { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid var(--border); padding-bottom: 14px; }
.search-form .icon { color: var(--coral); }
.search-form input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  font-size: 19px; color: var(--ink); padding: 6px 0;
}
.search-form input:focus { outline: none; }
.search-form input::placeholder { color: #c0c0c0; }
.search-hint { margin: 20px 0 12px; font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--body); font-weight: 600; }
.search-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.search-tags a {
  border: 1.5px solid var(--border); border-radius: var(--r-pill);
  padding: 9px 18px; font-size: 14px; font-weight: 600;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.search-tags a:hover { background: var(--rose); border-color: var(--coral); color: var(--coral); }

.backdrop {
  position: fixed; inset: 0; z-index: 230;
  background: rgba(30, 30, 30, .45);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  transition: opacity .3s ease;
}
.backdrop[hidden] { display: none; }

.drawer {
  position: fixed; top: 0; left: 0; z-index: 250;
  width: min(340px, 86vw); height: 100dvh;
  background: #fff; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  padding: 20px 24px 28px;
  transform: translateX(-106%);
  transition: transform .4s var(--ease);
}
.drawer.is-open { transform: translateX(0); }

.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.drawer-nav ul { display: flex; flex-direction: column; }
.drawer-nav li { border-bottom: 1px solid var(--border); }
.drawer-nav a {
  display: block; padding: 15px 4px; font-size: 17px; font-weight: 600;
  transition: color .2s ease, padding-left .25s var(--ease);
}
.drawer-nav a:hover { color: var(--coral); padding-left: 10px; }
.drawer-nav .nav-link--sale { color: var(--coral); }
.drawer .btn-block { margin-top: 20px; }
.drawer-foot { display: flex; justify-content: center; gap: 20px; margin-top: 22px; font-size: 14px; font-weight: 600; color: var(--body); }
.drawer-foot a:hover { color: var(--coral); }

.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 250;
  width: min(420px, 94vw); height: 100dvh;
  background: #fff; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(106%);
  transition: transform .4s var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-size: 19px; font-weight: 800; }
.cart-count-label { font-size: 14px; color: var(--body); font-weight: 500; }

.cart-items { flex: 1; overflow-y: auto; padding: 18px 26px; display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid; grid-template-columns: 74px 1fr auto; gap: 14px; align-items: center;
  background: var(--light); border-radius: var(--r-md); padding: 10px;
}
.cart-item img { width: 74px; height: 90px; object-fit: cover; border-radius: var(--r-sm); }
.ci-info { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ci-info b { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.ci-price { font-weight: 800; color: var(--coral); font-size: 14.5px; }
.ci-qty { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.ci-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); font-weight: 700; font-size: 15px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, color .2s ease;
}
.ci-qty button:hover { background: var(--coral); color: #fff; border-color: transparent; }
.ci-qty span { min-width: 24px; text-align: center; font-weight: 600; font-size: 14px; }
.ci-remove { width: 30px; height: 30px; border-radius: 50%; color: #b0b0b0; display: inline-flex; align-items: center; justify-content: center; transition: color .2s ease, background-color .2s ease; }
.ci-remove:hover { color: var(--coral); background: var(--rose); }
.ci-remove .icon { width: 17px; height: 17px; }

.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 20px; }
.cart-empty .icon { width: 46px; height: 46px; color: #d9d9d9; }
.cart-empty p { color: var(--body); font-weight: 600; }

.cart-foot {
  border-top: 1px solid var(--border); padding: 20px 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.cart-total { display: flex; align-items: center; justify-content: space-between; }
.cart-total span { font-weight: 600; color: var(--body); }
.cart-total b { font-size: 22px; font-weight: 800; }
.cart-note { font-size: 12.5px; color: var(--body); text-align: center; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .85s ease, transform .85s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

.products-grid [data-reveal]:nth-child(2) { --d: .08s; }
.products-grid [data-reveal]:nth-child(3) { --d: .16s; }
.products-grid [data-reveal]:nth-child(4) { --d: .24s; }
.products-grid [data-reveal]:nth-child(5) { --d: .08s; }
.products-grid [data-reveal]:nth-child(6) { --d: .16s; }
.products-grid [data-reveal]:nth-child(7) { --d: .24s; }
.products-grid [data-reveal]:nth-child(8) { --d: .32s; }

.collections-grid [data-reveal]:nth-child(2) { --d: .08s; }
.collections-grid [data-reveal]:nth-child(3) { --d: .16s; }
.collections-grid [data-reveal]:nth-child(4) { --d: .24s; }
.categories [data-reveal]:nth-child(2) { --d: .05s; }
.categories [data-reveal]:nth-child(3) { --d: .1s; }
.categories [data-reveal]:nth-child(4) { --d: .15s; }
.categories [data-reveal]:nth-child(5) { --d: .2s; }
.categories [data-reveal]:nth-child(6) { --d: .25s; }
.categories [data-reveal]:nth-child(7) { --d: .3s; }

.pick-list [data-reveal]:nth-child(2) { --d: .08s; }
.pick-list [data-reveal]:nth-child(3) { --d: .16s; }
.pick-list [data-reveal]:nth-child(4) { --d: .24s; }

.insta-grid [data-reveal]:nth-child(2) { --d: .08s; }
.insta-grid [data-reveal]:nth-child(3) { --d: .16s; }
.insta-grid [data-reveal]:nth-child(4) { --d: .08s; }
.insta-grid [data-reveal]:nth-child(5) { --d: .16s; }
.insta-grid [data-reveal]:nth-child(6) { --d: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .picks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-media { max-width: 560px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { min-height: 0; max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-copy { max-width: 640px; }
  .float-card--review { left: -10px; }
  .float-card--stats { left: -16px; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .icon-btn--menu { display: inline-flex; }
  .icon-btn--hide-sm { display: none; }
  .header-inner { display: grid; grid-template-columns: auto 1fr auto; }
  .header-inner > .logo { justify-self: center; }
  .header-inner > .header-actions { justify-self: end; }
  .header-inner > .icon-btn--menu { justify-self: start; }
  .announce-right { display: none; }
  .announce-inner { justify-content: center; }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head--center { align-items: center; }
  .section-side { max-width: 100%; }
  .hero-title { font-size: clamp(38px, 11vw, 56px); }
  .offer-banner { grid-template-columns: 1fr; }
  .offer-media { min-height: 360px; }
  .countdown { gap: 8px; flex-wrap: wrap; }
  .countdown-item { min-width: 64px; padding: 12px 10px; }
  .countdown-item b { font-size: 26px; }
  .float-card--stats { display: none; }
  .float-badge--sale { width: 96px; height: 96px; }
  .float-badge--sale .fb-num { font-size: 26px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testi-card { flex: 0 0 calc((100% - 24px) / 2); }
  .newsletter-form { flex-direction: column; border-radius: var(--r-lg); }
  .newsletter-form .btn { width: 100%; }
  .story-badge { left: 12px; }
  .story-accent { right: 12px; }
}

@media (max-width: 560px) {
  .collections-grid { gap: 16px; }
  .categories { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .category-pill { padding: 18px 8px; }
  .cat-icon { width: 50px; height: 50px; }
  .insta-grid { gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 88%; }
  .pick-row { grid-template-columns: 70px 1fr auto; gap: 12px; }
  .pick-thumb { width: 70px; height: 86px; }
  .quick-add { transform: translateY(0); }
  .offer-discount { width: 88px; height: 88px; top: 18px; right: 18px; }
  .offer-discount span { font-size: 26px; }
  .back-to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
  .toasts { bottom: 84px; }
}

@media (hover: none) {
  .quick-add { transform: translateY(0); }
}

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