/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --ink:           #1a1a2e;
  --ink-soft:      #2d2d4e;
  --purple:        #7c5cbf;
  --purple-light:  #a07fd4;
  --purple-pale:   #f0ebfa;
  --purple-border: #d4c4ef;
  --accent:        #e8a0ff;
  --yellow:        #ffd166;
  --teal:          #06d6a0;
  --cream:         #faf8f5;
  --cream2:        #f4f0ea;
  --text:          #2a2a3e;
  --text-muted:    #6b6b88;
  --white:         #ffffff;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-pill:   50px;
  --shadow:        0 4px 24px rgba(124,92,191,0.12);
  --shadow-hover:  0 8px 40px rgba(124,92,191,0.22);
  --gutter:        clamp(1.25rem, 5vw, 4rem);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Fonts */
  --font-display: 'Caveat', cursive;
  --font-body:    'DM Sans', 'Segoe UI', system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  width: 100%;
  cursor: url("assets/img/moodink-pencil-cursor.svg") 3 29, auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  box-shadow: 0 0 14px rgba(124,92,191,.45);
}

img, svg, video { display: block; max-width: 100%; }
img  {
  height: auto;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
.product-img-wrap img,
.modal-product-gallery img,
.pack-include-item img,
.cart-line img,
.purchase-downloads img,
.about-img img,
.doodle-card img,
.mini-card img {
  pointer-events: none;
}
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
button,
a,
.chip,
.cart-btn,
.hamburger,
.product-card,
.pack-card,
.cat-card,
[role="button"] {
  cursor: url("assets/img/moodink-pencil-cursor.svg") 3 29, pointer;
}
input,
textarea,
select {
  cursor: text;
}
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; }
::selection { background: var(--purple); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--purple); color: var(--white);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

/* =============================================================
   4. Typography
   ============================================================= */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* =============================================================
   5. Components
   ============================================================= */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
  border: none;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,92,191,.35);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,92,191,.42);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple-border);
  padding: .5rem 1.1rem;
  font-size: .8125rem;
}
.btn-ghost:hover { background: var(--purple-pale); border-color: var(--purple); }

.btn-sm { padding: .5rem 1.1rem; font-size: .8125rem; }

/* ── Badge / tag ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .6875rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
}
.tag-new    { background: #e8faf4; color: #0a7a53; }
.tag-pop    { background: #fff3e0; color: #b35a00; }
.tag-sale   { background: #fce4e4; color: #a32020; }

/* ── Chip (filter) ── */
.chip {
  padding: .5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--purple-border);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-body);
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.chip:hover, .chip[aria-pressed="true"] {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* ── Stars ── */
.stars { color: var(--yellow); letter-spacing: .05em; }

/* =============================================================
   6. Header / Nav
   ============================================================= */
.site-header {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  z-index: 100;
  height: 68px;
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--purple-border);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.07); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .header-inner { max-width: none; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex-shrink: 0;
}
.logo-svg { width: 54px; height: 40px; overflow: visible; flex-shrink: 0; }
.logo-wordmark {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  line-height: .95;
  margin-left: -.15rem;
}
.logo-wordmark em { font-style: normal; color: var(--purple); }
.logo-wordmark::after {
  content: '';
  position: absolute;
  left: -.18em;
  right: -.34em;
  bottom: -.58em;
  height: .74em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 44'%3E%3Cpath d='M8 32 C45 18 84 15 124 16 C108 26 111 34 132 25 C158 17 203 15 236 16' fill='none' stroke='%237c5cbf' stroke-width='7.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='238' cy='33' r='5.2' fill='%237c5cbf'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.desktop-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color .2s;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s var(--ease-out);
}
.desktop-nav a:hover { color: var(--purple); }
.desktop-nav a:hover::after { transform: scaleX(1); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* Hide text buttons on compact screens — keep cart + hamburger only */
@media (max-width: 959px) {
  .header-actions .btn-ghost { display: none !important; }
  .header-actions .btn-primary { display: none !important; }
}

@media (max-width: 600px) {
  .header-inner {
    padding-inline: .75rem;
    gap: .5rem;
    position: relative;
    justify-content: flex-start;
  }
  .logo { max-width: calc(100% - 92px); }
  .logo-svg {
    width: 72px !important;
    height: 54px !important;
  }
  .logo-wordmark {
    font-size: 1.25rem;
    margin-left: -.35rem;
  }
  .header-actions {
    position: fixed;
    right: .75rem;
    top: 16px;
    transform: none;
    width: 82px;
    display: grid;
    grid-template-columns: 36px 36px;
    gap: .4rem;
  }
  .header-actions .lang-switch { display: none !important; }
  .cart-btn,
  .hamburger {
    width: 36px;
    height: 36px;
  }
}

.lang-switch {
  position: relative;
  display: none;
  align-items: center;
  width: 92px;
  height: 38px;
  padding: 3px;
  border: 1.5px solid var(--purple-border);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(124,92,191,.12);
  isolation: isolate;
  flex-shrink: 0;
}
.lang-switch::before {
  content: '';
  position: absolute;
  inset-block: 3px;
  left: 3px;
  width: 42px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 6px 14px rgba(124,92,191,.24);
  transition: transform .22s var(--ease-out);
  z-index: 0;
}
.lang-switch.is-en::before { transform: translateX(42px); }
.lang-option {
  flex: 1;
  height: 100%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color .18s var(--ease-out);
}
.lang-option[aria-pressed="true"] { color: var(--white); }
.mobile-lang-switch {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: .875rem;
}

.cart-btn {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--purple); background: var(--purple-pale); }

.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  width: 18px; height: 18px;
  background: var(--purple);
  border-radius: 50%;
  font-size: .625rem;
  font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--purple-border);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .18s;
}
.hamburger:hover { background: var(--purple-pale); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset-block-start: 68px; inset-inline: 0;
  background: rgba(250,248,245,.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1.5px solid var(--purple-border);
  padding: 1.25rem var(--gutter) 1.75rem;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(124,92,191,.12);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  padding: .875rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--purple-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .18s, color .18s;
}
.mobile-nav a:last-of-type {
  border-bottom: 1.5px solid var(--purple-border);
  margin-bottom: .875rem;
  padding-bottom: 1rem;
}
.mobile-nav a::after { content: '→'; color: var(--purple-light); font-size: .875rem; }
.mobile-nav a:hover { background: var(--purple-pale); color: var(--purple); }

.mobile-nav-ctas {
  display: flex;
  gap: .625rem;
  margin-top: .35rem;
  padding-top: 0;
}
.mobile-nav-ctas button { flex: 1; min-width: 0; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(5.5rem, 12vw, 7rem) 3.5rem;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
  overflow: clip;
}

/* Ambient bg blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 25%, rgba(124,92,191,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 70%, rgba(232,160,255,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--purple-pale);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-pill);
  padding: .375rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 1.25rem;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-title .highlight {
  color: var(--purple);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 100%;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.hero-stat-lbl {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

/* Hero doodle grid — hidden on mobile, visible from 960px */
.hero-visual {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  position: relative;
  overflow: visible;
}

.doodle-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--purple-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  cursor: pointer;
}
.doodle-card:hover { transform: translateY(-5px) rotate(.5deg); box-shadow: var(--shadow-hover); }
.doodle-card.span2 { grid-column: 1 / 3; }
.doodle-card img  { width: 100%; height: 185px; }
.doodle-card.span2 img { height: 200px; }

