/* ═══════════════════════════════════
   SWISSKO — style.css
   Palette: pastello full, zero nero
═══════════════════════════════════ */

:root {
  --blush:    #f7e8e0;
  --lavender: #e8e2f4;
  --mint:     #ddf0ec;
  --butter:   #fdf3d8;
  --peach:    #fde8d5;
  --sky:      #ddeef7;
  --lilac:    #ede0f5;

  --blush-mid:    #efc9b8;
  --lavender-mid: #c8b8e8;
  --mint-mid:     #a8d8ce;
  --peach-mid:    #f0c4a0;
  --lilac-mid:    #d4b8e8;

  --text-dark: #4a3f5c;
  --text-mid:  #7a6e8a;
  --text-soft: #a89ab8;

  --white: #fffcf8;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 40px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── CURSOR ── */
.cursor {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--lavender-mid);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease;
  mix-blend-mode: multiply;
  will-change: transform;
}
.cursor-ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--lavender-mid);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease;
  opacity: 0.45;
  will-change: transform;
}
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(255,252,248,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--blush-mid);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(200,160,160,0.13); }

.nav-logo { display: flex; align-items: baseline; gap: 0.6rem; }
.nav-logo .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 400;
  letter-spacing: 0.1em; color: var(--text-dark);
  text-decoration: none;
}
.nav-logo .nav-pill {
  background: var(--lavender);
  color: var(--lavender-mid);
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-pill);
}

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a.cta {
  background: var(--lavender);
  color: var(--text-dark);
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: background 0.25s;
}
.nav-links a.cta:hover { background: var(--lavender-mid); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-mid); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SHARED UTILITIES ── */
.s-label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--lavender-mid); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.s-label::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--lavender-mid);
}

.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text-dark);
}
.s-title em { font-style: italic; color: var(--lavender-mid); }

.btn-a {
  display: inline-block;
  background: linear-gradient(135deg, var(--lavender-mid), var(--blush-mid));
  color: var(--white);
  padding: 0.82rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-decoration: none;
  box-shadow: 0 8px 24px rgba(200,184,232,0.32);
  transition: transform 0.25s, box-shadow 0.25s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200,184,232,0.45);
}

.btn-b {
  display: inline-block;
  background: transparent; color: var(--text-mid);
  padding: 0.82rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--lavender-mid);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em; text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-b:hover { background: var(--lavender); color: var(--text-dark); }

section { padding: 7rem 4rem; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.show { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 76px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 18% 50%, var(--blush) 0%, transparent 62%),
    radial-gradient(ellipse 55% 60% at 82% 38%, var(--lavender) 0%, transparent 62%),
    radial-gradient(ellipse 40% 42% at 50% 95%, var(--mint) 0%, transparent 62%);
}

.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 5rem 4rem 5rem 5rem;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blush); color: var(--blush-mid);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.38rem 1rem; border-radius: var(--radius-pill);
  margin-bottom: 1.8rem; align-self: flex-start;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blush-mid); flex-shrink: 0; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--text-dark); margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--lavender-mid); }
