:root {
  --rose-50: #fff8f6;
  --rose-100: #ffeef2;
  --rose-150: #ffe0e8;
  --rose-200: #fdd5e0;
  --rose-300: #f5b8c8;
  --rose-400: #e8a0b4;
  --rose-500: #d97896;
  --rose-600: #c45c7a;
  --rose-700: #9e4a64;
  --gold: #d4b59a;
  --gold-light: #ead9c8;
  --cream: #fdf8f4;
  --ink: #5c3d46;
  --muted: #9a7a82;
  --line: #f0ddd8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(201, 120, 148, 0.14);
  --shadow-sm: 0 8px 24px rgba(201, 120, 148, 0.1);
  --radius: 24px;
  --header-h: 88px;
  --mobile-nav-h: 74px;
  --font: "Be Vietnam Pro", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
ul { list-style: none; }
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; position: relative; z-index: 1; }

/* Page background — pastel blush + petals */
.bg-blush {
  background-color: var(--cream);
  background-image: none;
}
.bg-blush::before,
.bg-blush::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-blush::before {
  background-image:
    radial-gradient(1.6px 1.6px at 12% 18%, rgba(217, 120, 150, 0.35), transparent),
    radial-gradient(1.4px 1.4px at 28% 62%, rgba(212, 181, 154, 0.4), transparent),
    radial-gradient(1.8px 1.8px at 48% 12%, rgba(245, 184, 200, 0.45), transparent),
    radial-gradient(1.2px 1.2px at 72% 38%, rgba(217, 120, 150, 0.28), transparent),
    radial-gradient(1.6px 1.6px at 88% 72%, rgba(232, 160, 180, 0.4), transparent),
    radial-gradient(1.4px 1.4px at 8% 84%, rgba(212, 181, 154, 0.32), transparent);
  opacity: 0.9;
}
.bg-blush::after {
  background:
    radial-gradient(320px 320px at 92% 16%, rgba(255, 182, 203, 0.28), transparent 70%),
    radial-gradient(280px 280px at 6% 78%, rgba(232, 197, 176, 0.22), transparent 70%);
}
.bg-deco {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}
.bg-deco.d1 {
  width: 420px; height: 420px;
  background: rgba(245, 184, 200, 0.45);
  top: 6%; right: -120px;
  animation: blob 18s ease-in-out infinite;
}
.bg-deco.d2 {
  width: 360px; height: 360px;
  background: rgba(232, 197, 176, 0.38);
  bottom: 4%; left: -100px;
  animation: blob 22s ease-in-out infinite reverse;
}
.bg-deco.d3 {
  width: 280px; height: 280px;
  background: rgba(255, 214, 227, 0.4);
  top: 48%; left: 38%;
  animation: blob 26s ease-in-out infinite;
  animation-delay: -8s;
}
.bg-deco.d4 {
  width: 240px; height: 240px;
  background: rgba(217, 120, 150, 0.16);
  bottom: 32%; right: 18%;
  animation: blob 20s ease-in-out infinite reverse;
}
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-18px, 14px) scale(1.05); }
  66% { transform: translate(12px, -10px) scale(0.98); }
}

#site-header, #site-footer, .hero, .section, .page-hero, .marquee, .checkout-steps {
  position: relative;
  z-index: 1;
}

body.bg-blush > .section:nth-of-type(even),
body.bg-blush > .section:nth-of-type(odd) {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.section { padding: 112px 0; }

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #c45c7a, #d97896 50%, #e8a0b4);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a:hover { opacity: 0.85; color: #fff; }
.topbar-social { display: flex; gap: 18px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header.scrolled { box-shadow: none; border-bottom-color: var(--line); }
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7b6c8, #d97896);
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(217, 120, 150, 0.28);
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--rose-600);
}
.logo-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}
.nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
  background: transparent;
  position: relative;
}
.nav a::after { display: none; }
.nav a:hover, .nav a.active {
  color: var(--rose-600);
  background: var(--rose-100);
}
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  position: relative;
  transition: 0.25s ease;
  background: transparent;
  flex-shrink: 0;
}
.icon-btn svg { width: 18px; height: 18px; display: block; pointer-events: none; }
.icon-btn:hover { background: var(--rose-100); color: var(--rose-600); opacity: 1; }
.badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--rose-500);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.menu-toggle { display: none; }
.hamburger {
  width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle.open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile bottom nav + drawer */
.mobile-bottom-nav,
.mobile-drawer,
.mobile-drawer-overlay { display: none; }

/* Buttons — refined, few colors */
a.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.25s ease;
  box-sizing: border-box;
}
a.btn-primary, button.btn-primary {
  background: linear-gradient(135deg, #e8a0b4, #d97896);
  color: #fff;
  border: none;
  box-shadow: 0 10px 22px rgba(217, 120, 150, 0.28);
}
a.btn-primary:hover, button.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #d97896, #c45c7a);
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(217, 120, 150, 0.34);
  opacity: 1;
}
a.btn-outline, button.btn-outline {
  border: 1.5px solid var(--rose-300);
  color: var(--rose-600);
  background: #fff;
}
a.btn-outline:hover, button.btn-outline:hover {
  background: var(--rose-100);
  color: var(--rose-700);
  border-color: var(--rose-400);
}
a.btn-ghost, button.btn-ghost { color: var(--ink); background: transparent; letter-spacing: 0.08em; }
a.btn-light, button.btn-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 252, 250, 0.55);
}
a.btn-light:hover { background: var(--cream); color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(255, 182, 203, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(255, 143, 171, 0.16), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-600);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  max-width: none;
  text-wrap: unset;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose-500);
  font-weight: 500;
}
.hero p.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 0;
  border-top: 0;
}
.stat strong {
  display: block;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
  color: var(--rose-600);
}
.stat span { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; }
.hero-visual { position: relative; }
.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 180px 180px 40px 40px;
  box-shadow: var(--shadow);
  border: 0;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 12px;
  align-items: center;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.hero-card.one { left: -28px; bottom: 80px; }
.hero-card.two { right: -10px; top: 48px; animation-delay: -2.4s; }
.mini-av { width: 44px; height: 44px; border-radius: 14px; object-fit: cover; }
.hero-card b { display: block; font-size: 14px; }
.hero-card small { color: var(--muted); font-size: 12px; }
.petal {
  position: absolute;
  width: 18px;
  height: 28px;
  background: var(--rose-300);
  border-radius: 80% 0 80% 0;
  opacity: 0.55;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
}
.petal.p1 { top: 8%; left: 42%; transform: rotate(20deg); }
.petal.p2 { top: 22%; right: 8%; animation-delay: -2s; background: var(--rose-200); }
.petal.p3 { bottom: 12%; left: 8%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-14px) rotate(24deg); }
}