.doodle-card-info { padding: .625rem .875rem .875rem; }
.doodle-card-name { font-size: .8125rem; font-weight: 600; color: var(--ink); }
.doodle-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple);
  margin-top: .125rem;
}
.doodle-card-tags { display: flex; gap: .375rem; margin-top: .375rem; }

.float-badge {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius-sm);
  padding: .5rem .875rem;
  font-size: .75rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  z-index: 2;
}
.float-badge-1 { top: -14px; right: 0; color: var(--purple); }
.float-badge-2 { bottom: 50px; left: 0; color: var(--teal); }

/* =============================================================
   8. Sections — shared layout
   ============================================================= */
.section {
  padding-block: clamp(3.5rem, 8vw, 5rem);
  padding-inline: var(--gutter);
}
.section-header { text-align: center; margin-bottom: 2.5rem; }

/* =============================================================
   9. Categories
   ============================================================= */
.categories { background: var(--white); border-block: 1.5px solid var(--purple-border); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
}

.cat-card {
  background: var(--cream);
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .25s var(--ease-out), box-shadow .25s;
  display: block;
  text-decoration: none;
}
.cat-card:hover {
  background: var(--purple-pale);
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cat-icon { font-size: 2.25rem; margin-bottom: .75rem; display: block; transition: transform .3s var(--ease-bounce); }
.cat-card:hover .cat-icon { transform: scale(1.15) rotate(5deg); }
.cat-name { font-family: var(--font-display); font-size: 1.1875rem; font-weight: 700; color: var(--ink); margin-bottom: .375rem; }
.cat-desc { font-size: .75rem; color: var(--text-muted); line-height: 1.55; margin-bottom: .875rem; }
.cat-link { font-size: .75rem; font-weight: 600; color: var(--purple); }

/* =============================================================
   10. Catalog
   ============================================================= */
.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-inline: auto;
}

.search-wrap {
  position: relative;
  width: 100%;
}
.search-wrap svg {
  position: absolute;
  left: .875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px; height: 16px;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: .7rem 1rem .7rem 2.5rem;
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: .9375rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--purple); }

.chips-scroll-shell {
  position: relative;
}

.chips-scroll-shell::before,
.chips-scroll-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: .25rem;
  width: 2.75rem;
  pointer-events: none;
  z-index: 1;
}

.chips-scroll-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 10%, rgba(250,248,245,0));
}

.chips-scroll-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream) 10%, rgba(250,248,245,0));
}

.chips-row {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: 0 2.75rem .25rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-padding-inline: 2.75rem;
}
.chips-row::-webkit-scrollbar { display: none; }

.chips-arrow {
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  transform: translateY(calc(-50% - .125rem));
  border-radius: 50%;
  border: 1.5px solid var(--purple-border);
  background: rgba(255,255,255,.94);
  color: var(--purple);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(124,92,191,.15);
  z-index: 2;
}

.chips-arrow-left { left: .15rem; }
.chips-arrow-right { right: .15rem; }

@media (min-width: 768px) {
  .chips-scroll-shell::before,
  .chips-scroll-shell::after,
  .chips-arrow {
    display: none;
  }

  .chips-row {
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .875rem;
  max-width: 1200px;
  margin-inline: auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--purple-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s var(--ease-out), box-shadow .28s, border-color .2s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--purple-light);
}

.product-img-wrap { position: relative; overflow: hidden; }
.product-img-wrap img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: var(--white);
  transition: transform .4s var(--ease-soft);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-tag-row {
  position: absolute;
  top: .625rem; left: .625rem;
  display: flex; gap: .375rem; flex-wrap: wrap;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124,92,191,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  opacity: 0;
  transition: opacity .25s;
}
@media (hover: hover) {
  .product-card:hover .product-overlay { opacity: 1; }
}

.overlay-btn {
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  transition: background .18s, transform .18s;
}
.overlay-btn:hover { transform: scale(1.04); }
.overlay-btn-view { background: var(--white); color: var(--purple); }
.overlay-btn-add  { background: var(--purple); color: var(--white); }

.product-body { padding: .75rem .875rem 1rem; }
.product-cat  { font-size: .6875rem; font-weight: 700; color: var(--purple-light); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .3rem; }
.product-name { font-size: .9375rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: .5rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--purple); }
.product-rating { font-size: .75rem; color: var(--text-muted); }

/* =============================================================
   11. Packs
   ============================================================= */
.packs {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  position: relative;
  overflow: clip;
}
.packs::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,92,191,.18) 0%, transparent 70%);
  pointer-events: none;
}
.packs .section-label  { color: var(--accent); }
.packs .section-title  { color: var(--white); }
.packs .section-sub    { color: rgba(255,255,255,.6); margin-inline: auto; }

.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
}

.pack-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 335px;
  display: flex;
  flex-direction: column;
  transition: background .25s, border-color .25s, transform .25s var(--ease-out);
}
.pack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--purple-light);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.pack-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(124,92,191,.5);
  transform: translateY(-3px);
}
.pack-card:hover::before { transform: scaleX(1); }

.pack-emoji { font-size: 2.25rem; margin-bottom: .875rem; display: block; }
.pack-name  { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--white); margin-bottom: .375rem; }
.pack-items { font-size: .8125rem; color: rgba(255,255,255,.55); margin-bottom: .875rem; min-height: 2.75em; }
.pack-pricing {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-top: auto;
  margin-bottom: 1rem;
  min-height: 44px;
  flex-wrap: wrap;
}
.pack-price    { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.pack-original { font-size: .9375rem; color: rgba(255,255,255,.35); text-decoration: line-through; }
.pack-discount { font-size: .75rem; font-weight: 700; background: var(--yellow); color: #5a3a00; padding: .2rem .6rem; border-radius: var(--radius-pill); }

.pack-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, border-color .2s;
}
.pack-btn:hover { background: var(--purple); border-color: var(--purple); }

/* =============================================================
   12. Custom request
   ============================================================= */
.custom { background: var(--cream2); border-block: 1.5px solid var(--purple-border); }

.custom-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin-inline: auto;
}