.hero-title .line-accent {
  background: linear-gradient(90deg, var(--blush-mid), var(--lavender-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
  max-width: 430px; margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-pills { margin-top: 3rem; display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero-pill {
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(255,252,248,0.8);
  border: 1px solid var(--blush-mid);
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
  font-size: 0.68rem; font-weight: 400; color: var(--text-mid);
  backdrop-filter: blur(8px);
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; padding: 4rem 3rem;
}

.hero-blob-wrap { position: relative; width: 400px; height: 400px; }

.blob-bg {
  position: absolute; inset: 0;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 50%, var(--mint) 100%);
  animation: morph 10s ease-in-out infinite;
}
.blob-inner {
  position: absolute; inset: 28px; border-radius: 50%;
  background: rgba(255,252,248,0.72); backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.blob-emoji { font-size: 3.2rem; margin-bottom: 0.4rem; display: block; }
.blob-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 400;
  color: var(--text-dark); letter-spacing: 0.05em;
}
.blob-sub {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.2em; color: var(--text-soft);
  text-transform: uppercase; margin-top: 0.35rem;
}

.float-card {
  position: absolute;
  background: var(--white); border: 1px solid var(--blush-mid);
  border-radius: var(--radius-md);
  padding: 0.72rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(200,160,160,0.12);
  animation: float-y 5s ease-in-out infinite;
  white-space: nowrap;
}
.float-card:nth-child(3) { animation-delay: -1.8s; }
.float-card:nth-child(4) { animation-delay: -3.6s; }
.fc-1 { top: 8%; left: -12%; }
.fc-2 { bottom: 14%; right: -12%; }
.fc-3 { top: 54%; left: -18%; }
.fc-icon { font-size: 1.3rem; }
.fc-text strong { display: block; font-size: 0.72rem; font-weight: 500; color: var(--text-dark); }
.fc-text span { font-size: 0.62rem; font-weight: 300; color: var(--text-soft); }

@keyframes morph {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  25% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  50% { border-radius: 50% 50% 60% 40% / 40% 50% 60% 50%; }
  75% { border-radius: 70% 30% 50% 50% / 50% 70% 30% 60%; }
}
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── MARQUEE ── */
.marquee {
  padding: 0.9rem 0; overflow: hidden;
  background: var(--blush);
  border-top: 1px solid var(--blush-mid);
  border-bottom: 1px solid var(--blush-mid);
}
.marquee-track {
  display: flex; gap: 2.8rem;
  animation: marquee 24s linear infinite; white-space: nowrap;
}
.marquee-item {
  flex-shrink: 0; display: flex; align-items: center; gap: 1.2rem;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--blush-mid);
}
.marquee-item::after { content: '✿'; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

.about-body {
  font-size: 0.92rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.95; margin: 1.4rem 0;
}

.about-feats { margin-top: 1.8rem; }
.feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--blush);
}
.feat-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.feat-text strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.2rem; }
.feat-text span { font-size: 0.76rem; font-weight: 300; color: var(--text-soft); line-height: 1.5; }

.about-right-wrap { position: relative; }
.cert-card {
  background: linear-gradient(145deg, var(--lavender) 0%, var(--blush) 100%);
  border-radius: var(--radius-lg); padding: 2.8rem;
  position: relative; overflow: hidden;
}
.cert-card::before {
  content: '✿'; position: absolute; top: -10px; right: 20px;
  font-size: 8rem; opacity: 0.07; color: var(--lavender-mid); pointer-events: none;
}
.cert-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-style: italic; font-weight: 300;
  color: var(--text-dark); line-height: 1.65; margin-bottom: 2rem;
}
.cert-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.badge {
  background: rgba(255,255,255,0.72); backdrop-filter: blur(8px);
  border-radius: var(--radius-md); padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.9);
}
.badge strong { display: block; font-size: 0.76rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.2rem; }
.badge span { font-size: 0.67rem; font-weight: 300; color: var(--text-soft); }

.deco-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.deco-1 { width: 110px; height: 110px; background: var(--mint); bottom: -28px; left: -28px; opacity: 0.5; }
.deco-2 { width: 75px; height: 75px; background: var(--butter); top: -18px; right: -18px; opacity: 0.6; }

/* ── PRODUCTS ── */
.products { background: var(--butter); }
.products-hdr {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3.5rem;
}
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.prod-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1.5px solid transparent;
  transition: all 0.35s ease; cursor: pointer;
}
.prod-card:hover {
  border-color: var(--lavender-mid);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(180,150,220,0.14);
}
.prod-img {
  height: 190px; display: flex; align-items: center;
  justify-content: center; position: relative;
}
.prod-emoji {
  font-size: 3.8rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.07));
  transition: transform 0.35s ease;
}
.prod-card:hover .prod-emoji { transform: scale(1.1) rotate(-5deg); }
.prod-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: var(--radius-pill);
}
.prod-body { padding: 1.35rem; }
.prod-cat {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400; line-height: 1.3;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.prod-desc {
  font-size: 0.73rem; font-weight: 300;
  color: var(--text-soft); line-height: 1.65; margin-bottom: 1.1rem;
}
.prod-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; border-top: 1px solid var(--blush);
}
.prod-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--text-dark);
}
.prod-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; font-weight: 300; color: var(--text-soft); display: block;
}
.prod-btn {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; font-weight: 500;
  transition: transform 0.25s;
}
.prod-btn:hover { transform: scale(1.15); }