/* Sections */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2, .page-title h1, .block-title {
  font-family: var(--font);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-head p, .muted { color: var(--muted); }
.center { text-align: center; }
.center p { max-width: 520px; margin: 12px auto 0; }

/* Category tiles */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  box-shadow: none;
  border: 1px solid var(--line);
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(245, 184, 200, 0.40), transparent 55%);
  z-index: 1;
}
.cat-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: 0.35s;
  border: 1px solid rgba(240, 221, 216, 0.9);
}
.cat-card:hover span { transform: none; opacity: 0.85; }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
  transition: transform 0.8s ease;
}
.cat-card:hover img { transform: scale(1.04); }

/* Product cards */
.product-grid, .cards-4, .cards-3 {
  display: grid;
  gap: 28px;
}
.product-grid { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.product-card, .service-card, .blog-card, .info-card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 221, 216, 0.92);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(201, 120, 148, 0.08);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.product-card:hover, .service-card:hover, .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(201, 120, 148, 0.12);
  border-color: var(--rose-300);
}
.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  background: var(--rose-100);
  overflow: hidden;
}
.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.product-media .media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product-card:hover .product-media img { transform: scale(1.03); }
.chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rose-600);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 120, 150, 0.22);
  box-shadow: 0 4px 14px rgba(201, 120, 148, 0.12);
  backdrop-filter: blur(6px);
}
.chip.gold {
  background: rgba(234, 217, 200, 0.95);
  color: #8b6914;
  border-color: rgba(212, 181, 154, 0.45);
}
.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: rgba(255, 252, 250, 0.9);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
}
.wish-btn.on, .wish-btn:hover { color: var(--ink); background: var(--white); }
.product-body { padding: 20px 4px 8px; }
.product-card { background: transparent; border: 0; }
.product-card .product-media { border: 1px solid var(--line); border-radius: var(--radius); }
.product-cat {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.product-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin: 6px 0 8px;
  min-height: 0;
}
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 8px;
}
.price { font-weight: 500; color: var(--ink); letter-spacing: 0.02em; }
.price s { color: var(--muted); font-weight: 400; margin-right: 6px; font-size: 13px; }
.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  border: 1px solid var(--line);
  transition: 0.35s ease;
}
.add-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Promo banner */
.promo {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--ink);
}
.promo h2 { font-family: var(--display); font-size: 44px; line-height: 1.12; font-weight: 500; }
.promo p { opacity: 0.72; margin: 14px 0 28px; }
.countdown { display: flex; gap: 10px; }
.cd-box {
  background: transparent;
  border: 1px solid rgba(255,252,250,0.25);
  min-width: 70px;
  text-align: center;
  padding: 12px 10px;
  border-radius: 0;
}
.cd-box b { display: block; font-size: 26px; font-family: var(--display); font-weight: 500; }
.cd-box span { font-size: 10px; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; }

/* Services */
.service-card { padding: 0; }
.service-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card img, .blog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.service-card .pad { padding: 18px 18px 22px; }
.service-card h3 { font-family: var(--display); font-size: 26px; }
.service-meta {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

/* About teaser */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-photos img {
  border-radius: var(--radius);
  height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.about-photos img:first-child { margin-top: 36px; }
.check-list { margin: 18px 0 24px; }
.check-list li {
  padding: 7px 0 7px 28px;
  position: relative;
}
.check-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--rose-500);
}

/* Testimonials */
.quote-card {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 32px 28px;
  box-shadow: none;
}
.quote-card p {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin: 14px 0 22px;
  line-height: 1.45;
  font-weight: 500;
}
.quote-user { display: flex; gap: 12px; align-items: center; }
.quote-user img { width: 40px; height: 40px; border-radius: 0; object-fit: cover; border: 1px solid var(--line); }

/* Instagram / gallery */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.ig-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: 0.35s; }
.ig-grid a:hover img { transform: scale(1.08); }

