/* PereteLiber.ro — Powered by Andiamo */

:root {
  --pink: #FF1F6E;
  --pink-600: #E81460;
  --pink-100: #FFE6EE;
  --pink-50: #FFF2F6;
  --ink: #101521;
  --ink-700: #2A2F3D;
  --ink-500: #5A6072;
  --ink-300: #9099AC;
  --line: #ECEAE5;
  --line-2: #E2DFD8;
  --paper: #FFF7F1;
  --paper-2: #FBF5EE;
  --white: #FFFFFF;
  --green: #1E7E4F;
  --mustard: #FFC93B;
  --shadow-sm: 0 1px 2px rgba(16,21,33,.06), 0 1px 0 rgba(16,21,33,.04);
  --shadow-md: 0 8px 24px -8px rgba(16,21,33,.16), 0 2px 6px rgba(16,21,33,.06);
  --shadow-lg: 0 24px 60px -16px rgba(255,31,110,.18), 0 8px 18px rgba(16,21,33,.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1240px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  font-variation-settings: "wdth" 100;
}

h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
h4 { font-size: 18px; letter-spacing: -0.01em; }

p { margin: 0 0 1em; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}
.eyebrow::before {
  content: "";
  width: 18px; height: 2px; background: var(--pink); border-radius: 2px;
}

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .15s, color .15s;
  white-space: nowrap;
  text-align: center;
}
.btn-primary { background: var(--pink); color: var(--white); box-shadow: 0 8px 24px -8px rgba(255,31,110,.5); }
.btn-primary:hover { background: var(--pink-600); transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(255,31,110,.6); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { border-color: var(--ink); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-xl {
  padding: 22px 32px;
  font-size: 17px;
  background: var(--pink);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 20px 40px -16px rgba(255,31,110,.6);
}
.btn-xl:hover { background: var(--pink-600); transform: translateY(-2px); }

/* ==== Header ==== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,247,241,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: var(--header-h);
  display: flex; align-items: center; gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand-mark {
  width: 34px; height: 34px;
  background: var(--pink);
  border-radius: 8px;
  position: relative;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.brand-mark::after {
  content: ""; position: absolute;
  inset: 6px; border: 2px solid var(--white); border-radius: 4px;
}
.brand-mark::before {
  content: ""; position: absolute;
  width: 6px; height: 6px; background: var(--white); border-radius: 50%;
  bottom: 9px; right: 9px; z-index: 1;
}
.brand-meta {
  display: inline-flex; flex-direction: column; line-height: 1.05;
  white-space: nowrap;
}
.brand-meta .brand-name { display: inline; white-space: nowrap; }
.brand-meta small {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--ink-500); text-transform: uppercase; margin-top: 5px;
  font-family: "DM Sans", sans-serif;
  display: block;
}
.nav {
  display: flex; gap: 28px; align-items: center;
  margin-left: auto;
}
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-700);
  transition: color .15s;
  position: relative;
}
.nav a:hover { color: var(--pink); }
.nav a.active { color: var(--pink); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--pink); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  transition: all .15s;
}
.icon-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--pink);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.cart-badge.empty { display: none; }
.cart-badge.bump { transform: scale(1.3); }

.mobile-toggle {
  display: none;
}
@media (max-width: 980px) {
  .mobile-toggle { display: inline-flex; }
}

/* ==== Mobile drawer menu ==== */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-drawer .drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(16,21,33,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s;
}
.mobile-drawer .drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100%;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0,0,0,.2);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { pointer-events: auto; }
.mobile-drawer.open .drawer-backdrop { opacity: 1; }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-header .brand { font-size: 18px; }
.drawer-header .brand-mark { width: 28px; height: 28px; border-radius: 6px; }
.drawer-header .brand-mark::after { inset: 5px; border-width: 1.5px; }
.drawer-header .brand-mark::before { width: 4px; height: 4px; bottom: 7px; right: 7px; }
.drawer-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
}
.drawer-close:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.drawer-nav {
  padding: 12px 0;
  display: flex; flex-direction: column;
  flex: 1;
}
.drawer-nav a {
  padding: 16px 24px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .15s, color .15s;
}
.drawer-nav a:hover { background: var(--pink-50); color: var(--pink); }
.drawer-nav a::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .4;
}
.drawer-cta {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.drawer-cta p {
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.drawer-cta-contact {
  display: flex; gap: 16px;
  font-size: 13px;
}
.drawer-cta-contact a {
  color: var(--pink);
  font-weight: 600;
}

/* ==== Hero ==== */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pink-100);
  color: var(--pink-600);
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
}
.hero h1 {
  margin-bottom: 22px;
  font-weight: 800;
}
.hero h1 .accent {
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
  font-family: "Bricolage Grotesque", serif;
  font-variation-settings: "wdth" 75;
}
.hero p.lead {
  font-size: 19px;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-700);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 5/5.4;
  width: 100%;
}