.custom-left .section-title  { text-align: left; margin-inline: 0; }
.custom-left .section-label  { text-align: left; }
.custom-left .section-sub    { text-align: left; margin-inline: 0; max-width: 48ch; margin-bottom: 2rem; }
.custom-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.title-pencil {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transform: rotate(-4deg);
}

.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step  { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 700;
  color: var(--white);
}
.step h4 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: .25rem; }
.step p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--purple-border);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.form-group       { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .8125rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: .9375rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple); }
.form-group textarea { height: 90px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }

.btn-submit {
  width: 100%;
  padding: .875rem;
  background: var(--purple);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  margin-top: .5rem;
  box-shadow: 0 4px 20px rgba(124,92,191,.35);
  transition: background .25s, transform .2s var(--ease-out), box-shadow .2s;
}
.btn-submit:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(124,92,191,.42); }

/* =============================================================
   13. About
   ============================================================= */
.about { background: var(--white); border-bottom: 1.5px solid var(--purple-border); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin-inline: auto;
}
.about-text .section-title { text-align: left; margin-inline: 0; }
.about-text .section-label { text-align: left; }
.about-text p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.1rem; }

.audience-chips { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.5rem; }
.audience-chip {
  display: flex; align-items: center; gap: .375rem;
  padding: .5rem 1rem;
  background: var(--purple-pale);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--purple);
}

.about-visual { display: none; }

/* =============================================================
   14. Testimonials
   ============================================================= */
.process {
  background: var(--cream);
  border-bottom: 1.5px solid var(--purple-border);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1120px;
  margin-inline: auto;
}

.process-step {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.72);
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--white);
  border: 1.5px solid var(--purple);
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(124,92,191,.12);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: .45rem;
}

.process-step p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq {
  background: var(--white);
  border-bottom: 1.5px solid var(--purple-border);
}

.faq-list {
  max-width: 880px;
  display: grid;
  gap: .85rem;
}

.faq-item {
  background: var(--cream);
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 700;
  transition: transform .2s var(--ease-out), background .2s, color .2s;
}

.faq-item[open] summary::after {
  content: '-';
  background: var(--purple);
  color: var(--white);
}

.faq-item p {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .9375rem;
}

.testimonials { background: var(--cream); border-bottom: 1.5px solid var(--purple-border); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--purple-border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  min-height: 278px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars  { color: var(--yellow); font-size: 1rem; margin-bottom: .75rem; }
.testi-text   { font-size: .9375rem; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--purple);
  border: 2px solid var(--purple-border);
}
.testi-name { font-size: .875rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: .75rem;  color: var(--text-muted); }

/* =============================================================
   15. Newsletter
   ============================================================= */
.newsletter { background: var(--purple); text-align: center; padding-block: clamp(3rem,7vw,4.5rem); padding-inline: var(--gutter); }
.newsletter h2 { font-family: var(--font-display); font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.newsletter p  { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 48ch; margin-inline: auto; line-height: 1.65; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 480px;
  margin-inline: auto;
}
.newsletter-form input {
  flex: 1;
  padding: .875rem 1.375rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: .9375rem;
  font-family: var(--font-body);
  outline: none;
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.newsletter-form button {
  padding: .875rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--ink);
  color: var(--white);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, transform .2s var(--ease-out);
}
.newsletter-form button:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }

/* =============================================================
   16. Footer
   ============================================================= */
.site-footer {
  background: var(--ink);
  padding-block: 3.5rem 1.75rem;
  padding-inline: var(--gutter);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .875rem;
  display: flex; align-items: center; gap: .15rem;
}
.footer-brand-name em { font-style: normal; color: var(--accent); }
.footer-brand-icon-wrap { display:flex; align-items:center; margin-bottom:.2rem; }
.footer-wordmark {
  position: relative;
  display: inline-block;
  line-height: .95;
  margin-left: -.15rem;
}
.footer-wordmark::after {
  content: '';
  position: absolute;
  left: -.18em;
  right: -.34em;
  bottom: -.58em;
  height: .74em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 44'%3E%3Cpath d='M8 32 C45 18 84 15 124 16 C108 26 111 34 132 25 C158 17 203 15 236 16' fill='none' stroke='%23e8a0ff' stroke-width='7.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='238' cy='33' r='5.2' fill='%23e8a0ff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
  .footer-brand-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white);
}

.footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.25rem; }

.social-links { display: flex; gap: .625rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.65);
  transition: background .2s, border-color .2s, color .2s;
}
.social-link:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }

.footer-col h5 {
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.9);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .625rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .18s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

.cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 1rem;
  z-index: 220;
  padding-inline: var(--gutter);
  pointer-events: none;
}

.cookie-consent[hidden] { display: none; }

.cookie-card {
  width: min(1040px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--purple-border);
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 46px rgba(26,26,46,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
}

.cookie-copy strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: .25rem;
}

.cookie-copy p {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}

.cookie-btn {
  min-height: 42px;
  padding: .6rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 700;
  border: 1.5px solid var(--purple-border);
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease-out);
}

.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.cookie-btn-outline { background: var(--purple-pale); color: var(--purple); }
.cookie-btn-ghost { background: transparent; color: var(--text-muted); }

.modal-open { overflow: hidden; }

.app-modal[hidden] { display: none; }

.app-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.app-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.app-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border-radius: var(--radius);
  border: 1.5px solid var(--purple-border);
  background: var(--cream);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  padding: 1.25rem;
}

.app-modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-left: auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.app-modal-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--ink);
  margin-bottom: .75rem;
}

.app-modal-body p {
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-product {
  display: grid;
  gap: 1.25rem;
}

.modal-product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--purple-border);
  background: var(--white);
}

.modal-product-gallery {
  position: relative;
}

.gallery-nav {
  position: absolute;
  top: calc(50% - 30px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--purple-border);
  background: rgba(255,255,255,.92);
  color: var(--purple);
  font-size: 2rem;
  line-height: 1;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 2;
}

.gallery-prev { left: .6rem; }
.gallery-next { right: .6rem; }

.gallery-counter {
  position: absolute;
  right: .75rem;
  bottom: 5rem;
  padding: .25rem .55rem;
  border-radius: var(--radius-pill);
  background: rgba(26,26,46,.76);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
}

.gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(48px, 1fr);
  gap: .45rem;
  overflow-x: auto;
  padding-top: .55rem;
}

.gallery-thumb {
  padding: 0;
  border: 1.5px solid var(--purple-border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  opacity: .72;
}

.gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(124,92,191,.16);
}

.gallery-thumb img {
  width: 100%;
  height: 48px;
  display: block;
  object-fit: contain;
}

.modal-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
}