/* Newsletter */
.newsletter {
  background: transparent;
  border-radius: 0;
  padding: 64px 24px;
  text-align: center;
  border: 1px solid var(--line);
}
.news-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 20px auto 0;
}
.news-form input, .field input, .field select, .field textarea, .search-input, .qty input {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  padding: 13px 14px;
  outline: none;
  color: var(--ink);
}
.news-form input:focus, .field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
  box-shadow: none;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 252, 250, 0.72);
  padding: 72px 0 24px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #fffcfa;
}
.footer a { color: rgba(255, 252, 250, 0.62); font-size: 14px; display: block; padding: 6px 0; }
.footer a:hover { color: #fffcfa; }
.footer a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin-top: 16px;
  padding: 13px 26px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  border-radius: 999px;
}
.footer a.btn-light {
  background: transparent;
  border: 1px solid rgba(255, 252, 250, 0.55);
}
.footer a.btn-light:hover {
  background: var(--cream);
  color: var(--ink);
}
.footer p { color: rgba(255, 252, 250, 0.55); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,252,250,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 252, 250, 0.45);
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(180deg, rgba(245, 184, 200, 0.28), rgba(234, 217, 200, 0.42)),
    url("../img/hero.jpg") center/cover;
  color: #fffcfa;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after { display: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero.alt {
  background:
    linear-gradient(180deg, rgba(245, 184, 200, 0.32), rgba(234, 217, 200, 0.48)),
    url("../img/salon.jpg") center/cover;
}
.page-hero.svc {
  background:
    linear-gradient(180deg, rgba(245, 184, 200, 0.30), rgba(234, 217, 200, 0.46)),
    url("../img/pinknails.jpg") center/cover;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.breadcrumb {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
.breadcrumb a { color: rgba(255, 252, 250, 0.85); }

/* Shop layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.shop-side, .sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
  position: sticky;
  top: 110px;
}
.side-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0 0 24px;
  box-shadow: none;
}
.side-kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.side-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.15;
}
.search-field {
  position: relative;
}
.search-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose-400);
  pointer-events: none;
}
.search-field input {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  padding: 13px 14px 13px 42px;
  outline: none;
  color: var(--ink);
}
.search-field input:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: none;
}
.cat-filters { display: flex; flex-direction: column; gap: 8px; }
.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--muted);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  transition: 0.25s ease;
}
.filter-item input { display: none; }
.filter-item:hover {
  border-color: var(--rose-300);
  color: var(--ink);
  background: var(--rose-50);
}
.filter-item:has(input:checked) {
  background: var(--rose-500);
  color: #fff;
  border-color: var(--rose-500);
  box-shadow: 0 4px 14px rgba(217, 120, 150, 0.22);
}
.filter-item .count {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--rose-100);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--rose-600);
}
.filter-item:has(input:checked) .count {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.price-filters { display: grid; gap: 8px; }
.price-chip {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 13px;
  text-align: left;
  transition: 0.25s ease;
}
.price-chip:hover {
  border-color: var(--rose-300);
  background: var(--rose-50);
  color: var(--ink);
}
.price-chip.on {
  background: var(--rose-500);
  border-color: var(--rose-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(217, 120, 150, 0.22);
}
.side-trust {
  background: var(--ink);
  color: rgba(255,252,250,0.75);
  border: 0;
  padding: 24px;
  border-radius: var(--radius);
}
.side-trust h3, .side-trust p { color: #fffcfa; }
.side-trust h3 { font-family: var(--font); font-size: 20px; font-weight: 600; letter-spacing: 0.01em; }
.side-trust p { font-size: 13.5px; opacity: 0.85; margin-top: 4px; }
.trust-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13.5px;
}
.trust-row:first-of-type { border-top: 0; margin-top: 6px; }
.trust-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 12px;
  flex-wrap: wrap;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0 0 16px;
}
.shop-toolbar-count {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.shop-toolbar select,
.shop-sort-wrap select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 36px 10px 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239a7a82' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  min-width: 160px;
}
.shop-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--rose-600);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.2s ease;
}
.shop-filter-toggle:hover { background: var(--rose-50); }
.shop-filter-toggle.is-open {
  background: var(--rose-500);
  border-color: var(--rose-500);
  color: #fff;
}
.shop-filter-icon { flex-shrink: 0; }
.shop-sort-wrap { min-width: 0; }
.shop-filter-panel {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease, margin 0.32s ease, opacity 0.25s ease;
  opacity: 0;
  margin-bottom: 0;
}
.shop-filter-panel.open {
  opacity: 1;
  margin-bottom: 16px;
}
.shop-filter-panel-inner {
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(201, 120, 148, 0.08);
}
.shop-filter-panel-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.price-filters--panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price-filters--panel .price-chip {
  text-align: center;
  padding: 10px 8px;
  font-size: 12px;
}

/* Product detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.gallery-main {
  border-radius: 28px;
  overflow: hidden;
  background: var(--rose-100);
  aspect-ratio: 1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumbs img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  border: 2px solid transparent;
}
.thumbs img.on { border-color: var(--rose-500); }
.detail-info .product-cat { margin-bottom: 6px; }
.detail-info h1 {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.detail-price { font-size: 28px; font-weight: 700; color: var(--rose-600); margin: 14px 0; }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 20px 0; flex-wrap: wrap; }
.qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.qty button {
  width: 40px;
  height: 44px;
  font-size: 18px;
  background: var(--rose-50);
  color: var(--rose-700);
}
.qty button:hover { background: var(--rose-100); }
.qty input { width: 52px; text-align: center; border: 0; padding: 0; }
.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin: 36px 0 18px;
}
.tab {
  padding: 10px 16px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.tab.on { color: var(--rose-600); border-color: var(--rose-500); }
.tab-panel { display: none; }
.tab-panel.on { display: block; }
.review { padding: 16px 0; border-bottom: 1px solid var(--line); }

/* Cart & checkout */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -28px auto 36px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.step b {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose-100);
  color: var(--rose-600);
  font-size: 12px;
}
.step.on {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.step.on b { background: rgba(255,255,255,0.2); color: #fff; }
.cart-layout, .checkout-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
}
.cart-item {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.cart-item a { display: block; width: 108px; height: 108px; }
.cart-item-thumb { display: block; width: 108px; height: 108px; flex-shrink: 0; }
.cart-item img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.cart-item-body { min-width: 0; }
.cart-item-body b {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  margin-top: 2px;
}
.cart-item-body b a { width: auto; height: auto; display: inline; }
.cart-item-price { margin-top: 6px; font-size: 15px; }
.cart-item-qty { margin-top: 10px; width: max-content; }
.cart-item-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.cart-item-total { font-size: 16px; color: var(--rose-600); }
.cart-item-remove {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 0;
}
.cart-item-remove:hover { color: #b42318; }
.summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  height: fit-content;
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow-sm);
}
.page-cart .summary { top: auto; position: static; }
.summary-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.summary-head h3 { font-family: var(--display); font-size: 30px; }
.check-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.check-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: var(--rose-100);
}
.check-item b { display: block; font-size: 14px; line-height: 1.3; }
.check-item .muted { font-size: 12.5px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--muted);
}
.summary-row.total {
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  border-top: 1px dashed var(--line);
  margin-top: 8px;
  padding-top: 14px;
}
.coupon {
  display: flex;
  gap: 8px;
  margin: 14px 0 8px;
}
.coupon input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
}
.secure-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

/* Forms */
.form-card {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 36px;
  box-shadow: none;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.section-label {
  font-family: var(--display);
  font-size: 28px;
  margin: 8px 0 16px;
}
.auth-wrap {
  max-width: 460px;
  margin: 40px auto;
}
.auth-switch { text-align: center; margin-top: 16px; color: var(--muted); }
.auth-switch a { color: var(--rose-600); font-weight: 600; }

.pay-opt {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.pay-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-opt:has(input:checked) {
  border-color: var(--rose-500);
  background: var(--rose-50);
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.12);
}
.pay-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid var(--line);
}
.pay-opt small { display: block; color: var(--muted); font-size: 12.5px; }

/* Booking calendar-ish */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.slot {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
}
.slot:hover, .slot.on {
  border-color: var(--rose-500);
  background: var(--rose-100);
  color: var(--rose-700);
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  color: var(--ink);
}
.faq-a { display: none; padding: 0 18px 16px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.map {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius);
}

/* Empty / success */
.empty, .success-box {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.success-box { max-width: 640px; margin: 40px auto; }
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-600);
  display: grid;
  place-items: center;
  font-size: 32px;
}