/* ── K-BEAUTY ── */
.kbeauty {
  background: var(--lavender);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.kbeauty-body {
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.9; margin: 1.4rem 0;
}
.steps { display: flex; flex-direction: column; gap: 0.9rem; }
.step {
  background: rgba(255,255,255,0.62); backdrop-filter: blur(8px);
  border-radius: var(--radius-md); padding: 1.1rem 1.4rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.9);
  transition: transform 0.28s, box-shadow 0.28s;
}
.step:hover { transform: translateX(6px); box-shadow: 0 8px 24px rgba(180,150,220,0.15); }
.step-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--lavender-mid); flex-shrink: 0; line-height: 1;
}
.step-t strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.15rem; }
.step-t span { font-size: 0.73rem; font-weight: 300; color: var(--text-mid); }

.kbeauty-visual { display: flex; flex-direction: column; gap: 1.2rem; }
.ingr-cloud { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.ingr-chip {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); border-radius: var(--radius-pill);
  padding: 0.5rem 1rem; font-size: 0.73rem; font-weight: 400; color: var(--text-dark);
  display: flex; align-items: center; gap: 0.4rem;
  transition: transform 0.25s, background 0.25s;
}
.ingr-chip:hover { transform: scale(1.05); background: rgba(255,255,255,0.9); }
.ingr-chip span { font-size: 1rem; }

.kbeauty-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.9rem; margin-top: 0.5rem; }
.k-stat {
  background: rgba(255,255,255,0.62); border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md); padding: 1.1rem; text-align: center;
}
.k-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 400; color: var(--lavender-mid); display: block;
}
.k-stat-lbl {
  font-size: 0.6rem; font-weight: 300; color: var(--text-soft);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; display: block;
}

/* ── ORDINI ── */
.ordini { background: var(--white); }
.ordini-header {
  text-align: center; margin-bottom: 4rem;
}
.ordini-sub {
  font-size: 0.92rem; font-weight: 300; color: var(--text-mid);
  max-width: 600px; margin: 1.2rem auto 0; line-height: 1.9;
}
.ordini-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.ordini-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Product Selector */
.product-selector { display: flex; flex-direction: column; gap: 0; }
.ps-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem; border-radius: var(--radius-md);
  border: 1.5px solid var(--blush-mid);
  background: var(--white); margin-bottom: 0.6rem;
  transition: border-color 0.25s, background 0.25s;
}
.ps-item.has-qty { border-color: var(--lavender-mid); background: var(--lavender); }
.ps-img {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.ps-info { flex: 1; min-width: 0; }
.ps-info strong { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-dark); line-height: 1.3; }
.ps-info span { font-size: 0.7rem; font-weight: 300; color: var(--text-soft); }
.ps-qty { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blush); border: 1px solid var(--blush-mid);
  color: var(--text-dark); font-size: 1.1rem; font-weight: 300;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--lavender); border-color: var(--lavender-mid); }
.qty-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--text-dark);
  min-width: 1.5rem; text-align: center;
}

.order-total {
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  border-radius: var(--radius-md); padding: 1rem 1.3rem;
  margin-top: 1rem;
  font-size: 0.85rem; font-weight: 400; color: var(--text-mid);
}
.order-total strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--text-dark);
}

.shipping-note {
  font-size: 0.72rem; font-weight: 300; color: var(--text-soft);
  margin-top: 0.9rem; line-height: 1.6; padding: 0.7rem 1rem;
  background: var(--mint); border-radius: var(--radius-sm);
}

/* Order Form */
.order-form {
  background: linear-gradient(145deg, var(--blush) 0%, var(--lavender) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { display: flex; flex-direction: column; gap: 0.38rem; }
.f-group label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid);
}
.f-group input,
.f-group select,
.f-group textarea {
  background: rgba(255,255,255,0.72); border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-sm); padding: 0.78rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 300;
  color: var(--text-dark); outline: none; appearance: none;
  transition: border-color 0.25s, background 0.25s; backdrop-filter: blur(8px);
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: var(--lavender-mid); background: rgba(255,255,255,0.9); }
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--text-soft); }
.f-group textarea { resize: vertical; min-height: 100px; }

.f-check {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 300; color: var(--text-mid);
  line-height: 1.5;
}
.f-check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--lavender-mid); cursor: pointer;
}