.modal-price-row strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--purple);
}

.modal-pack-emoji {
  font-size: 2.4rem;
  display: inline-block;
  margin-bottom: .25rem;
}

.pack-includes {
  margin: 1rem 0 1.25rem;
}

.pack-includes h4 {
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: .75rem;
}

.pack-include-grid {
  display: grid;
  gap: .65rem;
}

.pack-include-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .65rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--purple-border);
  background: rgba(255,255,255,.75);
}

.pack-include-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid var(--purple-border);
  background: var(--white);
}

.pack-include-item strong,
.pack-include-item span {
  display: block;
}

.pack-include-item span {
  color: var(--text-muted);
  font-size: .8125rem;
}

.mini-action,
.cart-remove,
.auth-link {
  min-height: 34px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--purple-border);
  background: var(--purple-pale);
  color: var(--purple);
  padding: .35rem .75rem;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
}

.auth-link {
  justify-self: start;
  background: transparent;
  border-color: transparent;
  padding-inline: 0;
}

.cart-lines {
  display: grid;
  gap: .75rem;
  margin: 1rem 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: .8rem;
  align-items: center;
  padding: .75rem;
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.72);
}

.cart-line img,
.cart-line-emoji {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--purple-border);
}

.cart-line-emoji {
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: var(--text-muted);
  font-size: .875rem;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1.5px solid var(--purple-border);
}

.cart-actions {
  display: grid;
  align-items: start;
  gap: .7rem;
  margin-top: .85rem;
}

.cart-actions .btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
  align-self: start;
}

@media (min-width: 520px) {
  .cart-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-actions .btn:only-child {
    grid-column: 1 / -1;
  }
}

.auth-form {
  display: grid;
  gap: .9rem;
}

.auth-form .btn {
  width: 100%;
}

.auth-form label {
  display: grid;
  gap: .35rem;
  color: var(--ink);
  font-weight: 600;
}

.auth-form .auth-check {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
  min-width: 0;
}

.auth-form .auth-check input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: .16rem;
  padding: 0;
  accent-color: var(--purple);
  flex: 0 0 auto;
}

.auth-check span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.auth-form input:not([type="checkbox"]) {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--purple-border);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 3rem !important;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: .55rem;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-pale);
  transform: translateY(-50%);
  transition: background .2s var(--ease-soft), color .2s var(--ease-soft), transform .2s var(--ease-soft);
}

.password-toggle:hover,
.password-toggle:focus-visible,
.password-toggle.is-visible {
  color: var(--white);
  background: var(--purple);
}

.password-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.password-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.password-hint {
  display: block;
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.4;
}

.btn-session-logout {
  white-space: nowrap;
}

.account-modal {
  display: grid;
  gap: .85rem;
}

.account-modal .btn,
.checkout-success-modal .btn {
  width: 100%;
}

.checkout-success-modal {
  display: grid;
  gap: .8rem;
}

.purchases-modal {
  display: grid;
  gap: 1rem;
}

.purchase-list {
  display: grid;
  gap: .85rem;
  max-height: min(58vh, 520px);
  overflow: auto;
  padding-right: .25rem;
}

.purchase-card {
  padding: .9rem;
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.78);
}

.purchase-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
}

.purchase-card-head strong,
.purchase-card-head span {
  display: block;
}

.purchase-card-head span,
.purchase-card li small {
  color: var(--text-muted);
  font-size: .84rem;
}

.purchase-status {
  flex: 0 0 auto;
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
  background: var(--purple-pale);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.purchase-status.is-paid {
  background: #e8faf4;
  color: #0a7a53;
}

.purchase-card ul {
  display: grid;
  gap: .5rem;
  list-style: none;
}

.purchase-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: .8rem;
}