/* Empty cart — premium */
.cart-layout:has(.empty-cart) { grid-template-columns: 1fr; }
.empty-cart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.empty-cart-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
}
.empty-cart-visual {
  position: relative;
  min-height: 320px;
  background: var(--rose-100);
  display: grid;
  place-items: center;
  padding: 40px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.empty-cart-visual::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,252,250,0.5);
  top: -40px;
  right: -40px;
}
.empty-cart-bag {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 48px;
  box-shadow: none;
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--ink);
}
.empty-float {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  animation: float 6s ease-in-out infinite;
}
.empty-float.f1 { top: 18%; left: 12%; animation-delay: -1s; }
.empty-float.f2 { bottom: 22%; right: 10%; width: 56px; height: 56px; animation-delay: -3s; }
.empty-float.f3 { top: 28%; right: 18%; width: 48px; height: 48px; animation-delay: -2s; }
.empty-cart-copy {
  padding: 48px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.empty-cart-copy .eyebrow { margin-bottom: 10px; }
.empty-cart-copy h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  margin-bottom: 12px;
}
.empty-cart-copy p { max-width: 420px; margin-bottom: 24px; }
.empty-cart-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.empty-cart-perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.empty-cart-perks span {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.empty-cart-perks span::before {
  content: "✓";
  color: var(--rose-500);
  font-weight: 700;
}
.empty-suggest {
  padding: 32px 36px 40px;
  background: linear-gradient(180deg, var(--rose-50) 0%, #fff 100%);
  border-top: 1px solid var(--line);
}
.empty-suggest-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.empty-suggest-head h3 {
  font-family: var(--display);
  font-size: 28px;
}
.empty-suggest .product-grid { grid-template-columns: repeat(3, 1fr); }

/* Team */
.team img { width: 100%; height: 260px; object-fit: cover; }
.team .pad { padding: 16px; text-align: center; }

/* Toast / search / cart drawer */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 80;
  font-size: 14px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.search-modal, .overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 16, 24, 0.45);
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px;
}
.search-modal.open, .overlay.open { display: grid; }
.search-box {
  width: min(640px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 22px;
}
.search-results { margin-top: 14px; max-height: 360px; overflow: auto; }
.search-hit {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
}
.search-hit:hover { background: var(--rose-50); }
.search-hit img { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; }

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  box-shadow: none;
  border: 1px solid var(--ink);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; }

.policy-card h3 { margin: 18px 0 8px; font-family: var(--display); font-size: 28px; }
.policy-card p { color: var(--muted); margin-bottom: 10px; }

/* Profile */
.account-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.profile-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 110px;
}
.member-card {
  background: var(--ink);
  color: #fffcfa;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  box-shadow: none;
  border: 1px solid var(--ink);
}
.member-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.member-card .chip {
  position: static;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fffcfa;
  display: inline-block;
  margin-bottom: 18px;
  box-shadow: none;
}
.member-card h2 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.1;
  margin: 6px 0 4px;
}
.member-meta { opacity: 0.9; font-size: 13.5px; }
.member-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.profile-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.profile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 500;
}
.profile-nav a span.ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--rose-50);
  display: grid;
  place-items: center;
  color: var(--rose-600);
}
.profile-nav a:hover, .profile-nav a.active {
  background: var(--rose-50);
  color: var(--rose-700);
}
.profile-nav a.out { color: #b42318; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.stat-box b {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  color: var(--rose-600);
  line-height: 1.1;
}
.order-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.order-row:last-child { border-bottom: 0; }
.order-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.appt-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--rose-50);
  border-radius: 20px;
  padding: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.appt-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
}
.profile-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 980px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .hero-grid, .about-grid, .shop-layout, .detail-grid,
  .cart-layout, .checkout-layout, .contact-grid, .promo,
  .account-grid, .footer-grid, .hygiene { grid-template-columns: 1fr; }
  .shop-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .product-grid:not(.magazine-grid), .cards-4, .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid:not(.cat-magazine) { grid-template-columns: repeat(2, 1fr); }
  .value-bar, .process-grid, .value-grid, .timeline { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .topbar { display: none; }
  .nav { display: none; }
  .header-cart { display: none; }
  .header-inner { min-height: 76px; gap: 10px; }
  body { padding-bottom: calc(var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px)); }
  body.mobile-drawer-open { overflow: hidden; }

  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    min-height: var(--mobile-nav-h);
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(240, 221, 216, 0.95);
    box-shadow: 0 -10px 30px rgba(201, 120, 148, 0.08);
  }
  .mbn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    border-radius: 14px;
    transition: 0.2s ease;
    border: 0;
    background: transparent;
    width: 100%;
  }
  .mbn-item svg { width: 20px; height: 20px; }
  .mbn-item.active { color: var(--rose-600); }
  #mobileMenuBtn.open { color: var(--rose-600); background: var(--rose-100); }
  .mbn-item.featured {
    color: #fff;
    background: linear-gradient(145deg, #f7b6c8, #d97896);
    box-shadow: 0 8px 18px rgba(217, 120, 150, 0.28);
    margin-top: -10px;
    padding-top: 10px;
    padding-bottom: 8px;
  }
  .mbn-item.featured.active { color: #fff; }
  .mbn-badge {
    position: absolute;
    top: 0;
    right: calc(50% - 22px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 99px;
    background: var(--rose-500);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    font-style: normal;
    display: grid;
    place-items: center;
  }

  .mobile-drawer-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(92, 61, 70, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(201, 120, 148, 0.12);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 20px calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-drawer-kicker {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .mobile-drawer-head strong {
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
  }
  .mobile-drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--rose-50);
    color: var(--ink);
  }
  .mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
  }
  .mobile-drawer-nav a {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--line);
  }
  .mobile-drawer-nav a.active {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: #fff;
  }
  .back-top { bottom: calc(var(--mobile-nav-h) + 16px + env(safe-area-inset-bottom, 0px)); }
  .sidebar, .shop-side, .profile-side { position: static; }
  .shop-side { gap: 10px; width: 100%; min-width: 0; overflow: visible; }
  .shop-layout { min-width: 0; }
  .shop-side .side-card {
    padding: 0 0 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }
  .shop-side .side-card .side-kicker { display: none; }
  .shop-side .side-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .shop-side .side-card:first-child h3 { display: none; }
  .shop-side .side-card:nth-child(2) h3 { display: none; }
  .shop-side .side-card:first-child {
    padding-bottom: 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .shop-side .side-card:nth-child(2) {
    margin-top: 0;
    padding-top: 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .shop-side .side-card-price,
  .shop-side .side-card.side-trust { display: none; }
  .shop-main { min-width: 0; width: 100%; }
  .shop-filter-panel { display: block; }
  .shop-filter-panel.open { max-height: 280px; }
  .shop-filter-toggle { display: inline-flex; }
  .shop-toolbar {
    position: sticky;
    top: calc(76px - 1px);
    z-index: 25;
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(201, 120, 148, 0.08);
  }
  .shop-toolbar-count { font-size: 14px; }
  .shop-toolbar-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    width: 100%;
  }
  .shop-sort-wrap { min-width: 0; }
  .shop-toolbar select,
  .shop-sort-wrap select {
    width: 100%;
    min-width: 0;
    font-size: 13px;
  }
  .cat-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
    padding: 2px 2px 8px;
  }
  .cat-filters::-webkit-scrollbar { display: none; }
  .cat-filters .filter-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: 9px 16px;
    font-size: 12.5px;
    letter-spacing: 0;
    text-transform: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
  }
  .cat-filters .filter-item:has(input:checked) {
    background: var(--rose-500);
    color: #fff;
    border-color: var(--rose-500);
    box-shadow: 0 4px 12px rgba(217, 120, 150, 0.2);
  }
  .cat-filters .filter-item .count { display: none; }
  .form-grid, .slot-grid, .profile-form-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .hero-card.one { left: 8px; bottom: 16px; }
  .hero-card.two { right: 8px; top: 12px; }
  .promo { padding: 32px 28px; }
  .promo h2 { font-size: 32px; }
  .countdown { flex-wrap: wrap; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .checkout-steps { margin: -20px auto 28px; }
  .summary { position: static; }
  .page-cart .page-hero {
    min-height: 0;
    padding: calc(76px + 10px) 0 18px;
    text-align: center;
  }
  .page-cart .page-hero h1 { max-width: none; margin-inline: auto; }
  .page-cart .cart-layout {
    gap: 16px;
  }
  .page-cart .summary {
    position: static;
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(201, 120, 148, 0.08);
  }
  .page-cart .summary-head { margin-bottom: 12px; }
  .page-cart .summary-head h3 {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
  }
  .page-cart .summary-head .muted { font-size: 12px; }
  .page-cart .summary-row { font-size: 14px; }
  .page-cart .summary-row.total { font-size: 18px; }
  .page-cart .summary > .muted {
    display: block;
    font-size: 12.5px;
    margin: 8px 0 14px;
  }
  .page-cart .summary .btn-primary,
  .page-cart .summary .btn-outline { width: 100%; }
  .page-cart .summary .btn-outline { margin-top: 8px; }
  .page-cart .section { padding-bottom: calc(40px + var(--mobile-nav-h)); }
  .page-cart .empty-cart { margin-bottom: 0; }
  .value-bar { border: 0; }
  .value-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 4px;
  }
  .value-item:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
}