/* ==== Wall scenes (SVG style placeholders for canvas products) ==== */
.wall-scene {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #F1E9DE 0%, #E6DAC8 60%, #D8C8B0 100%);
}
.wall-scene .room-floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 28%;
  background: linear-gradient(180deg, #B89976 0%, #8E6E4E 100%);
}
.wall-scene .room-baseboard {
  position: absolute; bottom: 28%; left: 0; right: 0; height: 12px;
  background: #F4EBDD;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wall-scene .room-shadow {
  position: absolute; bottom: 28%; left: 0; right: 0; height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.12) 100%);
}

.canvas-frame {
  position: absolute;
  background: var(--white);
  box-shadow:
    0 4px 8px rgba(0,0,0,.12),
    0 14px 28px rgba(0,0,0,.16),
    inset 0 0 0 1px rgba(0,0,0,.04);
  border-radius: 2px;
  overflow: hidden;
}
.canvas-frame .canvas-art {
  position: absolute;
  inset: 8px;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--pink) 0%, #FF7AAB 50%, #FFC93B 100%);
}
.canvas-frame.style-couple .canvas-art {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.6) 0 8%, transparent 9%),
    radial-gradient(circle at 60% 30%, rgba(255,255,255,.5) 0 7%, transparent 8%),
    linear-gradient(180deg, #F4B084 0%, #E68B6F 40%, #8D6549 100%);
}
.canvas-frame.style-couple .canvas-art::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.4));
}
.canvas-frame.style-fam .canvas-art {
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.7) 0 6%, transparent 7%),
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.7) 0 6%, transparent 7%),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.7) 0 6%, transparent 7%),
    linear-gradient(180deg, #C5A480 0%, #9C7B5A 100%);
}
.canvas-frame.style-pet .canvas-art {
  background:
    radial-gradient(ellipse at 50% 55%, #4A3220 0% 25%, #6B4830 30% 45%, #A47654 60%, #D9B894 100%);
}
.canvas-frame.style-landscape .canvas-art {
  background:
    linear-gradient(180deg, #C8A0CC 0%, #E2A8B8 40%, #F2C99E 60%, #6B8E5A 75%, #4A6B3A 100%);
}
.canvas-frame.style-baby .canvas-art {
  background:
    radial-gradient(circle at 50% 60%, #F5C8B0 0% 22%, transparent 23%),
    linear-gradient(180deg, #FFE4DC 0%, #F4C2C0 100%);
}
.canvas-frame.style-abstract .canvas-art {
  background:
    radial-gradient(circle at 30% 30%, var(--pink) 0% 18%, transparent 19%),
    radial-gradient(circle at 70% 70%, var(--mustard) 0% 22%, transparent 23%),
    linear-gradient(135deg, #1E2A47 0%, #3D2A47 100%);
}
.canvas-frame.style-wedding .canvas-art {
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,.7) 0 8%, transparent 9%),
    radial-gradient(circle at 60% 38%, rgba(255,255,255,.6) 0 7%, transparent 8%),
    linear-gradient(180deg, #E8D5C4 0%, #C8A989 60%, #6E5A45 100%);
}

/* Furniture for scene */
.scene-sofa {
  position: absolute;
  background: linear-gradient(180deg, #2E364A 0%, #1B2236 100%);
  border-radius: 18px 18px 4px 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.scene-plant {
  position: absolute;
}
.scene-plant .pot {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 30%; background: #A4663E; border-radius: 4px 4px 12px 12px;
}
.scene-plant .leaves {
  position: absolute; bottom: 25%; left: 50%; transform: translateX(-50%);
  width: 100%; height: 80%;
  background: radial-gradient(ellipse at center bottom, #3D6B3A 0% 40%, #588B4F 50%, transparent 70%);
}
.scene-lamp {
  position: absolute;
  background: var(--mustard);
  border-radius: 50% 50% 8px 8px;
  box-shadow: 0 0 50px rgba(255,201,59,.4);
}

/* ==== Sections ==== */
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: 18px; max-width: 600px; margin: 0 auto; }
.section-head .eyebrow { margin-bottom: 16px; }

.bg-pink { background: var(--pink-50); }
.bg-paper2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink p { color: rgba(255,255,255,.7); }

/* ==== Product grid ==== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.2,.6,.3,1), box-shadow .3s, border-color .2s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card .product-image {
  aspect-ratio: 4/3.4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F1E9DE 0%, #E6DAC8 100%);
}
.product-card .product-image .wall-scene { border-radius: 0; }
.product-card .product-image .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}
.product-card .product-image .badge.featured { background: var(--pink); }
.product-card .product-image .badge.sale { background: var(--green); }
.product-card .product-image .wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: all .15s;
  border: 1px solid transparent;
}
.product-card .product-image .wishlist:hover { background: var(--white); transform: scale(1.08); }
.product-card .product-image .wishlist.active svg { fill: var(--pink); stroke: var(--pink); }
.product-card .product-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-weight: 700;
}
.product-card .product-desc {
  font-size: 13.5px;
  color: var(--ink-500);
  margin-bottom: 14px;
  flex: 1;
}
.product-card .product-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.product-card .price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
}
.product-card .price small { font-size: 12px; font-weight: 500; color: var(--ink-500); margin-left: 2px; }
.product-card .price-from { font-size: 12px; color: var(--ink-500); display: block; font-weight: 500; margin-bottom: -2px; }
.product-card .add-btn {
  width: 42px; height: 42px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s;
  flex-shrink: 0;
}
.product-card .add-btn:hover { background: var(--pink); transform: scale(1.08) rotate(90deg); }
.product-card .rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ink-500); margin-bottom: 4px;
}
.product-card .rating .stars { color: var(--mustard); letter-spacing: 1px; }

/* ==== USPs ==== */
.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.usp-card {
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .25s;
}
.usp-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}
.usp-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pink-100);
  color: var(--pink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.usp-card h4 { margin-bottom: 6px; font-size: 17px; }
.usp-card p { font-size: 14px; color: var(--ink-500); margin: 0; }

/* ==== How it works ==== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: left;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: attr(data-step);
  position: absolute;
  top: -20px; right: -10px;
  font-family: "Bricolage Grotesque", serif;
  font-size: 160px;
  font-weight: 800;
  color: var(--pink-100);
  line-height: 1;
  z-index: 0;
  font-style: italic;
}
.step > * { position: relative; z-index: 1; }
.step .num {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-500); font-size: 15px; margin: 0; }

/* ==== Testimonials ==== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial .stars { color: var(--mustard); font-size: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 15.5px; color: var(--ink-700); margin: 0; line-height: 1.55; }
.testimonial .author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--mustard));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700;
}
.testimonial .author-meta strong { font-size: 14px; display: block; }
.testimonial .author-meta small { font-size: 12px; color: var(--ink-500); }

/* ==== Gallery ==== */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(.97); }
.gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-row: span 2; aspect-ratio: 1/2.05; }

/* ==== FAQ ==== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line-2);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink) 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='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .25s, background-color .15s;
}
.faq-item[open] summary::after {
  background-color: var(--pink);
  transform: rotate(45deg);
}
.faq-item .answer {
  padding: 0 0 24px;
  color: var(--ink-500);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 640px;
}

/* ==== Footer ==== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand .brand { color: var(--white); }
.footer-brand .brand .brand-meta small { color: rgba(255,255,255,.4); }
.footer-brand p { margin-top: 18px; font-size: 14px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.footer-socials a:hover { background: var(--pink); }
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--pink); }
.newsletter-form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 6px;
  margin-top: 12px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  background: var(--pink);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s;
}
.newsletter-form button:hover { background: var(--pink-600); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-bottom .anpc-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-bottom .anpc-row a {
  background: rgba(255,255,255,.06);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
}
.footer-bottom .anpc-row a:hover { background: var(--pink); color: var(--white); }
.footer-payment {
  display: flex; gap: 8px; align-items: center;
  margin-top: 14px;
}
.footer-payment .chip {
  background: rgba(255,255,255,.08);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ==== Cart modal ==== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(16,21,33,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(540px, calc(100vw - 32px));
  max-height: calc(100vh - 60px);
  background: var(--paper);
  border-radius: var(--radius-xl);
  z-index: 101;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .3s cubic-bezier(.2,.7,.3,1.1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: var(--pink);
  color: var(--white);
}
.modal-header h3 {
  font-size: 18px; margin: 0;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.modal-header h3 .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: rgba(255,255,255,.3); }
.modal-body { padding: 24px; overflow: auto; flex: 1; }
.modal-product {
  display: flex; gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.modal-product .thumb {
  width: 92px; height: 92px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
  position: relative;
}
.modal-product .meta { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.modal-product .meta strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; letter-spacing: -0.01em; }
.modal-product .meta span { font-size: 13px; color: var(--ink-500); }
.modal-product .meta .qty-line { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.modal-product .price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px; font-weight: 700;
  align-self: flex-start;
  white-space: nowrap;
}
.modal-summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px;
  font-size: 14px;
  color: var(--ink-500);
}
.modal-summary strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px; color: var(--ink); font-weight: 700;
}
.modal-actions {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 12px;
  padding: 0 24px 24px;
}
.modal-extras {
  padding: 14px 24px;
  background: var(--paper-2);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-500);
  border-top: 1px solid var(--line);
}
.modal-extras .truck { color: var(--green); }

/* ==== Product page ==== */
.pp-crumb {
  background: var(--pink);
  color: var(--white);
  padding: 14px 0;
  font-size: 13px;
}
.pp-crumb .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pp-crumb h1 { font-size: 22px; letter-spacing: -0.01em; margin: 0; color: var(--white); }
.pp-crumb .crumbs { display: flex; align-items: center; gap: 8px; font-weight: 600; opacity: .85; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }
.pp-crumb .crumbs a:hover { text-decoration: underline; }

.pp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  padding: 56px 0 80px;
}
.pp-gallery { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.pp-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}
.pp-thumbs {
  display: flex; gap: 10px; margin-top: 14px;
}
.pp-thumb {
  width: 80px; height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--white);
  position: relative;
  transition: border-color .15s;
}
.pp-thumb.active { border-color: var(--pink); }
.pp-thumb:hover { border-color: var(--pink-600); }

.pp-info h1 { font-size: clamp(30px, 3vw, 40px); margin-bottom: 12px; }
.pp-rating-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  font-size: 14px; color: var(--ink-500);
}
.pp-rating-row .stars { color: var(--mustard); font-size: 18px; letter-spacing: 2px; }
.pp-price-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.pp-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.03em;
}
.pp-price-old { font-size: 18px; color: var(--ink-300); text-decoration: line-through; }
.pp-sale-badge { background: var(--ink); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.08em; }
.pp-desc {
  font-size: 16px; color: var(--ink-500); margin-bottom: 22px;
  line-height: 1.6;
}
.pp-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.pp-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-700);
}
.pp-feature .icon-bx {
  width: 28px; height: 28px;
  background: var(--pink-100);
  color: var(--pink);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pp-delivery {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--ink-700);
}
.pp-delivery strong { color: var(--pink); }