.purchase-card li a {
  padding: .25rem .65rem;
  border-radius: var(--radius-pill);
  background: var(--purple-pale);
  color: var(--purple);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .purchase-card li {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .purchase-card li a {
    justify-self: start;
  }
}

.modal-note,
.modal-success,
.form-feedback,
.checkout-feedback {
  font-size: .9rem;
  color: var(--text-muted);
}

.modal-success {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: #e8faf4;
  color: #0a7a53;
}

.legal-modal {
  max-width: 720px;
}

.legal-modal p + p {
  margin-top: .75rem;
}

.email-modal {
  width: min(100%, 560px);
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.email-copy-field {
  width: 100%;
  margin: 1rem 0;
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--purple-border);
  background: var(--purple-pale);
  color: var(--ink);
  font: 700 1rem var(--font-body);
  text-align: center;
}

.email-copy-field::selection {
  background: var(--purple);
  color: var(--white);
}

.email-actions {
  display: grid;
  gap: .65rem;
}

.form-feedback,
.checkout-feedback {
  padding: .75rem .85rem;
  border-radius: var(--radius-sm);
  background: var(--purple-pale);
  color: var(--purple);
}

.checkout-feedback {
  display: grid;
  gap: .55rem;
  align-content: start;
}

.checkout-feedback p {
  margin: 0;
}

.checkout-login-link {
  justify-self: start;
  min-height: 34px;
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  background: var(--purple);
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(124,92,191,.22);
}

.form-feedback.is-error,
.checkout-feedback.is-error {
  background: #fff0f3;
  color: #9f1239;
}

/* =============================================================
   17. Animations & keyframes
   ============================================================= */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.doodle-card:nth-child(1) { animation: float-card 4s ease-in-out infinite; }
.doodle-card:nth-child(2) { animation: float-card 4s ease-in-out infinite .8s; }
.doodle-card:nth-child(3) { animation: float-card 4s ease-in-out infinite 1.6s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   18. Responsive — mobile-first breakpoints
   ============================================================= */

/* 540px — large phone */
@media (min-width: 540px) {
  .hero-ctas { flex-direction: row; }
  .newsletter-form { flex-direction: row; }
  .newsletter-form input { min-width: 0; flex: 1; }
  .form-row { grid-template-columns: 1fr 1fr; gap: .875rem; }
}

/* 720px — tablet portrait */
@media (min-width: 720px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid      { grid-template-columns: repeat(3, 1fr); }
  .packs-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: column; justify-content: center; }
  .cookie-card { grid-template-columns: 1fr auto; padding: 1rem 1.15rem; }
  .cookie-actions { justify-content: flex-end; }
  .modal-product { grid-template-columns: minmax(220px, .9fr) 1fr; align-items: center; }
}

/* 960px — tablet landscape / small laptop */
@media (min-width: 960px) {
  .header-actions .lang-switch { display: inline-flex; }

  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-visual { display: grid; }
  .hero-sub { max-width: 48ch; }

  .custom-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .about-inner  { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
  .about-img    { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--purple-border); box-shadow: var(--shadow); }
  .about-img img { width: 100%; height: 160px; }
  .about-img.tall { grid-row: 1 / 3; }
  .about-img.tall img { height: 100%; min-height: 340px; }
}

/* 1280px — laptop/desktop */
@media (min-width: 1280px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  }
  .logo { justify-self: start; }
  .desktop-nav { display: flex; }
  .desktop-nav { justify-self: center; }
  .header-actions { justify-self: end; }
  .hamburger   { display: none; }
  .btn-ghost   { display: inline-flex; }

  .packs-grid    { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1.5px;
    background: var(--purple-border);
  }
  .process-step {
    text-align: center;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding-inline: 1rem;
  }
  .process-num { margin-inline: auto; }
  .testi-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-inner  { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   19. Reduced-motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .doodle-card { animation: none; }
  .eyebrow-dot  { animation: none; }
  /* Do NOT disable: tilts, hovers, reveals, transitions */
}

/* =============================================================
   20. Promo Video Hero
   ============================================================= */

/* Wrapper — replaces hero-visual on all screens */
.promo-video-wrap {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(124,92,191,0.22);
  border: 1.5px solid var(--purple-border);
}

/* Screen container */
.promo-screen {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* Scenes */
.promo-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: scene-in 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes scene-in {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes scene-out {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.03); }
}
.promo-scene.leaving {
  animation: scene-out 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

/* Scene backgrounds */
.scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.scene-bg-warm {
  background: linear-gradient(135deg, #fff9f0 0%, #fef3e8 50%, #fde8d8 100%);
}
.scene-bg-cool {
  background: linear-gradient(135deg, #f0ebfa 0%, #e8f4fd 50%, #f5f0ff 100%);
}
.scene-bg-white {
  background: linear-gradient(135deg, #fafafa 0%, #f8f5ff 100%);
}

/* ── SCENE 1 ELEMENTS ── */
.drawing-area {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
}
.doodle-draw {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(124,92,191,0.1));
}

/* SVG path draw-on animation */
.draw-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-stroke 1.2s ease-out forwards;
  animation-delay: var(--dl, 0s);
  animation-duration: var(--dd, 1.2s);
}
@keyframes draw-stroke {
  to { stroke-dashoffset: 0; }
}

.pencil-anim {
  transform-origin: 294px 56px;
}
@keyframes pencil-draw {
  0%   { transform: translate(0,0) rotate(-15deg); }
  25%  { transform: translate(-30px, 20px) rotate(-10deg); }
  50%  { transform: translate(-60px, 10px) rotate(-20deg); }
  75%  { transform: translate(-20px, 30px) rotate(-5deg); }
  100% { transform: translate(0,0) rotate(-15deg); }
}

/* Scene table decoration */
.scene-table {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  z-index: 1;
}
.table-surface {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(to right, #e8d5b7, #d4b896, #e8d5b7);
  border-radius: 4px 4px 0 0;
}
.pencil {
  position: absolute;
  width: 60px;
  height: 8px;
  bottom: 14px;
  border-radius: 4px;
  transform-origin: left center;
}
.pencil-1 { left: 8%; background: #ffd166; transform: rotate(-12deg); }
.pencil-2 { left: 22%; background: #7c5cbf; transform: rotate(6deg);  width: 50px; }
.pencil-3 { left: 35%; background: #06d6a0; transform: rotate(-8deg); width: 55px; }

/* Butterfly flutter */
@keyframes butterfly-flutter {
  0%, 100% { transform: scaleX(1) translateY(0); }
  50%       { transform: scaleX(0.7) translateY(-4px); }
}

/* Cloud float */
@keyframes cloud-float {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

/* ── SCENE 2 ELEMENTS ── */
.tablet-mockup {
  position: relative;
  z-index: 2;
  background: #1a1a2e;
  border-radius: 18px;
  padding: 10px 10px 18px;
  box-shadow: 0 12px 40px rgba(26,26,46,0.35);
  width: min(280px, 80%);
}
.tablet-screen {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.tablet-home-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin: 8px auto 0;
}
.mini-web {
  padding: 8px;
}
.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: #1a1a2e;
  border-radius: 6px;
  margin-bottom: 8px;
}
.mini-logo { color: #fff; font-size: 11px; font-weight: 700; font-family: var(--font-display); }
.mini-btn  { color: #a07fd4; font-size: 10px; font-weight: 600; }
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 8px;
}
.mini-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--purple-border);
  background: var(--cream);
}
.mini-card img {
  width: 100%;
  height: 50px;
  object-fit: cover;
  display: block;
}
.mini-card span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--purple);
  text-align: center;
  padding: 2px;
  font-family: var(--font-display);
}
.mini-cta { display: flex; gap: 4px; }
.mini-cta-btn {
  flex: 1;
  padding: 5px 4px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 700;
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: default;
  font-family: var(--font-body);
}
.mini-cta-outline {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple) !important;
}

/* Floating doodles around tablet */
.floating-doodles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@keyframes float-out {
  from { opacity: 0; transform: translate(0,0) scale(0.5); }
  to   { opacity: 1; transform: translate(var(--tx,0), var(--ty,0)) scale(1); }
}

/* ── SCENE 3 ELEMENTS ── */
.closeup-paper {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 24px rgba(26,26,46,0.1), inset 0 0 0 1px rgba(124,92,191,0.1);
  width: 100%;
  max-width: 420px;
}
.closeup-svg {
  width: 100%;
  height: auto;
}

@keyframes spin-slow {
  from { transform: rotate(0deg) translate(-340px,-60px) rotate(0deg) translate(340px,60px); }
  to   { transform: rotate(360deg) translate(-340px,-60px) rotate(-360deg) translate(340px,60px); }
}

/* ── SCENE 4 ELEMENTS ── */
.final-doodles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.final-bg-svg {
  width: 100%;
  height: 100%;
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-8px) rotate(3deg); }
  66%  { transform: translateY(4px) rotate(-2deg); }
}

.final-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  animation: final-pop 0.7s cubic-bezier(0.34,1.56,0.64,1) both 0.2s;
}
@keyframes final-pop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.final-logo-svg {
  width: 60px;
  height: auto;
  overflow: visible;
}
.final-wordmark {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
}
.final-wordmark em { font-style: normal; color: var(--purple); }

.final-tagline {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  animation: final-pop 0.7s cubic-bezier(0.34,1.56,0.64,1) both 0.5s;
}
.final-sub {
  position: relative;
  z-index: 2;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 30ch;
  animation: final-pop 0.7s cubic-bezier(0.34,1.56,0.64,1) both 0.7s;
}
.final-cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(124,92,191,0.4);
  transition: background 0.2s, transform 0.2s;
  animation: final-pop 0.7s cubic-bezier(0.34,1.56,0.64,1) both 0.9s;
}
.final-cta-btn:hover { background: var(--ink); transform: translateY(-2px); }