@media (max-width: 640px) {
  html { overflow-x: clip; }
  .container { width: min(1180px, calc(100% - 20px)); }
  .product-grid:not(.magazine-grid), .cards-4, .cards-3, .cat-grid:not(.cat-magazine),
  .value-bar, .process-grid, .value-grid, .timeline,
  .empty-suggest .product-grid { grid-template-columns: 1fr; }
  #shopGrid.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  #shopGrid .product-body { padding: 12px 2px 6px; }
  #shopGrid .product-body h3 { font-size: 15px; line-height: 1.25; }
  #shopGrid .product-cat { font-size: 10px; }
  #shopGrid .price { font-size: 14px; }
  #shopGrid .add-btn { width: 32px; height: 32px; font-size: 16px; }
  #shopGrid .chip { top: 10px; left: 10px; padding: 4px 8px; font-size: 9px; }
  #shopGrid .wish-btn { top: 8px; right: 8px; width: 32px; height: 32px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-text strong { font-size: 20px; }
  .logo-text span { display: none; }
  .logo-mark { width: 40px; height: 40px; }
  .icon-btn { width: 38px; height: 38px; }
  .header-actions { gap: 2px; }
  .hero { padding: 28px 0 40px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero p.lead { font-size: 15.5px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .hero-stats .stat {
    flex: unset;
    min-width: 0;
    text-align: center;
    padding: 12px 6px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .hero-stats .stat strong {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.15;
  }
  .hero-stats .stat span {
    display: block;
    font-size: 10.5px;
    line-height: 1.35;
    margin-top: 4px;
  }
  .hero-visual { overflow: hidden; border-radius: 28px; }
  .hero-img { border-radius: 28px; aspect-ratio: 1; }
  .hero-card { display: none; }
  .petal { display: none; }
  .section { padding: 52px 0; }
  .section-shop { padding-top: 28px; }
  .section-head h2, .block-title { font-size: clamp(26px, 7vw, 36px); }
  .news-form, .hero-cta { flex-direction: column; }
  .news-form .btn { width: 100%; }
  .newsletter { padding: 28px 20px; border-radius: 24px; }
  .empty-cart-actions { flex-direction: column; }
  .empty-cart-actions .btn { width: 100%; }
  .page-cart .page-hero h1 { font-size: clamp(28px, 8vw, 36px); max-width: none; margin-inline: auto; }
  .page-cart .page-hero .breadcrumb { justify-content: center; }
  .page-cart .section { padding-top: 0; padding-bottom: calc(32px + var(--mobile-nav-h)); }
  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
      "thumb body"
      "side side";
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    align-items: start;
  }
  .cart-item-thumb,
  .cart-item > a:first-child {
    grid-area: thumb;
    width: 88px;
    height: 88px;
  }
  .cart-item-thumb img,
  .cart-item > a:first-child img {
    width: 88px;
    height: 88px;
    border-radius: 14px;
  }
  .cart-item-body,
  .cart-item > div:nth-child(2) {
    grid-area: body;
    min-width: 0;
  }
  .cart-item-body b,
  .cart-item > div:nth-child(2) b { font-size: 14px; }
  .cart-item-body .product-cat { font-size: 10px; }
  .cart-item-qty,
  .cart-item .qty { margin-top: 8px; }
  .cart-item-qty button,
  .cart-item .qty button { width: 34px; height: 38px; font-size: 16px; }
  .cart-item-qty input,
  .cart-item .qty input { width: 40px; font-size: 14px; }
  .cart-item-side,
  .cart-item > div:last-child {
    grid-area: side;
    grid-column: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
    margin-top: 0;
    text-align: left;
  }
  .cart-item-total { font-size: 15px; }
  .cart-item-remove {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--rose-50);
    color: var(--rose-600);
  }
  .page-cart .empty-cart { border-radius: 20px; }
  .check-item, .order-row { grid-template-columns: 64px 1fr; }
  .check-item strong, .order-row strong { grid-column: 2; }
  .empty-cart-hero { grid-template-columns: 1fr; }
  .empty-cart-visual { min-height: 200px; }
  .empty-cart-copy { padding: 28px 20px; text-align: center; }
  .empty-cart-copy p { margin-inline: auto; }
  .empty-cart-actions { justify-content: center; }
  .empty-cart-perks { justify-content: center; }
  .empty-suggest { padding: 24px 20px 32px; }
  .process-grid, .value-grid, .timeline { grid-template-columns: 1fr; }
  .marquee { display: none; }
  .promo { padding: 24px 20px; border-radius: 24px; }
  .promo h2 { font-size: 26px; }
  .checkout-steps {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 0 2px 6px;
    margin: -16px auto 24px;
  }
  .checkout-steps::-webkit-scrollbar { display: none; }
  .step {
    flex-shrink: 0;
    justify-content: center;
    font-size: 12.5px;
    padding: 8px 14px;
  }
  .cta-banner { flex-direction: column; text-align: center; padding: 28px 22px; }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner .btn { width: 100%; }
  .detail-info h1 { font-size: 32px; }
  .detail-grid { gap: 24px; }
  .form-card { padding: 20px; border-radius: 22px; }
  .footer-grid { gap: 24px; }
  .bg-blush { background-attachment: scroll; }
  .bg-deco { opacity: 0.35; filter: blur(50px); }
  .bg-deco.d1 { width: 280px; height: 280px; }
  .bg-deco.d2 { width: 240px; height: 240px; }
  .shop-toolbar { top: calc(76px - 1px); }
  .search-field input { padding: 11px 14px 11px 40px; font-size: 14px; }
  .section-head .btn { width: 100%; }
  .pay-opt { grid-template-columns: 36px 1fr; padding: 12px; }
  .pay-ico { width: 36px; height: 36px; font-size: 16px; }
  .member-card h2 { font-size: 26px; }
  .appt-card { flex-direction: column; text-align: center; }
  .appt-card .btn { width: 100%; }
}

/* Motion & polish — soft luxury */
.header.scrolled {
  box-shadow: none;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.product-card.reveal.in:hover,
.service-card.reveal.in:hover,
.blog-card.reveal.in:hover,
.info-card.reveal.in:hover,
.quote-card.reveal.in:hover,
.value-item.reveal.in:hover,
.process-card.reveal.in:hover,
.time-card.reveal.in:hover {
  transform: translateY(-3px);
}
.product-card, .service-card, .blog-card, .info-card, .quote-card {
  position: relative;
}
.product-card::after, .service-card::after, .cat-card::before {
  display: none;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: transparent;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-item {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 32px 24px;
  box-shadow: none;
  transition: opacity 0.35s ease;
}
.value-item:last-child { border-right: 0; }
.value-item:hover { transform: none; box-shadow: none; opacity: 0.7; }
.value-item .ico {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.value-item b {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 8px 8px;
  box-shadow: none;
  position: relative;
  transition: opacity 0.35s ease;
}
.process-card:hover { transform: none; opacity: 0.75; }
.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 36px;
  color: var(--rose-300);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 500;
}
.process-card h3 { font-family: var(--display); font-size: 24px; margin-bottom: 10px; font-weight: 500; }

.quote-card {
  transition: opacity 0.35s ease;
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}
.quote-card:hover { transform: none; box-shadow: none; opacity: 0.85; }

.ig-grid a { position: relative; display: block; }
.ig-grid a::after {
  content: "♡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(190, 18, 93, 0.35);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ig-grid a:hover::after { opacity: 1; }

.gold-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose-400), var(--gold));
  margin: 18px 0 22px;
  border: 0;
  opacity: 0.35;
}
.center .gold-line { margin-inline: auto; }

/* About extras */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.time-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 24px 4px;
  box-shadow: none;
  transition: opacity 0.35s ease;
}
.time-card:hover { transform: none; opacity: 0.75; }
.time-card b {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.hygiene {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hygiene img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.team .pad h3 { font-family: var(--display); font-size: 26px; font-weight: 500; }
.cta-banner {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  border: 1px solid var(--ink);
}
.cta-banner h2 { font-family: var(--display); font-size: 42px; line-height: 1.12; font-weight: 500; }

body[data-page="home"] .header {
  background: rgba(253, 248, 244, 0.88);
}

/* ═══════════════════════════════════════
   Editorial / Fashion Magazine
   ═══════════════════════════════════════ */
.container-wide { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.section-tight { padding: 72px 0; }
.section-flush { padding: 0; }
body[data-page="home"] .section { padding: 80px 0; }
body[data-page="home"] .section-tight { padding: 56px 0; }

.display-xl {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.editorial-head { align-items: flex-end; margin-bottom: 40px; }
.editorial-head h2 { margin: 0; }

@media (min-width: 981px) {
  .section-head.editorial-head {
    flex-wrap: nowrap;
    gap: 32px;
  }
  .section-head.editorial-head > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .section-head.editorial-head .display-xl,
  .section-head.editorial-head h2.display-xl {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }
  .section-head.editorial-head .display-xl br {
    display: none;
  }
  .section-head.editorial-head .btn,
  .section-head.editorial-head .btn-ghost {
    flex-shrink: 0;
    align-self: flex-end;
  }
}

.eyebrow-light { color: rgba(255, 252, 250, 0.72); }
.lead-light {
  color: rgba(255, 252, 250, 0.82);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 480px;
  line-height: 1.65;
}
a.btn-outline-light {
  border: 1px solid rgba(255, 252, 250, 0.55);
  color: #fffcfa;
  background: transparent;
}
a.btn-outline-light:hover {
  background: #fffcfa;
  color: var(--ink);
}

/* Hero — full bleed, text on image */
.hero-editorial { padding: 0; }
.hero-cover {
  position: relative;
  min-height: clamp(520px, 88vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-cover__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-cover__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(190, 18, 93, 0.72) 0%, rgba(190, 18, 93, 0.28) 48%, rgba(190, 18, 93, 0.12) 100%),
    linear-gradient(180deg, rgba(190, 18, 93, 0.18) 0%, rgba(190, 18, 93, 0.08) 40%, rgba(190, 18, 93, 0.55) 100%);
}
.hero-cover__content {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vw, 88px) clamp(24px, 5vw, 48px);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
  color: #fffcfa;
}
.hero-cover__content h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-cover__content h1 em {
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 252, 250, 0.92);
}
.hero-cover__content .hero-cta { margin-bottom: 0; margin-top: 28px; }
.hero-cover__meta {
  position: absolute;
  top: calc(var(--header-h) + 20px);
  right: clamp(24px, 5vw, 64px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 250, 0.65);
}

.editorial-masthead {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  text-align: center;
}
.editorial-masthead span {
  padding: 28px 16px;
  border-right: 1px solid var(--line);
}
.editorial-masthead span:last-child { border-right: 0; }

/* Category — 2×2 mosaic, no empty cells */
.cat-magazine {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.85fr;
  grid-template-rows: minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 12px;
  min-height: 620px;
}
.cat-magazine .cat-card {
  min-height: 0;
  height: 100%;
  border: 0;
}
.cat-magazine .cat-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.cat-magazine .cat-card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.cat-magazine .cat-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.cat-magazine .cat-card:nth-child(4) { grid-column: 3; grid-row: 2; }
.cat-magazine .cat-card span {
  left: 28px;
  bottom: 28px;
  font-family: var(--font);
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: 0.02em;
  text-transform: none;
  border: 0;
  padding: 0;
  font-weight: 500;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  color: rgba(255, 252, 250, 0.95);
}
.cat-magazine .cat-card::after {
  background: linear-gradient(to top, rgba(245, 184, 200, 0.55), transparent 45%);
}

/* Product — magazine grid fills every row */
.product-grid.magazine-grid,
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.magazine-grid .mag-7 { grid-column: span 7; }
.magazine-grid .mag-8 { grid-column: span 8; }
.magazine-grid .mag-6 { grid-column: span 6; }
.magazine-grid .mag-5 { grid-column: span 5; }
.magazine-grid .mag-4 { grid-column: span 4; }

.product-editorial {
  background: transparent;
  border: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  min-width: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.product-editorial:hover { transform: none; border: 0; }
.product-editorial .product-media {
  aspect-ratio: auto;
  min-height: 460px;
  height: 100%;
  width: 100%;
  border: 0;
  flex: 1;
}
.product-editorial.mag-8 .product-media,
.product-editorial.mag-7 .product-media { min-height: 520px; }
.product-editorial .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(190, 18, 93, 0.82) 0%, rgba(190, 18, 93, 0.12) 58%);
  z-index: 1;
  pointer-events: none;
}
.product-editorial .product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
  color: #fffcfa;
}
.product-editorial .product-cat {
  color: rgba(255, 252, 250, 0.65);
  margin-bottom: 6px;
}
.product-editorial h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}
.product-editorial h3 a { color: inherit; }
.product-editorial .price { color: #fffcfa; }
.product-editorial .price s { color: rgba(255,252,250,0.5); }
.product-editorial .add-btn {
  border-color: rgba(255,252,250,0.45);
  color: #fffcfa;
}
.product-editorial .add-btn:hover {
  background: #fffcfa;
  color: var(--ink);
}
.product-editorial .chip {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fffcfa;
  border: 1px solid rgba(255, 252, 250, 0.38);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 3;
}
.product-editorial .wish-btn {
  z-index: 3;
  background: rgba(190, 18, 93, 0.35);
  border-color: rgba(255,252,250,0.25);
  color: #fffcfa;
}

/* Promo editorial */
.promo-editorial {
  background: linear-gradient(120deg, #e8a0b4, #d97896 50%, #ead9c8);
  color: #fffcfa;
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  border: 0;
  border-radius: var(--radius);
}
.promo-editorial h2 { color: #fffcfa; margin-bottom: 12px; }
.promo-editorial p { opacity: 0.72; margin-bottom: 24px; max-width: 360px; }

/* Service spreads */
.service-magazine { display: flex; flex-direction: column; gap: 12px; }
.service-spread {
  position: relative;
  min-height: clamp(360px, 50vh, 560px);
  overflow: hidden;
  display: grid;
  align-items: end;
}
.service-spread img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-spread__copy {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 52px);
  max-width: min(520px, 92%);
  color: #fffcfa;
  background: linear-gradient(90deg, rgba(190,18,93,0.82) 0%, rgba(190,18,93,0.45) 70%, transparent);
}
.service-spread__copy h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 10px;
}
.service-spread__copy p { opacity: 0.82; margin-bottom: 18px; }
.service-spread__meta {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-spread__meta b {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.service-spread--alt .service-spread__copy {
  margin-left: auto;
  text-align: right;
  background: linear-gradient(270deg, rgba(190,18,93,0.72), transparent);
}

/* Story / CTA full-width covers */
.story-cover, .cta-cover {
  position: relative;
  min-height: clamp(420px, 70vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.story-cover img, .cta-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-cover__veil, .cta-cover__veil {
  position: absolute;
  inset: 0;
  /* Lớp overlay hồng-nude nhạt để text nổi rõ nhưng không "xám bệt" */
  background:
    radial-gradient(800px 240px at 12% 22%, rgba(255, 224, 232, 0.55), transparent 60%),
    radial-gradient(520px 260px at 88% 38%, rgba(232, 197, 176, 0.45), transparent 62%),
    linear-gradient(
      180deg,
      rgba(217, 120, 150, 0.08) 0%,
      rgba(217, 120, 150, 0.22) 42%,
      rgba(217, 120, 150, 0.45) 100%
    );
}
.story-cover__content, .cta-cover__content {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 96px) 0;
  color: #fffcfa;
  max-width: min(640px, 100%);
}

.story-cover__content,
.cta-cover__content {
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.story-cover__content h2, .cta-cover__content h2 { margin-bottom: 16px; color: #fffcfa; }
.story-cover__content .btn, .cta-cover__content .btn { margin-top: 24px; }

/* Blog editorial — featured + 2 stacked, equal height */
.blog-magazine {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 560px;
}
.blog-magazine .blog-featured { grid-column: 1; grid-row: 1 / 3; }
.blog-magazine .blog-card:not(.blog-featured) { grid-column: 2; }
.blog-editorial {
  background: transparent;
  border: 0;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}
.blog-editorial.blog-featured { min-height: 0; }
.blog-editorial__link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 240px;
}
.blog-editorial__link img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.blog-editorial__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: #fffcfa;
  background: linear-gradient(to top, rgba(190,18,93,0.8), transparent);
}
.blog-editorial__copy h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.12;
  margin: 8px 0;
}
.blog-editorial__copy p {
  font-size: 14px;
  opacity: 0.82;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-editorial__copy .product-cat { color: rgba(255,252,250,0.65); }

/* Instagram — 4×2 mosaic, filled */
.ig-magazine {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
}
.ig-magazine a {
  aspect-ratio: auto;
  min-height: 0;
  height: 100%;
  border-radius: 0;
}
.ig-magazine a img { width: 100%; height: 100%; object-fit: cover; }
.ig-magazine a:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.ig-magazine a:nth-child(2) { grid-column: 2; grid-row: 1; }
.ig-magazine a:nth-child(3) { grid-column: 3; grid-row: 1; }
.ig-magazine a:nth-child(4) { grid-column: 4; grid-row: 1 / 3; }
.ig-magazine a:nth-child(5) { grid-column: 2; grid-row: 2; }
.ig-magazine a:nth-child(6) { grid-column: 3; grid-row: 2; }
.ig-magazine a::after { font-size: 16px; }

.process-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.process-editorial__item {
  grid-column: span 3;
  border-top: 1px solid var(--ink);
  padding: 24px 8px 0;
}
.process-editorial__item span {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--rose-300);
  display: block;
  margin-bottom: 16px;
}
.process-editorial__item h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  margin-bottom: 10px;
}
.process-editorial__item p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.quotes-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.quote-editorial {
  grid-column: span 4;
  border-top: 1px solid var(--ink);
  padding: 28px 8px 0;
  margin: 0;
}
.quote-editorial p {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 24px;
}
.quote-editorial footer {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.quote-editorial footer img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.quote-editorial footer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .process-editorial__item { grid-column: span 6; }
  .quote-editorial { grid-column: span 6; }
}

@media (max-width: 640px) {
  .process-editorial__item,
  .quote-editorial { grid-column: 1 / -1; }
}

/* Page hero — không bị header đè chữ */
.page-hero {
  min-height: clamp(320px, 42vh, 460px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 36px) 0 56px;
  text-align: left;
}
.page-hero .container {
  width: min(1280px, calc(100% - 48px));
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 16ch;
  text-wrap: balance;
}

@media (max-width: 980px) {
  .editorial-masthead { grid-template-columns: 1fr 1fr; }
  .editorial-masthead span:nth-child(2n) { border-right: 0; }
  .editorial-masthead span { border-bottom: 1px solid var(--line); }
  .editorial-masthead span:nth-last-child(-n+2) { border-bottom: 0; }

  .cat-magazine {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
    min-height: 0;
  }
  .cat-magazine .cat-card:nth-child(1),
  .cat-magazine .cat-card:nth-child(2),
  .cat-magazine .cat-card:nth-child(3),
  .cat-magazine .cat-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .product-grid.magazine-grid,
  .magazine-grid { grid-template-columns: 1fr 1fr; }
  .magazine-grid .mag-7,
  .magazine-grid .mag-8,
  .magazine-grid .mag-6,
  .magazine-grid .mag-5,
  .magazine-grid .mag-4 { grid-column: auto; }
  .product-editorial .product-media,
  .product-editorial.mag-8 .product-media { min-height: 380px; }

  .blog-magazine {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .blog-magazine .blog-featured,
  .blog-magazine .blog-card { grid-column: auto; grid-row: auto; min-height: 280px; }

  .service-spread--alt .service-spread__copy {
    margin-left: 0;
    text-align: left;
    background: linear-gradient(90deg, rgba(190,18,93,0.82) 0%, rgba(190,18,93,0.4) 70%, transparent);
  }

  .hero-cover__meta { display: none; }
  .hero-cover__content h1 { font-size: clamp(40px, 9vw, 64px); max-width: none; }

  .ig-magazine {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .ig-magazine a { grid-column: auto !important; grid-row: auto !important; }

  .page-hero {
    min-height: 0;
    align-items: center;
    padding: calc(76px + 12px) 0 20px;
    text-align: center;
  }
  .page-hero .container { width: min(1280px, calc(100% - 32px)); }
  .page-hero h1 {
    font-size: clamp(26px, 7vw, 36px);
    max-width: none;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-inline: auto;
  }
  .page-hero .breadcrumb { margin-top: 8px; font-size: 11px; }

  .section-head.editorial-head {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 28px;
  }
  .section-head.editorial-head > div:first-child {
    flex: 1 1 200px;
    min-width: 0;
  }
  .section-head.editorial-head .eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
    letter-spacing: 0.12em;
  }
  .section-head.editorial-head .display-xl,
  .section-head.editorial-head h2.display-xl {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(32px, 8.5vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.02em;
  }
  .section-head.editorial-head .btn,
  .section-head.editorial-head .btn-ghost {
    width: auto;
    flex-shrink: 0;
    align-self: flex-end;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 0.04em;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
  }
}

@media (max-width: 640px) {
  .container-wide { width: min(1280px, calc(100% - 24px)); }
  .section-tight,
  body[data-page="home"] .section-tight { padding: 40px 0; }
  .editorial-masthead { grid-template-columns: 1fr; }
  .editorial-masthead span { border-right: 0; border-bottom: 1px solid var(--line); }
  .editorial-masthead span:last-child { border-bottom: 0; }

  .cat-magazine {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .cat-magazine .cat-card { min-height: 240px; }

  .product-grid.magazine-grid,
  .magazine-grid { grid-template-columns: 1fr; }
  .magazine-grid .mag-7,
  .magazine-grid .mag-8,
  .magazine-grid .mag-6,
  .magazine-grid .mag-5,
  .magazine-grid .mag-4 { grid-column: auto; }
  .product-editorial .product-media { min-height: 340px; }

  .hero-cover { min-height: 78vh; }
  .hero-cover__content { padding-bottom: 40px; }
  .promo-editorial { flex-direction: column; align-items: flex-start; }

  .ig-magazine { grid-template-rows: repeat(3, 160px); }

  .page-hero { padding: calc(76px + 8px) 0 16px; }
  .page-hero h1 { font-size: clamp(24px, 6.5vw, 30px); }
  .page-hero .breadcrumb { margin-top: 6px; }
  .page-cart .page-hero { padding: calc(76px + 8px) 0 14px; }
  .page-cart .page-hero h1 { font-size: clamp(24px, 6.5vw, 30px); }

  .section-head.editorial-head {
    gap: 10px 12px;
    margin-bottom: 22px;
  }
  .section-head.editorial-head .display-xl,
  .section-head.editorial-head h2.display-xl {
    font-size: clamp(28px, 7.5vw, 36px);
    line-height: 1.06;
  }
  .section-head.editorial-head .btn,
  .section-head.editorial-head .btn-ghost {
    padding: 9px 14px;
    font-size: 11.5px;
  }
}

/* ── Beauty salon softness ── */
.product-card, .service-card, .blog-card, .info-card, .quote-card,
.form-card, .side-card, .cat-card, .process-card, .time-card, .value-item,
.newsletter, .empty-cart-visual, .member-card, .cta-banner,
.product-editorial, .product-editorial .product-media,
.blog-editorial, .service-spread, .ig-magazine a, .quote-editorial,
.editorial-masthead, .shop-toolbar, .step, .search-field input,
.news-form input, .field input, .field select, .field textarea, .qty input,
.add-btn, .wish-btn, .chip, .price-chip, .filter-item, .back-top {
  border-radius: var(--radius);
}
.cat-magazine .cat-card,
.product-editorial .product-media,
.blog-editorial,
.service-spread,
.ig-magazine a,
.story-cover, .cta-cover {
  border-radius: 28px;
  overflow: hidden;
}
.editorial-masthead { overflow: hidden; }
.quote-user img, .mini-av { border-radius: 14px; }
.display-xl, .display-lg, .page-hero h1 {
  font-weight: 500;
}
.section-head h2, .block-title {
  font-weight: 600;
}
.hero h1 em { font-style: italic; }
.product-editorial h3, .service-spread__copy h3, .blog-editorial__copy h3 {
  font-weight: 500;
}
.chip, .add-btn, .wish-btn, .step, .back-top, .filter-item {
  border-radius: 999px;
}
.shop-toolbar {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius);
}
.side-card {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: 0 18px 50px rgba(201, 120, 148, 0.06);
}
.side-card.side-trust {
  background: var(--ink);
  color: rgba(255,252,250,0.75);
  border-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.form-card {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.process-editorial__item,
.quote-editorial {
  border-top: 0;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
}
@media (max-width: 640px) {
  .petal { display: block; width: 14px; height: 22px; opacity: 0.4; }
}

@media (max-width: 980px) {
  .shop-side .side-card {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 14px;
    border-radius: 0;
  }
  .shop-side .side-card:nth-child(2) {
    padding-top: 0;
    padding-bottom: 12px;
  }
}