.pp-block {
  margin-bottom: 22px;
}
.pp-block label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.005em;
}
.pp-block label .req { color: var(--pink); }

.qty-stepper {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}
.qty-stepper button {
  width: 42px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  color: var(--ink-500);
  transition: all .15s;
}
.qty-stepper button:hover { background: var(--pink-50); color: var(--pink); }
.qty-stepper input {
  width: 56px; height: 44px;
  text-align: center;
  font-size: 16px; font-weight: 600;
  border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  background: transparent;
  outline: none;
  color: var(--ink);
  font-family: inherit;
}

.size-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white) 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='%23101521' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 18px center/14px no-repeat;
  font: inherit; font-size: 15px; font-weight: 500;
  appearance: none;
  cursor: pointer;
  transition: border-color .15s;
}
.size-select:focus { outline: none; border-color: var(--pink); }
.size-hint { font-size: 12px; color: var(--ink-500); margin-top: 6px; }

.upload-box {
  border: 1.5px solid var(--pink);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}
.upload-box .uh {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.upload-box .uh .req { color: var(--pink); }
.upload-box .photo-count-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 10px; display: block; }
.photo-count {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.photo-count input { display: none; }
.photo-count label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  background: var(--white);
}
.photo-count label::before {
  content: ""; width: 14px; height: 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
  display: inline-block;
  transition: all .15s;
}
.photo-count input:checked + label {
  border-color: var(--pink);
  background: var(--pink-50);
  color: var(--pink);
  font-weight: 600;
}
.photo-count input:checked + label::before {
  border-color: var(--pink);
  background: radial-gradient(circle, var(--pink) 0 45%, var(--pink-50) 47%);
}
.dropzone {
  margin-top: 14px;
  padding: 22px;
  border: 1.5px dashed var(--pink);
  border-radius: 10px;
  background: var(--pink-50);
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.dropzone.dragover { background: var(--pink-100); border-color: var(--pink-600); }
.dropzone .dz-text {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; color: var(--pink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
}
.dropzone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.dropzone-hint { font-size: 12px; color: var(--ink-500); margin-top: 10px; }
.uploaded-files {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.uploaded-file {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: var(--pink-50);
  border-radius: 8px;
  font-size: 12px;
  border: 1px solid var(--pink-100);
}
.uploaded-file button { color: var(--pink); padding: 0; font-size: 16px; line-height: 1; }
.upload-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.upload-note::before { content: "♥"; color: var(--pink); }

.cta-row {
  background: var(--pink);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform .15s, background .15s;
}
.cta-row:hover { background: var(--pink-600); transform: translateY(-1px); }
.cta-row .cta-label {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  padding: 14px 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: 1;
}
.cta-row .cta-price {
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 22px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pp-trust {
  display: flex; align-items: center; justify-content: space-around;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.pp-trust span { display: inline-flex; align-items: center; gap: 6px; }
.pp-trust .icon { color: var(--pink); }

/* ==== Size preview (live) ==== */
.size-preview {
  margin-top: 14px;
  padding: 16px;
  background: var(--paper-2);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px;
}
.size-preview-visual {
  width: 100px; height: 100px;
  background: linear-gradient(180deg, var(--paper) 0%, #EFE5D6 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}
.size-preview-canvas {
  position: absolute;
  background: var(--pink);
  border: 1.5px solid var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  transition: width .25s ease, height .25s ease;
}
.size-preview-couch {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 18%;
  background: var(--ink-700);
}
.size-preview-info { flex: 1; }
.size-preview-info strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; }
.size-preview-info small { color: var(--ink-500); font-size: 13px; }

/* ==== Cart page ==== */
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding: 48px 0 80px;
}
.cart-items {
  display: flex; flex-direction: column; gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cart-item .ci-thumb {
  width: 110px; height: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
  position: relative;
}
.cart-item .ci-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-item .ci-info h4 { font-size: 17px; font-family: "Bricolage Grotesque", sans-serif; }
.cart-item .ci-info .ci-meta { font-size: 13px; color: var(--ink-500); }
.cart-item .ci-info .ci-remove {
  margin-top: 4px;
  font-size: 13px; color: var(--ink-500);
  text-decoration: underline; text-underline-offset: 3px;
  align-self: flex-start;
}
.cart-item .ci-info .ci-remove:hover { color: var(--pink); }
.cart-item .ci-controls {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.cart-item .ci-price { font-family: "Bricolage Grotesque", sans-serif; font-size: 22px; font-weight: 700; }
.cart-empty {
  background: var(--white); border: 1px dashed var(--line-2);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 60px 30px;
}
.cart-empty h3 { margin-bottom: 8px; }
.cart-empty p { color: var(--ink-500); margin-bottom: 22px; }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: start;
}
.cart-summary h3 { font-size: 22px; margin-bottom: 20px; }
.cart-summary .row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-2);
  font-size: 14px;
}
.cart-summary .row.total {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px; font-weight: 700;
  border: none;
  padding-top: 16px;
}
.cart-summary .row.total span:last-child { color: var(--pink); }
.coupon-row {
  display: flex; gap: 8px;
  margin-bottom: 18px;
}
.coupon-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit; font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.coupon-row input:focus { border-color: var(--pink); }
.coupon-row button { padding: 12px 18px; font-size: 13px; }
.coupon-applied {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--pink-50);
  border: 1px solid var(--pink-100);
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 18px;
  color: var(--pink-600);
  font-weight: 600;
}
.coupon-applied button { color: var(--pink); font-weight: 700; }

/* ==== Checkout ==== */
.co-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 48px 0 80px;
}
.co-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.co-section h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px;
  margin-bottom: 22px;
}
.co-section h3 .step-num {
  width: 30px; height: 30px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 600;
  color: var(--ink-700);
}
.field label .req { color: var(--pink); }
.field input, .field textarea, .field select {
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit; font-size: 15px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--pink);
}
.field textarea { min-height: 90px; resize: vertical; font-family: inherit; }
.method-list { display: flex; flex-direction: column; gap: 10px; }
.method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all .15s;
  background: var(--white);
}
.method:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-50);
}
.method input { width: 18px; height: 18px; accent-color: var(--pink); }
.method-info { flex: 1; }
.method-info strong { display: block; font-size: 15px; font-weight: 600; }
.method-info span { font-size: 13px; color: var(--ink-500); }
.method-price { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 16px; }
.method-icons { display: flex; gap: 4px; }
.method-icons .chip {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em;
}
.terms-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: var(--paper-2);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-700);
  cursor: pointer;
}
.terms-row input { accent-color: var(--pink); width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.terms-row a { color: var(--pink); font-weight: 600; text-decoration: underline; }
.co-summary { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.co-summary-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.co-summary-item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
}
.co-summary-item .thumb {
  width: 56px; height: 56px;
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
}
.co-summary-item .meta { font-size: 13px; }
.co-summary-item .meta strong { display: block; font-weight: 600; }
.co-summary-item .meta span { color: var(--ink-500); }
.co-summary-item .price { font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; }

/* ==== Animations on scroll ==== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
  .reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
  .reveal-stagger.is-in > *:nth-child(2) { transition-delay: .12s; }
  .reveal-stagger.is-in > *:nth-child(3) { transition-delay: .19s; }
  .reveal-stagger.is-in > *:nth-child(4) { transition-delay: .26s; }
  .reveal-stagger.is-in > *:nth-child(5) { transition-delay: .33s; }
  .reveal-stagger.is-in > *:nth-child(6) { transition-delay: .4s; }
  .reveal-stagger.is-in > *:nth-child(7) { transition-delay: .47s; }
  .reveal-stagger.is-in > *:nth-child(8) { transition-delay: .54s; }
}

/* ==== Generic page header ==== */
.page-header {
  padding: 56px 0 36px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--paper) 100%);
}
.page-header h1 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 10px; }
.page-header p { color: var(--ink-500); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ==== Marquee ==== */
.marquee {
  background: var(--ink);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.marquee-track span::after {
  content: "\2605"; color: var(--pink); margin-left: 60px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==== Hero variants ==== */
/* Variant B — split bold */
body[data-hero="b"] .hero { background: var(--ink); color: var(--white); padding: 80px 0 96px; }
body[data-hero="b"] .hero p.lead { color: rgba(255,255,255,.7); }
body[data-hero="b"] .hero h1 { color: var(--white); }
body[data-hero="b"] .hero h1 .accent { color: var(--pink); }
body[data-hero="b"] .hero-trust-item { color: rgba(255,255,255,.7); }
body[data-hero="b"] .hero-trust-item svg { color: var(--pink); }
body[data-hero="b"] .hero-tag { background: rgba(255,255,255,.08); color: var(--white); }

/* Variant C — gallery wall */
body[data-hero="c"] .hero { padding: 48px 0 72px; }
body[data-hero="c"] .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
body[data-hero="c"] .hero-tag, body[data-hero="c"] .hero-ctas, body[data-hero="c"] .hero-trust { justify-content: center; }
body[data-hero="c"] .hero h1 { font-size: clamp(48px, 7vw, 96px); }
body[data-hero="c"] .hero p.lead { margin-left: auto; margin-right: auto; }
body[data-hero="c"] .hero-visual { aspect-ratio: 16/6.5; margin-top: 8px; max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ==== Misc / Responsive ==== */
@media (max-width: 980px) {
  .hero-grid, .pp-grid, .cart-layout, .co-layout { grid-template-columns: 1fr; }
  .product-grid, .product-grid.cols-2, .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .usp-row, .steps, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav { display: none; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  body[data-hero="c"] .hero-visual { aspect-ratio: 16/9; }
  .pp-gallery { position: relative; top: 0; }
  .cart-summary, .co-summary { position: relative; top: 0; }
  .modal-actions { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .product-grid, .product-grid.cols-2, .product-grid.cols-4 { grid-template-columns: 1fr; }
  .usp-row, .steps, .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 36px 0 56px; }
  .form-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item .ci-thumb { width: 80px; height: 80px; }
  .cart-item .ci-controls { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
}