.f-submit {
  background: linear-gradient(135deg, var(--lavender-mid), var(--blush-mid));
  color: var(--white); border: none; border-radius: var(--radius-pill);
  padding: 0.92rem 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; cursor: pointer;
  box-shadow: 0 8px 24px rgba(200,184,232,0.32);
  transition: transform 0.25s, box-shadow 0.25s;
  width: 100%;
}
.f-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(200,184,232,0.45); }
.f-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-success {
  text-align: center; padding: 1.5rem;
  background: rgba(255,255,255,0.8); border-radius: var(--radius-md);
}
.form-success span { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.form-success strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-success p { font-size: 0.82rem; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

/* ── CONTATTI ── */
.contatti {
  background: var(--blush);
  padding: 7rem 4rem;
}
.contatti-inner { max-width: 900px; margin: 0 auto; }
.contact-intro {
  font-size: 0.92rem; font-weight: 300; color: var(--text-mid);
  line-height: 1.9; margin: 1rem 0 3rem;
}
.contact-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
}
.contact-card {
  border-radius: var(--radius-lg); padding: 1.8rem 1.5rem;
  transition: transform 0.28s;
}
.contact-card:hover { transform: translateY(-4px); }
.cc-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.cc-text strong { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.4rem; }
.cc-text span, .cc-text a { display: block; font-size: 0.82rem; font-weight: 300; color: var(--text-dark); text-decoration: none; line-height: 1.7; }
.cc-text a:hover { color: var(--lavender-mid); }

/* ── FOOTER ── */
footer {
  background: var(--lavender);
  border-top: 1px solid var(--lavender-mid);
  padding: 4.5rem 4rem 2.2rem;
}
.f-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem; margin-bottom: 3.5rem;
}
.f-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--text-dark); letter-spacing: 0.08em; margin-bottom: 0.25rem;
}
.f-brand-sub {
  font-size: 0.57rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lavender-mid); margin-bottom: 1.2rem;
}
.f-brand p { font-size: 0.8rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; max-width: 250px; }
.f-col h4 {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lavender-mid); margin-bottom: 1.2rem;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.f-col ul a { text-decoration: none; color: var(--text-mid); font-size: 0.8rem; font-weight: 300; transition: color 0.25s; }
.f-col ul a:hover { color: var(--text-dark); }
.f-bottom {
  padding-top: 1.8rem; border-top: 1px solid rgba(200,184,232,0.4);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.f-bottom p { font-size: 0.7rem; font-weight: 300; color: var(--text-soft); }
.f-bottom a { color: var(--lavender-mid); text-decoration: none; }
.esf-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; font-weight: 300; color: var(--text-soft); }
.esf-badge strong { color: var(--text-mid); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .about, .kbeauty { gap: 4rem; }
}

@media (max-width: 900px) {
  nav { padding: 1.1rem 2rem; }
  section { padding: 5rem 2rem; }
  .contatti { padding: 5rem 2rem; }
  footer { padding: 4rem 2rem 2rem; }

  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,252,248,0.97); backdrop-filter: blur(20px);
    padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid var(--blush-mid);
  }
  .nav-links.open { display: flex; }
  .nav-links a.cta { align-self: flex-start; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 3rem; }
  .hero-left { padding: 4rem 2rem 2rem; }
  .hero-right { display: none; }

  .about, .kbeauty { grid-template-columns: 1fr; }
  .about-right-wrap { display: none; }

  .ordini-body { grid-template-columns: 1fr; }
  .products-hdr { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .contact-cards { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .kbeauty-stat-row { grid-template-columns: repeat(3,1fr); }
  .cert-badges { grid-template-columns: 1fr; }
}

/* ── LE LINEE ── */
.linee { background: var(--butter); }
.linee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.linea-card {
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.linea-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(180,150,220,0.15); }
.linea-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.linea-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.8rem;
}
.linea-desc { font-size: 0.82rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.2rem; }
.linea-products { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.linea-products span {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-pill); padding: 0.25rem 0.7rem;
  font-size: 0.65rem; font-weight: 400; color: var(--text-mid);
}
.linea-link {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  color: var(--text-dark); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.25s;
}
.linea-link:hover { color: var(--lavender-mid); }