/* ── SHARED CAPTION ── */
.scene-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow);
}
.scene-caption-icon { font-size: 1rem; }

/* ── PROGRESS DOTS ── */
.promo-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.4rem;
}
.promo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(124,92,191,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.promo-dot.active {
  background: var(--purple);
  transform: scale(1.3);
}

/* ── PLAY/PAUSE BUTTON ── */
.promo-play-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--purple-border);
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-play-btn:hover { background: var(--purple-pale); }

/* Show promo video from 960px (replaces the old hero-visual) */
/* ── Hero video full-width ── */
.hero-video-section {
  width: 100%;
  max-width: 100%;
  background: #000;
  overflow: hidden;
  margin-top: 68px;
  position: relative;
}
.hero-video-section video {
  width: 100%;
  max-height: 85vh;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,26,46,0.55) 100%);
  pointer-events: none;
}
.hero-video-cta {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-video-cta a {
  padding: .875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  font-family: var(--font-body);
}
.hero-video-cta a:first-child {
  background: #7c5cbf;
  color: white;
  box-shadow: 0 4px 20px rgba(124,92,191,0.5);
}
.hero-video-cta a:first-child:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,92,191,0.6); }
.hero-video-cta a:last-child {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}
.hero-video-cta a:last-child:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* Original hero becomes below video — hide on all sizes */
.hero { display: none !important; }

/* Promo video wrap hidden (replaced by real video) */
.promo-video-wrap { display: none !important; }

@media (max-width: 600px) {
  .hero-video-section {
    margin-top: 60px;
    overflow: visible;
    background: var(--cream);
  }
  .hero-video-section video { max-height: 65vw; }
  .hero-video-overlay { display: none; }
  .hero-video-cta {
    position: static;
    transform: none;
    width: 100%;
    padding: 1rem var(--gutter) 1.35rem;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    background: var(--cream);
  }
  .hero-video-cta a {
    width: min(100%, 260px);
    display: inline-flex;
    justify-content: center;
    padding: .75rem 1.25rem;
    font-size: .875rem;
  }
  .hero-video-cta a:last-child {
    background: var(--white);
    color: var(--purple);
    border-color: var(--purple-border);
    backdrop-filter: none;
    box-shadow: var(--shadow);
  }
}

/* ══════════════════════════════════════════
   Section doodle backgrounds (opacity overlays)
══════════════════════════════════════════ */

/* Categories */
.categories {
  position: relative;
}
.categories::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400' fill='none'%3E%3C!-- Flores kawaii --%3E%3Ccircle cx='60' cy='60' r='22' stroke='%231a1a2e' stroke-width='3'/%3E%3Ccircle cx='60' cy='60' r='10' stroke='%231a1a2e' stroke-width='2.5'/%3E%3Cellipse cx='60' cy='32' rx='7' ry='12' stroke='%231a1a2e' stroke-width='2'/%3E%3Cellipse cx='60' cy='88' rx='7' ry='12' stroke='%231a1a2e' stroke-width='2'/%3E%3Cellipse cx='32' cy='60' rx='12' ry='7' stroke='%231a1a2e' stroke-width='2'/%3E%3Cellipse cx='88' cy='60' rx='12' ry='7' stroke='%231a1a2e' stroke-width='2'/%3E%3C!-- Mariposa --%3E%3Cpath d='M200 80 Q180 55 165 68 Q180 88 200 80Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cpath d='M200 80 Q220 55 235 68 Q220 88 200 80Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cpath d='M200 80 Q182 98 175 92 Q185 84 200 80Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cpath d='M200 80 Q218 98 225 92 Q215 84 200 80Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cellipse cx='200' cy='80' rx='3.5' ry='9' stroke='%231a1a2e' stroke-width='2'/%3E%3C!-- Estrella kawaii --%3E%3Cpath d='M340 60 L348 82 L372 82 L352 96 L360 118 L340 104 L320 118 L328 96 L308 82 L332 82Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3C!-- Nube kawaii --%3E%3Cpath d='M60 240 Q48 230 50 220 Q46 208 58 206 Q62 196 72 198 Q82 192 88 198 Q98 196 98 206 Q108 208 106 218 Q110 228 104 234 Q106 242 98 243Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Ccircle cx='72' cy='218' r='4' fill='%231a1a2e'/%3E%3Ccircle cx='88' cy='218' r='4' fill='%231a1a2e'/%3E%3Cpath d='M70 226 Q80 234 90 226' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3C!-- Gato kawaii --%3E%3Cellipse cx='300' cy='300' rx='35' ry='30' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cpath d='M272 278 L262 258 L285 270Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cpath d='M328 278 L338 258 L315 270Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cellipse cx='288' cy='296' rx='6' ry='8' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cellipse cx='312' cy='296' rx='6' ry='8' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='289' cy='298' r='4' fill='%231a1a2e'/%3E%3Ccircle cx='313' cy='298' r='4' fill='%231a1a2e'/%3E%3Cpath d='M296 310 Q300 315 304 310' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='255' y1='306' x2='280' y2='308' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Cline x1='320' y1='308' x2='345' y2='306' stroke='%231a1a2e' stroke-width='1.5'/%3E%3C!-- Corazon --%3E%3Cpath d='M190 320 C190 310 178 304 172 312 C166 320 172 330 190 345 C208 330 214 320 208 312 C202 304 190 310 190 320Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  background-repeat: repeat;
}
.categories .container, .categories .section-header { position: relative; z-index: 1; }

/* Catalog section */
#catalogo {
  position: relative;
}
#catalogo::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500' fill='none'%3E%3C!-- Pulpo --%3E%3Ccircle cx='80' cy='80' r='45' stroke='%231a1a2e' stroke-width='2.5'/%3E%3Crect x='58' y='65' width='20' height='14' rx='7' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Crect x='82' y='65' width='20' height='14' rx='7' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cpath d='M42 118 Q30 138 36 155' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M60 128 Q52 150 58 165' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M80 132 Q78 155 82 168' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M100 128 Q106 150 100 165' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M118 118 Q130 138 124 155' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3C!-- Sol --%3E%3Ccircle cx='380' cy='100' r='38' stroke='%231a1a2e' stroke-width='2.5'/%3E%3Ccircle cx='380' cy='100' r='22' stroke='%231a1a2e' stroke-width='2'/%3E%3Cline x1='380' y1='48' x2='380' y2='38' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='380' y1='152' x2='380' y2='162' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='328' y1='100' x2='318' y2='100' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='432' y1='100' x2='442' y2='100' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='343' y1='63' x2='336' y2='56' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='417' y1='137' x2='424' y2='144' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='343' y1='137' x2='336' y2='144' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='417' y1='63' x2='424' y2='56' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3Ccircle cx='370' cy='94' r='4' fill='%231a1a2e'/%3E%3Ccircle cx='390' cy='94' r='4' fill='%231a1a2e'/%3E%3Cpath d='M368 108 Q380 118 392 108' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3C!-- Conejo kawaii --%3E%3Cellipse cx='250' cy='360' rx='40' ry='35' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cellipse cx='232' cy='325' rx='12' ry='28' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cellipse cx='268' cy='325' rx='12' ry='28' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='238' cy='356' r='5' fill='%231a1a2e'/%3E%3Ccircle cx='262' cy='356' r='5' fill='%231a1a2e'/%3E%3Cpath d='M246 372 Q250 378 254 372' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 500px 500px;
  background-repeat: repeat;
}
#catalogo .container, #catalogo .section-header { position: relative; z-index: 1; }

/* Packs section */
.packs {
  position: relative;
  overflow: hidden;
}
.packs::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='450' height='450' viewBox='0 0 450 450' fill='none'%3E%3C!-- Estrella --%3E%3Cpath d='M80 60 L90 90 L122 90 L96 108 L106 138 L80 120 L54 138 L64 108 L38 90 L70 90Z' stroke='white' stroke-width='2' fill='none'/%3E%3C!-- Diamante --%3E%3Cpath d='M300 40 L330 80 L300 120 L270 80Z' stroke='white' stroke-width='2' fill='none'/%3E%3Cline x1='270' y1='80' x2='330' y2='80' stroke='white' stroke-width='1.5'/%3E%3C!-- Corona --%3E%3Cpath d='M160 300 L160 340 L260 340 L260 300 L240 320 L210 295 L180 320Z' stroke='white' stroke-width='2' fill='none'/%3E%3Ccircle cx='210' cy='288' r='5' stroke='white' stroke-width='2' fill='none'/%3E%3C!-- Lápiz --%3E%3Crect x='360' y='200' width='14' height='60' rx='3' transform='rotate(-30 360 200)' stroke='white' stroke-width='2' fill='none'/%3E%3Cpolygon points='358,258 372,258 365,275' stroke='white' stroke-width='2' fill='none' transform='rotate(-30 365 265)'/%3E%3C!-- Cohete --%3E%3Cpath d='M60 350 Q60 300 80 280 Q100 300 100 350Z' stroke='white' stroke-width='2' fill='none'/%3E%3Ccircle cx='80' cy='300' r='10' stroke='white' stroke-width='2' fill='none'/%3E%3Cpath d='M60 350 L50 375 L80 360 L110 375 L100 350' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 450px 450px;
  background-repeat: repeat;
}
.packs .section-header, .packs .packs-grid { position: relative; z-index: 1; }

/* Custom / Personalizados */
.custom {
  position: relative;
}
.custom::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420' fill='none'%3E%3C!-- Lapiz --%3E%3Crect x='50' y='50' width='16' height='70' rx='3' stroke='%231a1a2e' stroke-width='2.5' transform='rotate(-20 58 85)'/%3E%3Cpolygon points='48,116 64,116 56,134' stroke='%231a1a2e' stroke-width='2' fill='none' transform='rotate(-20 56 125)'/%3E%3C!-- Corazon --%3E%3Cpath d='M200 80 C200 68 186 60 178 70 C170 80 178 92 200 108 C222 92 230 80 222 70 C214 60 200 68 200 80Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3C!-- Nube con estrella --%3E%3Cpath d='M330 120 Q318 110 320 98 Q316 84 330 82 Q334 70 346 74 Q358 68 364 76 Q376 74 376 86 Q388 88 386 100 Q390 112 382 118Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cpath d='M348 88 L352 100 L364 100 L354 108 L358 120 L348 112 L338 120 L342 108 L332 100 L344 100Z' stroke='%231a1a2e' stroke-width='1.5' fill='none'/%3E%3C!-- Rana kawaii --%3E%3Cellipse cx='100' cy='320' rx='45' ry='38' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Ccircle cx='82' cy='295' r='14' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='118' cy='295' r='14' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='85' cy='297' r='6' fill='%231a1a2e'/%3E%3Ccircle cx='121' cy='297' r='6' fill='%231a1a2e'/%3E%3Cpath d='M90 330 Q100 340 110 330' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round'/%3E%3C!-- Girasol --%3E%3Ccircle cx='320' cy='320' r='22' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Ccircle cx='320' cy='320' r='12' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cellipse cx='320' cy='290' rx='8' ry='14' stroke='%231a1a2e' stroke-width='2'/%3E%3Cellipse cx='320' cy='350' rx='8' ry='14' stroke='%231a1a2e' stroke-width='2'/%3E%3Cellipse cx='290' cy='320' rx='14' ry='8' stroke='%231a1a2e' stroke-width='2'/%3E%3Cellipse cx='350' cy='320' rx='14' ry='8' stroke='%231a1a2e' stroke-width='2'/%3E%3Ccircle cx='312' cy='316' r='3' fill='%231a1a2e'/%3E%3Ccircle cx='328' cy='316' r='3' fill='%231a1a2e'/%3E%3Cpath d='M310 326 Q320 334 330 326' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 420px 420px;
  background-repeat: repeat;
}
.custom .custom-inner { position: relative; z-index: 1; }

/* About section */
.about {
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='460' height='460' viewBox='0 0 460 460' fill='none'%3E%3C!-- Gato leyendo --%3E%3Cellipse cx='100' cy='120' rx='42' ry='36' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cpath d='M68 100 L58 78 L82 90Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cpath d='M132 100 L142 78 L118 90Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='86' cy='116' r='6' fill='%231a1a2e'/%3E%3Ccircle cx='114' cy='116' r='6' fill='%231a1a2e'/%3E%3Cpath d='M94 130 Q100 138 106 130' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='60' y='155' width='80' height='55' rx='4' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cline x1='100' y1='155' x2='100' y2='210' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Cline x1='68' y1='170' x2='96' y2='170' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Cline x1='68' y1='180' x2='96' y2='180' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Cline x1='68' y1='190' x2='96' y2='190' stroke='%231a1a2e' stroke-width='1.5'/%3E%3C!-- Astronauta kawaii --%3E%3Ccircle cx='340' cy='100' r='45' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Ccircle cx='340' cy='100' r='32' stroke='%231a1a2e' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='330' cy='95' r='5' fill='%231a1a2e'/%3E%3Ccircle cx='350' cy='95' r='5' fill='%231a1a2e'/%3E%3Cpath d='M328 110 Q340 120 352 110' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='310' y='145' width='60' height='75' rx='12' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Crect x='298' y='160' width='14' height='35' rx='7' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Crect x='368' y='160' width='14' height='35' rx='7' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Crect x='320' y='220' width='12' height='38' rx='6' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Crect x='348' y='220' width='12' height='38' rx='6' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3C!-- Flores pequeñas repartidas --%3E%3Ccircle cx='220' cy='260' r='16' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='220' cy='260' r='7' stroke='%231a1a2e' stroke-width='1.5' fill='none'/%3E%3Cellipse cx='220' cy='238' rx='5' ry='9' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Cellipse cx='220' cy='282' rx='5' ry='9' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Cellipse cx='198' cy='260' rx='9' ry='5' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Cellipse cx='242' cy='260' rx='9' ry='5' stroke='%231a1a2e' stroke-width='1.5'/%3E%3Ccircle cx='216' cy='258' r='2' fill='%231a1a2e'/%3E%3Ccircle cx='224' cy='258' r='2' fill='%231a1a2e'/%3E%3Cpath d='M214 264 Q220 270 226 264' stroke='%231a1a2e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 460px 460px;
  background-repeat: repeat;
}
.about .about-inner { position: relative; z-index: 1; }