/* ── PRODUCT CATEGORIES ── */
.prod-category { margin-bottom: 4rem; }
.cat-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.8rem; padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--blush-mid);
}
.cat-step {
  background: var(--lavender); color: var(--lavender-mid);
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
}
.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--text-dark);
}
.ingr-mini {
  display: inline-block;
  background: var(--blush); color: var(--text-mid);
  font-size: 0.6rem; font-weight: 400;
  padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
  margin: 0.15rem 0.1rem;
}
.prod-tags-list { margin-bottom: 0.9rem; }

/* ── ROUTINE ── */
.routine { background: var(--lavender); }
.routine-steps {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 0.5rem; justify-content: center;
}
.r-step {
  border-radius: var(--radius-md); padding: 1.2rem 1rem;
  text-align: center; min-width: 110px;
  transition: transform 0.28s;
}
.r-step:hover { transform: translateY(-4px); }
.r-num {
  display: block; font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.2em; color: var(--text-soft); margin-bottom: 0.4rem;
}
.r-icon { display: block; font-size: 1.8rem; margin-bottom: 0.5rem; }
.r-step strong { display: block; font-size: 0.78rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.2rem; }
.r-step span { display: block; font-size: 0.65rem; font-weight: 300; color: var(--text-mid); line-height: 1.4; }
.r-arrow { font-size: 1.2rem; color: var(--lavender-mid); flex-shrink: 0; }

/* ── ORDER FORM — category labels ── */
.ps-cat-label {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lavender-mid);
  padding: 0.8rem 0 0.3rem; margin-top: 0.5rem;
  border-top: 1px solid var(--blush-mid);
}
.ps-cat-label:first-child { border-top: none; margin-top: 0; }

/* ── RESPONSIVE extras ── */
@media (max-width: 900px) {
  .linee-grid { grid-template-columns: 1fr; }
  .routine-steps { gap: 0.3rem; }
  .r-step { min-width: 90px; padding: 1rem 0.6rem; }
  .r-arrow { display: none; }
}
@media (max-width: 600px) {
  .linee-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT IMAGES (real photos) ── */
.prod-img-wrap {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.prod-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-emoji-fb {
  font-size: 4rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.07));
}

/* LINEA image */
.linea-img {
  width: 100%; height: 160px; overflow: hidden; border-radius: var(--radius-md);
  margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center;
}
.linea-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.linea-emoji-fallback { font-size: 4rem; display: flex; align-items: center; justify-content: center; width:100%; height:100%; }

/* ── PROD BUTTON LINK ── */
.prod-btn-link {
  display: inline-block; padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill); font-size: 0.68rem;
  font-weight: 500; text-decoration: none; letter-spacing: 0.05em;
  transition: transform 0.2s, opacity 0.2s;
}
.prod-btn-link:hover { transform: scale(1.05); opacity: 0.85; }

/* ── RICHIESTA FORM ── */
.richiesta-wrap { max-width: 780px; margin: 0 auto; }

.richiesta-form {
  background: linear-gradient(145deg, var(--blush) 0%, var(--lavender) 100%);
  border-radius: var(--radius-lg); padding: 3rem;
  display: flex; flex-direction: column; gap: 2rem;
}

.form-section { display: flex; flex-direction: column; gap: 1rem; }
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--text-dark);
  margin-bottom: 0.3rem;
}

/* Checkbox group */
.checkbox-group { display: flex; flex-direction: column; gap: 0.3rem; }
.chk-cat {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lavender-mid);
  padding: 0.7rem 0 0.2rem; margin-top: 0.3rem;
}
.chk-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.85);
  cursor: pointer; transition: background 0.2s;
}
.chk-item:hover { background: rgba(255,255,255,0.8); }
.chk-item input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--lavender-mid); cursor: pointer;
}
.chk-item span {
  font-size: 0.8rem; font-weight: 300; color: var(--text-dark);
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}
.chk-item span em {
  font-style: normal; font-size: 0.72rem;
  color: var(--lavender-mid); font-weight: 500;
}
.chk-item input:checked ~ span { color: var(--text-dark); font-weight: 400; }

@media (max-width: 600px) {
  .richiesta-form { padding: 2rem 1.5rem; }
}