body,
a,
button,
.chip,
.cart-btn,
.hamburger,
.product-card,
.pack-card,
.cat-card,
[role="button"] {
  cursor: url("assets/img/moodink-pencil-cursor.svg") 3 29, pointer;
}
body { cursor: url("assets/img/moodink-pencil-cursor.svg") 3 29, auto; }
input,
textarea,
select {
  cursor: text;
}

/* Testimonials */
.process,
.faq {
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='440' viewBox='0 0 440 440' fill='none'%3E%3C!-- Carrito --%3E%3Ccircle cx='92' cy='110' r='10' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='146' cy='110' r='10' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cpath d='M58 62 H78 L88 96 H152 L166 70 H84' stroke='%231a1a2e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C!-- Check --%3E%3Ccircle cx='335' cy='90' r='42' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cpath d='M314 90 L329 105 L358 74' stroke='%231a1a2e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C!-- Tarjeta --%3E%3Crect x='58' y='286' width='96' height='62' rx='8' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cline x1='58' y1='306' x2='154' y2='306' stroke='%231a1a2e' stroke-width='2'/%3E%3Cline x1='76' y1='328' x2='112' y2='328' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3C!-- Descarga --%3E%3Cpath d='M330 270 V326' stroke='%231a1a2e' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M304 304 L330 330 L356 304' stroke='%231a1a2e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M294 354 H366' stroke='%231a1a2e' stroke-width='3' stroke-linecap='round'/%3E%3C!-- Estrella --%3E%3Cpath d='M220 185 L228 209 L254 209 L232 224 L240 248 L220 234 L200 248 L208 224 L186 209 L212 209Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 440px 440px;
  background-repeat: repeat;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='440' viewBox='0 0 440 440' fill='none'%3E%3C!-- Pregunta --%3E%3Cpath d='M90 105 C90 78 110 60 138 60 C166 60 184 78 184 102 C184 128 160 140 146 154 C136 164 134 174 134 190' stroke='%231a1a2e' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='134' cy='222' r='7' fill='%231a1a2e'/%3E%3C!-- Bocadillo --%3E%3Cpath d='M285 72 H370 Q390 72 390 92 V146 Q390 166 370 166 H330 L302 192 V166 H285 Q265 166 265 146 V92 Q265 72 285 72Z' stroke='%231a1a2e' stroke-width='2.5' fill='none' stroke-linejoin='round'/%3E%3Ccircle cx='312' cy='120' r='4' fill='%231a1a2e'/%3E%3Ccircle cx='330' cy='120' r='4' fill='%231a1a2e'/%3E%3Ccircle cx='348' cy='120' r='4' fill='%231a1a2e'/%3E%3C!-- Corazon --%3E%3Cpath d='M95 318 C95 308 83 302 77 310 C71 318 77 328 95 342 C113 328 119 318 113 310 C107 302 95 308 95 318Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3C!-- Nube --%3E%3Cpath d='M300 310 Q286 300 288 288 Q284 274 298 272 Q302 260 314 264 Q326 258 332 266 Q344 264 344 276 Q356 278 354 290 Q358 302 350 308Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Ccircle cx='312' cy='288' r='4' fill='%231a1a2e'/%3E%3Ccircle cx='328' cy='288' r='4' fill='%231a1a2e'/%3E%3Cpath d='M310 296 Q320 304 330 296' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 440px 440px;
  background-repeat: repeat;
}

.process .section-header,
.process .process-steps,
.faq .section-header,
.faq .faq-list {
  position: relative;
  z-index: 1;
}

.testimonials {
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='440' viewBox='0 0 440 440' fill='none'%3E%3C!-- Estrellas grandes y pequeñas --%3E%3Cpath d='M60 60 L68 84 L94 84 L72 100 L80 124 L60 108 L40 124 L48 100 L26 84 L52 84Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cpath d='M320 40 L325 56 L342 56 L329 66 L334 82 L320 72 L306 82 L311 66 L298 56 L315 56Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Cpath d='M180 300 L184 312 L196 312 L186 320 L190 332 L180 324 L170 332 L174 320 L164 312 L176 312Z' stroke='%231a1a2e' stroke-width='1.8' fill='none'/%3E%3C!-- Corazones --%3E%3Cpath d='M200 100 C200 90 188 84 182 92 C176 100 182 110 200 124 C218 110 224 100 218 92 C212 84 200 90 200 100Z' stroke='%231a1a2e' stroke-width='2.5' fill='none'/%3E%3Cpath d='M360 280 C360 274 352 270 348 276 C344 282 348 288 360 298 C372 288 376 282 372 276 C368 270 360 274 360 280Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3C!-- Nubes --%3E%3Cpath d='M80 340 Q66 330 68 318 Q64 304 78 302 Q82 290 94 294 Q106 288 112 296 Q124 294 124 306 Q136 308 134 320 Q138 332 130 338Z' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3Ccircle cx='92' cy='318' r='4' fill='%231a1a2e'/%3E%3Ccircle cx='108' cy='318' r='4' fill='%231a1a2e'/%3E%3Cpath d='M90 326 Q100 334 110 326' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round'/%3E%3C!-- Lapiz --%3E%3Crect x='330' y='150' width='15' height='65' rx='3' stroke='%231a1a2e' stroke-width='2.5' transform='rotate(15 337 182)'/%3E%3Cpolygon points='328 212 343 212 335 230' stroke='%231a1a2e' stroke-width='2' fill='none' transform='rotate(15 335 221)'/%3E%3C/svg%3E");
  background-size: 440px 440px;
  background-repeat: repeat;
}
.testimonials .section-header, .testimonials .testi-grid { position: relative; z-index: 1; }
