:root {
    /* retoned: boutique-inspired warm cream/nude base, pink as accent */
    --bg: #FCFAF6;
    --bg-soft: #F4ECE1;
    --bg-pink: #F9E7E3;
    --bg-pink-hot: #F4C2C2;
    --bg-cream: #EFE4D5;
    --bg-deep: #E9DAC6;
    --bg-mint: #E4EFE9;
    --ink: #241B1A;
    --ink-2: #6B5F55;
    --ink-3: #A99B8E;
    --pink: #F2BEBE;
    --pink-deep: #E59C9C;
    --pink-hot: #E2899A;
    --nude: #D6C5B2;
    --yellow: #EFD9A6;
    --border: #E7DCD0;

    --f-display: 'Fraunces', 'Cormorant Garamond', serif;
    --f-rounded: 'Quicksand', sans-serif;
    --f-body: 'DM Sans', system-ui, sans-serif;
    --f-script: 'Caveat', cursive;
  }
  *,*::before,*::after { box-sizing: border-box; }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: var(--f-body); font-size: 15px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
  ul { list-style: none; padding: 0; margin: 0; }
  h1, h2, h3, h4 { margin: 0; font-family: var(--f-rounded); font-weight: 600; letter-spacing: -0.01em; }
  p { margin: 0; color: var(--ink-2); }

  .wrap { width: 100%; max-width: 1380px; margin: 0 auto; padding: 0 28px; }

  /* shared */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--f-rounded); font-weight: 600;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--pink-hot); margin-bottom: 14px;
  }
  .eyebrow::before, .eyebrow::after { content: "✿"; color: var(--pink-hot); font-size: 12px; }
  .eyebrow::after { content: ""; }

  .display {
    font-family: var(--f-display);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 0.95;
  }
  .display em { font-style: italic; color: var(--pink-hot); font-weight: 400; }
  .scribble { font-family: var(--f-script); font-weight: 700; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 54px; padding: 0 28px;
    border-radius: 999px;
    background: var(--ink); color: #fff;
    font-family: var(--f-rounded); font-weight: 600; font-size: 14px;
    letter-spacing: 0.04em;
    transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 24px -10px rgba(0,0,0,0.2);
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(0,0,0,0.25); }
  .btn--pink { background: var(--pink); color: var(--ink); }
  .btn--pink:hover { background: var(--pink-deep); }
  .btn--white { background: #fff; color: var(--ink); }
  .btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); box-shadow: none; }
  .btn--lg { height: 60px; padding: 0 36px; font-size: 15px; }

  /* heart sticker decorator */
  .heart {
    display: inline-block;
    color: var(--pink-hot);
  }

  /* 2. header */
  .hdr {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,248,248,0.94);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border);
  }
  .hdr__row {
    max-width: 1380px; margin: 0 auto; padding: 0 28px;
    height: 78px; display: grid;
    grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  }
  .hdr__nav { display: flex; gap: 8px; }
  .hdr__nav a {
    padding: 8px 16px; border-radius: 999px;
    font-family: var(--f-rounded); font-weight: 600;
    font-size: 14px; color: var(--ink);
    transition: background .2s ease;
  }
  .hdr__nav a:hover { background: var(--pink); }

  .logo { color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
  .logo__word {
    font-family: var(--f-script); font-weight: 700; font-size: 40px;
    line-height: 1; display: inline-flex; align-items: baseline;
  }
  .logo__i { position: relative; }
  .logo__heart {
    position: absolute; width: 13px; height: 13px;
    top: -7px; left: 50%; transform: translateX(-50%);
    color: var(--pink-hot);
  }

  .hdr__icons { display: flex; justify-content: flex-end; gap: 6px; }
  .iconb {
    width: 44px; height: 44px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink); position: relative;
    transition: background .2s ease;
  }
  .iconb:hover { background: var(--pink); }
  .cart-dot {
    position: absolute; top: 4px; right: 4px;
    background: var(--pink-hot); color: #fff;
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 10px;
    width: 18px; height: 18px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg);
  }

  /* 3. HERO — oversized type, soft pink wash, sticker decorations */
  .hero {
    position: relative;
    padding: 80px 0 0;
    background: var(--bg-soft);
    overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute;
    top: -100px; right: -100px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: rgba(244,194,194,0.6);
    filter: blur(20px);
  }
  .hero::after {
    content: ""; position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,230,168,0.5);
    filter: blur(20px);
  }
  .hero__inner {
    position: relative;
    max-width: 1380px; margin: 0 auto; padding: 0 28px;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
    align-items: center;
    min-height: 540px;
  }
  .hero__copy { position: relative; z-index: 2; }
  .hero__tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: #fff; border-radius: 999px;
    border: 1.5px solid var(--ink);
    font-family: var(--f-rounded); font-weight: 600;
    font-size: 12px; letter-spacing: 0.04em;
    color: var(--ink); margin-bottom: 28px;
  }
  .hero__tag .dot { width: 8px; height: 8px; background: var(--pink-hot); border-radius: 999px; }
  .hero__title {
    font-family: var(--f-display);
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .hero__title em { font-style: italic; color: var(--pink-hot); }
  .hero__title .scribble {
    font-family: var(--f-script);
    font-style: normal; color: var(--pink-hot);
    font-weight: 700;
    font-size: 0.95em;
  }
  .hero__sub {
    font-size: 17px; color: var(--ink-2);
    margin-bottom: 34px; max-width: 440px;
  }
  .hero__cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
  .hero__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    background: var(--pink);
    transform: rotate(2deg);
    box-shadow: 0 30px 60px -30px rgba(232,160,160,0.5);
  }
  .hero__media img { width: 100%; height: 100%; object-fit: cover; }
  /* 4. CATEGORIES — chunky rounded cards */
  .cats { padding: 100px 0; background: var(--bg); }
  .cats__head {
    text-align: center; margin-bottom: 56px;
  }
  .cats__head h2 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -0.025em; line-height: 0.95;
  }
  .cats__head h2 em { font-style: italic; color: var(--pink-hot); }
  .cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .cat {
    display: block; position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--nude);
    aspect-ratio: 4 / 5;
    transition: transform .3s ease;
  }
  .cat:hover { transform: translateY(-6px) rotate(-1deg); }
  .cat:nth-child(2) { background: var(--bg-mint); }
  .cat:nth-child(3) { background: var(--yellow); }
  .cat img { width: 100%; height: 70%; object-fit: cover; }
  .cat__foot {
    padding: 18px 22px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
  }
  .cat__name {
    font-family: var(--f-display); font-weight: 400;
    font-size: 26px; color: var(--ink); letter-spacing: -0.015em;
  }
  .cat__arrow {
    width: 38px; height: 38px; border-radius: 999px;
    background: var(--ink); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: transform .25s ease;
  }
  .cat:hover .cat__arrow { transform: rotate(-20deg); }
  .cat__badge {
    position: absolute; top: 16px; left: 16px;
    background: #fff; color: var(--ink);
    padding: 6px 12px; border-radius: 999px;
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 11px; letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: rotate(-6deg);
  }

  /* 5. DROP — grid with hover pop */
  .drop {
    padding: 100px 0;
    background: var(--bg-cream);
  }
  .drop__head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
  }
  .drop__head h2 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -0.025em; line-height: 0.95;
  }
  .drop__head h2 em { font-style: italic; color: var(--pink-hot); }
  .drop__head .scribble {
    font-family: var(--f-script); font-weight: 700;
    color: var(--pink-hot); font-size: 0.85em;
    display: block; margin-bottom: 6px;
  }
  .drop__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .prod { position: relative; }
  .prod__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .25s ease;
  }
  .prod:hover .prod__media { transform: rotate(-1.5deg) scale(1.02); }
  .prod__media img { width: 100%; height: 100%; object-fit: cover; }
  .prod__heart {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink);
    transition: background .2s ease, color .2s ease;
  }
  .prod__heart:hover { background: var(--pink-hot); color: #fff; }
  .prod__sticker {
    position: absolute; bottom: -10px; left: 12px;
    background: var(--ink); color: #fff;
    padding: 6px 14px; border-radius: 999px;
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    transform: rotate(-3deg);
  }
  .prod__sticker--pink { background: var(--pink-hot); }
  .prod__meta { padding: 18px 4px 0; }
  .prod__name {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 19px; line-height: 1.2;
    margin-bottom: 6px;
  }
  .prod__row {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .prod__price {
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 15px;
  }
  .swatches { display: flex; gap: 4px; }
  .sw { width: 14px; height: 14px; border-radius: 999px; border: 1.5px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }

  .prod__add {
    margin-top: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px;
    background: var(--pink); color: var(--ink);
    border-radius: 999px;
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 13px;
    transition: background .2s ease, transform .15s ease;
  }
  .prod__add:hover { background: var(--pink-deep); transform: translateY(-1px); }

  /* 6. STORY — overlapping cards, polaroid feel */
  .story {
    padding: 120px 0;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
  }
  .story::before {
    content: "♡"; position: absolute;
    top: 20%; left: 8%; font-size: 80px;
    color: rgba(232,160,160,0.25);
  }
  .story::after {
    content: "✿"; position: absolute;
    bottom: 15%; right: 10%; font-size: 90px;
    color: rgba(232,160,160,0.3);
  }
  .story__grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 80px; align-items: center;
    position: relative;
  }
  .story__media-wrap { position: relative; }
  .story__media {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    padding: 14px 14px 50px;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
  }
  .story__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 14px;
  }
  .story__caption {
    position: absolute; bottom: 18px; left: 0; right: 0;
    text-align: center;
    font-family: var(--f-script);
    font-weight: 700; font-size: 22px;
    color: var(--ink);
  }
  .story__sticker {
    position: absolute; top: -20px; right: -30px;
    background: var(--yellow);
    border-radius: 999px;
    width: 110px; height: 110px;
    display: inline-flex; align-items: center; justify-content: center;
    text-align: center;
    font-family: var(--f-script);
    font-weight: 700;
    font-size: 18px; line-height: 1.05;
    color: var(--ink);
    transform: rotate(12deg);
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.18);
  }
  .story__body h2 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(42px, 5.4vw, 68px);
    letter-spacing: -0.025em; line-height: 0.95;
    margin-bottom: 24px;
  }
  .story__body h2 em { font-style: italic; color: var(--pink-hot); }
  .story__body p { font-size: 17px; margin-bottom: 18px; max-width: 480px; color: var(--ink-2); }
  .story__body .btn { margin-top: 14px; }

  /* 7. MOST LOVED */
  .loved { padding: 100px 0; background: var(--bg); }
  .loved__head { text-align: center; margin-bottom: 48px; }
  .loved__head h2 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -0.025em; line-height: 0.95;
  }
  .loved__head h2 em { font-style: italic; color: var(--pink-hot); }
  .loved__head .scribble {
    font-family: var(--f-script); font-weight: 700;
    color: var(--pink-hot); font-size: 26px;
    display: block; margin-bottom: 8px;
  }
  .loved__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .loved__more { text-align: center; margin-top: 56px; }

  /* 9. INSTAGRAM */
  .insta { padding: 100px 0; background: var(--bg-cream); text-align: center; }
  .insta__head { margin-bottom: 56px; }
  .insta__head h2 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: -0.025em;
  }
  .insta__head .handle {
    font-family: var(--f-script); font-weight: 700;
    color: var(--pink-hot);
  }
  .insta__head p {
    font-family: var(--f-rounded); color: var(--ink-2);
    margin-top: 12px;
  }
  .insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .insta__tile {
    display: block; aspect-ratio: 1;
    border-radius: 16px; overflow: hidden;
    position: relative;
    transition: transform .25s ease;
  }
  .insta__tile:hover { transform: rotate(-3deg) scale(1.04); }
  .insta__tile:nth-child(odd) { transform: rotate(1deg); }
  .insta__tile:nth-child(odd):hover { transform: rotate(-2deg) scale(1.04); }
  .insta__tile img { width: 100%; height: 100%; object-fit: cover; }

  /* 10. NEWSLETTER */
  .nl {
    background: var(--ink);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .nl::before {
    content: "♡♡♡"; position: absolute;
    top: 30px; left: 50%; transform: translateX(-50%);
    color: var(--pink); font-size: 18px; letter-spacing: 12px;
  }
  .nl__inner { max-width: 620px; margin: 0 auto; padding: 0 28px; text-align: center; }
  .nl__tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink-hot); color: #fff;
    padding: 8px 16px; border-radius: 999px;
    font-family: var(--f-rounded); font-weight: 700; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .nl h2 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(44px, 5.5vw, 64px);
    line-height: 0.95; letter-spacing: -0.025em;
    color: #fff; margin-bottom: 18px;
  }
  .nl h2 em { font-style: italic; color: var(--pink); }
  .nl p { color: rgba(255,255,255,0.78); margin-bottom: 32px; font-size: 16px; }
  .nl__form {
    display: flex; gap: 10px;
    background: #fff; padding: 6px;
    border-radius: 999px;
    max-width: 480px; margin: 0 auto;
  }
  .nl__form input {
    flex: 1; height: 48px; border: 0; background: transparent;
    font: inherit; color: var(--ink); outline: none;
    padding: 0 18px; font-size: 15px;
  }
  .nl__form input::placeholder { color: var(--ink-3); }
  .nl__form button {
    height: 48px; padding: 0 24px; border-radius: 999px;
    background: var(--pink-hot); color: #fff;
    font-family: var(--f-rounded); font-weight: 700; font-size: 14px;
    letter-spacing: 0.04em;
  }
  .nl__perks {
    display: flex; gap: 20px; justify-content: center;
    margin-top: 28px; flex-wrap: wrap;
    color: rgba(255,255,255,0.7); font-size: 12px;
    letter-spacing: 0.06em;
  }
  .nl__perks span { display: inline-flex; align-items: center; gap: 6px; }
  .nl__perks .dot { color: var(--pink); }

  /* 11. FOOTER */
  .ftr {
    background: var(--bg-soft);
    padding: 80px 0 28px;
    position: relative;
    overflow: hidden;
  }
  .ftr__top {
    text-align: center;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 2px dashed var(--border);
  }
  .ftr__top .logo__word { font-size: 64px; }
  .ftr__top .logo__heart { width: 18px; height: 18px; top: -9px; }
  .ftr__top p {
    margin-top: 14px;
    font-family: var(--f-script);
    font-size: 22px; color: var(--ink);
  }
  .ftr__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; margin-bottom: 56px;
  }
  .ftr__col h4 {
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 13px; letter-spacing: 0.18em;
    text-transform: uppercase; margin-bottom: 18px;
    color: var(--ink);
  }
  .ftr__col li { margin-bottom: 10px; }
  .ftr__col a {
    font-family: var(--f-body); font-size: 14px;
    color: var(--ink-2);
  }
  .ftr__col a:hover { color: var(--pink-hot); }

  .ftr__social { display: flex; gap: 8px; }
  .ftr__social a {
    width: 40px; height: 40px;
    border-radius: 999px;
    background: var(--ink); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease;
  }
  .ftr__social a:hover { background: var(--pink-hot); }

  .ftr__bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
  }
  .ftr__copy { font-family: var(--f-rounded); font-size: 12px; color: var(--ink-2); }
  .ftr__credit {
    margin-top: 22px; padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-family: var(--f-rounded); font-size: 11px;
    letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--ink-3);
  }
  .ftr__credit a {
    color: var(--ink); font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
  }
  .ftr__credit a:hover { border-bottom-color: currentColor; }
  .pays { display: flex; gap: 8px; flex-wrap: wrap; }
  .pay {
    height: 26px; padding: 0 10px;
    background: #fff; border-radius: 8px;
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 10px; letter-spacing: 0.06em;
    color: var(--ink-2);
    display: inline-flex; align-items: center;
  }

  @media (max-width: 900px) {
    .hdr__nav { display: none; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 24px; }
    .hero__media { transform: rotate(0); max-width: 480px; margin: 0 auto; }
    .cats__grid, .drop__grid, .loved__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .story__grid { grid-template-columns: 1fr; gap: 32px; padding: 60px 28px; }
    .insta__grid { grid-template-columns: repeat(3, 1fr); }
    .ftr__grid { grid-template-columns: 1fr 1fr; }
  }
  /* phones: the 2-col category cards get narrow — shrink the footer label so the
     full name stays on ONE line instead of wrapping and getting clipped by the
     card's aspect-ratio + overflow:hidden (only "base" was showing). */
  @media (max-width: 600px) {
    .cat__foot { padding: 12px 10px; gap: 4px; } /* reclaim width the arrow+padding ate */
    .cat__name {
      font-size: clamp(12px, 4.1vw, 19px); /* tuned so "base builder" fits one line to 320px */
      line-height: 1.1;
      flex: 1 1 auto; min-width: 0;        /* allow the label to shrink in the flex row */
      white-space: nowrap;                 /* guarantee one line — no vertical clip */
      overflow: hidden; text-overflow: ellipsis; /* graceful fallback instead of cut-off */
    }
    .cat__arrow { width: 26px; height: 26px; font-size: 13px; flex-shrink: 0; }
  }
  /* ─────────────────────────────────────────────────────────────
     COLOR CODE SYSTEM — 3 concepts, toggled via body[data-code]
     a = Catalogue №   b = Paint chip   c = Color family
     (badges injected by JS; only the active concept is shown)
  ───────────────────────────────────────────────────────────── */
  .code-a, .code-b, .code-c { display: none; }
  .prod__media .code-badge.code-a,
  .prod__media .code-chip.code-b,
  .prod__media .code-pill.code-c { white-space: nowrap; }

  /* A — Catalogue № : editorial serif numeral */
  .prod__media .code-badge.code-a {
    position: absolute; top: 12px; left: 12px;
    align-items: center;
    background: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    color: var(--ink);
    font-family: var(--f-display); font-style: italic; font-weight: 500;
    font-size: 15px; letter-spacing: 0.01em;
    padding: 4px 12px; border-radius: 999px;
    box-shadow: 0 4px 14px -8px rgba(0,0,0,0.3);
  }
  /* .code-sub removed with the "builder base · warm rose" line under the
     product name (client request) — the badge chip above it stays. */
  body[data-code="a"] .prod__media .code-badge.code-a { display: inline-flex; }

  /* B — Paint chip : mono SKU + true colour sample */
  .prod__media .code-chip.code-b {
    position: absolute; top: 12px; left: 12px;
    align-items: center; gap: 7px;
    background: #fff; color: var(--ink);
    padding: 5px 11px 5px 6px; border-radius: 11px;
    box-shadow: 0 8px 20px -10px rgba(0,0,0,0.35);
  }
  .prod__media .code-chip.code-b i {
    width: 19px; height: 19px; border-radius: 7px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  }
  .prod__media .code-chip.code-b b {
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-weight: 600; font-size: 12.5px; letter-spacing: 0.03em;
  }
  body[data-code="b"] .prod__media .code-chip.code-b { display: inline-flex; }

  /* C — Color family : tinted pill grouping shades by colour story */
  .prod__media .code-pill.code-c {
    position: absolute; top: 12px; left: 12px;
    align-items: center; gap: 7px;
    font-family: var(--f-rounded); font-weight: 700;
    font-size: 11px; letter-spacing: 0.03em; text-transform: lowercase;
    padding: 5px 13px 5px 8px; border-radius: 999px;
    /* background + color set inline by JS (tint of the true colour) */
  }
  .prod__media .code-pill.code-c i {
    width: 12px; height: 12px; border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.75);
  }
  body[data-code="c"] .prod__media .code-pill.code-c { display: inline-flex; }

  /* ─────────────────────────────────────────────────────────────
     PINKNESS PRESETS — body class controls how much pink shows
     default (.pink-soft) = retoned cream base above
  ───────────────────────────────────────────────────────────── */
  body.pink-blush .hero  { background: var(--bg-pink); }
  body.pink-blush .story { background: var(--bg-pink); }

  body.pink-original { --bg-pink: #FDE8E8; --pink: #F4C2C2; }
  body.pink-original .hero,
  body.pink-original .story,
  body.pink-original .ftr { background: var(--bg-pink); }
  body.pink-original .cat { background: var(--pink); }

/* =====================================================================
   PROTOTYPE ADDITIONS — chrome states, 3-step, collection page, cart
   ===================================================================== */

/* header dropdown + active nav */
.hdr { transition: box-shadow .25s ease; }
.hdr.is-scrolled { box-shadow: 0 6px 24px -18px rgba(0,0,0,0.3); }
.hdr__nav .has-drop { position: relative; display: inline-flex; }
.hdr__nav .has-drop > a { padding: 8px 16px; border-radius: 999px; font-family: var(--f-rounded); font-weight: 600; font-size: 14px; }
.hdr__nav .has-drop > a:hover { background: var(--pink); }
.hdr__menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 18px;
  padding: 8px; box-shadow: 0 24px 48px -24px rgba(0,0,0,0.3);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 60;
}
.hdr__nav .has-drop:hover .hdr__menu { opacity: 1; visibility: visible; transform: none; }
.hdr__menu a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 14px; border-radius: 12px; font-family: var(--f-rounded); font-weight: 600; font-size: 14px; color: var(--ink); }
.hdr__menu a:hover { background: var(--bg-soft); }
.hdr__menu small { font-family: var(--f-script); font-weight: 700; font-size: 15px; color: var(--pink-hot); }
.hdr__nav > a { padding: 8px 16px; border-radius: 999px; font-family: var(--f-rounded); font-weight: 600; font-size: 14px; color: var(--ink); transition: background .2s ease; }
.hdr__nav > a:hover { background: var(--pink); }
.hdr__nav > a.is-active { background: var(--ink); color: #fff; }

/* product placeholder media (base/builder/top — no photo yet) */
.prod__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 18px; }
.prod__ph::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.5) 0 2px, transparent 2px 12px); opacity: 0.45; }
.prod__ph b { position: relative; font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 24px; color: var(--ink); line-height: 1.05; }
.prod__ph span { position: relative; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); background: rgba(255,255,255,0.72); padding: 3px 9px; border-radius: 999px; }

/* wishlist active + quick-add added state */
.prod__heart.is-active { background: var(--pink-hot); color: #fff; }
.prod__add { border: 0; cursor: pointer; }
.prod__add.is-added { background: var(--ink); color: #fff; }

/* =================== 3-STEP / BUILD YOUR SET =================== */
.steps { padding: 104px 0; background: var(--bg); }
.steps__head { text-align: center; margin-bottom: 14px; }
.steps__head h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.025em; line-height: 0.95; }
.steps__head h2 em { font-style: italic; color: var(--pink-hot); }
.steps__note { text-align: center; max-width: 580px; margin: 0 auto 54px; font-size: 16.5px; color: var(--ink-2); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative; background: var(--bg-soft); border-radius: 26px;
  padding: 38px 30px 34px; transition: transform .3s ease;
  border: 1.5px solid transparent;
}
.step:hover { transform: translateY(-6px); border-color: var(--border); }
.step__n { font-family: var(--f-display); font-style: italic; font-size: 56px; line-height: 1; color: var(--pink-hot); margin-bottom: 16px; }
.step h3 { font-family: var(--f-display); font-weight: 400; font-size: 27px; letter-spacing: -0.015em; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; }
.step__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.step__opt { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid var(--border); padding: 7px 13px; border-radius: 999px; font-family: var(--f-rounded); font-weight: 600; font-size: 12.5px; color: var(--ink); transition: all .2s ease; }
.step__opt:hover { border-color: var(--ink); transform: translateY(-1px); }
.step__opt small { font-family: ui-monospace, monospace; font-size: 9.5px; color: var(--ink-3); }
.steps__cta { text-align: center; margin-top: 50px; }
.steps__cta .scribble { display: block; margin-top: 14px; font-family: var(--f-script); font-weight: 700; font-size: 20px; color: var(--pink-hot); }

/* =================== COLLECTION PAGE (PLP) =================== */
.plp { padding-bottom: 110px; }
.plp__hero { background: var(--bg-soft); padding: 52px 0 46px; position: relative; overflow: hidden; }
.plp__hero::after { content: "✿"; position: absolute; right: 6%; top: 30%; font-size: 90px; color: rgba(226,137,154,0.18); }
.plp__breadcrumb { display: flex; align-items: center; gap: 9px; font-family: var(--f-rounded); font-weight: 600; font-size: 12px; color: var(--ink-3); margin-bottom: 18px; }
.plp__breadcrumb a:hover { color: var(--pink-hot); }
.plp__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(46px, 6.5vw, 84px); letter-spacing: -0.03em; line-height: 0.92; }
.plp__title em { font-style: italic; color: var(--pink-hot); }
.plp__intro { font-size: 17px; color: var(--ink-2); max-width: 560px; margin-top: 18px; text-wrap: pretty; }
.plp__bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 36px 0 30px; }
.plp__count { font-family: var(--f-rounded); font-weight: 600; font-size: 13px; color: var(--ink-2); letter-spacing: 0.02em; }
.plp__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1.5px solid var(--border); background: #fff; padding: 9px 18px; border-radius: 999px; font-family: var(--f-rounded); font-weight: 600; font-size: 13px; color: var(--ink); cursor: pointer; transition: all .2s ease; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.plp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 20px; }
.plp__none { grid-column: 1 / -1; text-align: center; padding: 60px 0; font-family: var(--f-display); font-style: italic; font-size: 24px; color: var(--ink-3); }

/* =================== CART DRAWER =================== */
.cart-scrim { position: fixed; inset: 0; background: rgba(36,27,26,0.42); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; z-index: 200; }
.cart-scrim.is-open { opacity: 1; visibility: visible; }
.cart {
  position: fixed; top: 0; right: 0; height: 100%; width: 430px; max-width: 92vw;
  background: var(--bg); z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.1,1);
  box-shadow: -24px 0 70px -34px rgba(0,0,0,0.45);
}
.cart.is-open { transform: none; }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 26px 24px 18px; border-bottom: 2px dashed var(--border); }
.cart__head h3 { font-family: var(--f-display); font-weight: 400; font-size: 30px; letter-spacing: -0.02em; }
.cart__head .cart__n { color: var(--ink-3); }
.cart__items { flex: 1; overflow-y: auto; padding: 4px 24px; }
.cart__empty { text-align: center; padding: 70px 0; color: var(--ink-3); }
.cart__empty span { font-size: 40px; color: var(--pink); display: block; margin-bottom: 12px; }
.cart__empty p { font-family: var(--f-rounded); font-weight: 600; color: var(--ink-2); margin-bottom: 22px; }
.citem { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.citem__media { width: 66px; height: 66px; border-radius: 14px; overflow: hidden; flex-shrink: 0; background: var(--pink); }
.citem__media img { width: 100%; height: 100%; object-fit: cover; }
.citem__ph { width: 100%; height: 100%; }
.citem__body { flex: 1; min-width: 0; }
.citem__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.citem__name { font-family: var(--f-display); font-weight: 400; font-size: 18px; }
.citem__price { font-family: var(--f-rounded); font-weight: 700; font-size: 14px; white-space: nowrap; }
.citem__code { font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }
.citem__row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 999px; }
.qty button { width: 30px; height: 30px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-rounded); font-weight: 700; font-size: 15px; color: var(--ink); }
.qty button:hover { background: var(--pink); }
.qty span { min-width: 26px; text-align: center; font-family: var(--f-rounded); font-weight: 600; font-size: 13px; }
.citem__rm { font-family: var(--f-body); font-size: 11.5px; color: var(--ink-3); text-decoration: underline; }
.citem__rm:hover { color: var(--pink-hot); }
.cart__foot { padding: 20px 24px 24px; border-top: 2px dashed var(--border); }
.cart__sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart__sub span { font-family: var(--f-rounded); font-weight: 600; font-size: 14px; color: var(--ink-2); }
.cart__sub b { font-family: var(--f-display); font-weight: 400; font-size: 26px; }
.cart__checkout { width: 100%; height: 56px; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--f-rounded); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; cursor: pointer; transition: transform .15s ease, background .2s ease; }
.cart__checkout:hover { transform: translateY(-2px); background: var(--pink-hot); }
.cart__fine { text-align: center; font-size: 11px; color: var(--ink-3); margin-top: 12px; }
.cart-count.is-empty { display: none; }

@media (max-width: 900px) {
  .steps__grid { grid-template-columns: 1fr; }
  .plp__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =================== SEARCH OVERLAY =================== */
.srch-scrim { position: fixed; inset: 0; background: rgba(36,27,26,0.32); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 120; }
.srch-scrim.is-open { opacity: 1; pointer-events: auto; }
.srch { position: fixed; left: 0; right: 0; top: 0; background: var(--bg); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; transform: translateY(-100%); transition: transform .32s cubic-bezier(.5,0,.2,1); z-index: 121; box-shadow: 0 24px 60px -24px rgba(0,0,0,0.3); }
.srch.is-open { transform: translateY(0); }
.srch__inner { max-width: 880px; margin: 0 auto; padding: 30px 28px 36px; }
.srch__bar { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid var(--ink); padding-bottom: 14px; }
.srch__bar svg { flex: none; color: var(--ink); }
.srch__bar input { flex: 1; border: 0; background: none; font-family: var(--f-display); font-size: clamp(26px, 4vw, 40px); color: var(--ink); letter-spacing: -0.02em; }
.srch__bar input::placeholder { color: var(--ink-3); font-style: italic; }
.srch__bar input:focus { outline: none; }
.srch__close { font-family: var(--f-rounded); font-weight: 600; font-size: 13px; color: var(--ink-2); padding: 8px 14px; border-radius: 999px; }
.srch__close:hover { background: var(--bg-soft); color: var(--ink); }
.srch__hint { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.srch__hint span { font-family: var(--f-rounded); font-weight: 600; font-size: 12px; color: var(--ink-3); }
.srch__chip { border: 1.5px solid var(--border); background: #fff; padding: 7px 15px; border-radius: 999px; font-family: var(--f-rounded); font-weight: 600; font-size: 12.5px; color: var(--ink); }
.srch__chip:hover { border-color: var(--ink); }
.srch__results { margin-top: 26px; max-height: 50vh; overflow-y: auto; }
.srch__res-head { font-family: var(--f-rounded); font-weight: 600; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.srch__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.srch__item { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 16px; transition: background .15s ease; }
.srch__item:hover { background: var(--bg-soft); }
.srch__thumb { width: 54px; height: 54px; border-radius: 12px; flex: none; overflow: hidden; background: var(--bg-soft); }
.srch__thumb img { width: 100%; height: 100%; object-fit: cover; }
.srch__thumb .sw { width: 100%; height: 100%; display: block; }
.srch__it-name { font-family: var(--f-rounded); font-weight: 600; font-size: 15px; color: var(--ink); }
.srch__it-sub { font-size: 12px; color: var(--ink-3); }
.srch__it-price { margin-left: auto; font-family: var(--f-display); font-size: 18px; color: var(--ink); }
.srch__empty { text-align: center; padding: 30px 0; font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--ink-3); }

/* =================== PRODUCT CARD LINK =================== */
.prod__link { display: block; color: inherit; }
.prod__media { cursor: pointer; }

/* =================== PRODUCT DETAIL PAGE (PDP) =================== */
.pdp { padding: 30px 0 110px; }
.pdp__crumb { display: flex; align-items: center; gap: 9px; font-family: var(--f-rounded); font-weight: 600; font-size: 12px; color: var(--ink-3); margin-bottom: 26px; }
.pdp__crumb a:hover { color: var(--pink-hot); }
.pdp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pdp__media { position: sticky; top: 110px; }
.pdp__stage { position: relative; border-radius: 28px; overflow: hidden; background: var(--bg-soft); aspect-ratio: 4/5; }
.pdp__stage img { width: 100%; height: 100%; object-fit: cover; }
.pdp__stage-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.pdp__stage-ph b { font-family: var(--f-display); font-style: italic; font-size: 30px; color: var(--ink); }
.pdp__stage-ph span { font-family: var(--f-rounded); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.pdp__sticker { position: absolute; top: 18px; left: 18px; background: var(--ink); color: #fff; font-family: var(--f-rounded); font-weight: 700; font-size: 12px; padding: 7px 14px; border-radius: 999px; }
.pdp__sticker--pink { background: var(--pink-hot); }
.pdp__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp__thumb { width: 72px; height: 72px; border-radius: 14px; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: var(--bg-soft); }
.pdp__thumb.is-active { border-color: var(--ink); }
.pdp__thumb img, .pdp__thumb .sw { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__info { padding-top: 6px; }
.pdp__eyebrow { font-family: var(--f-rounded); font-weight: 600; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-hot); }
.pdp__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.02em; line-height: 1; margin: 10px 0 6px; }
.pdp__code { font-family: var(--f-rounded); font-weight: 600; font-size: 13px; color: var(--ink-3); }
.pdp__price-row { display: flex; align-items: center; gap: 16px; margin: 22px 0; }
.pdp__price { font-family: var(--f-display); font-size: 34px; color: var(--ink); }
.pdp__desc { font-size: 16px; color: var(--ink-2); line-height: 1.6; text-wrap: pretty; max-width: 46ch; }
.pdp__shade { margin: 26px 0; }
.pdp__shade-lab { font-family: var(--f-rounded); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-2); margin-bottom: 10px; display: block; }
.pdp__shade-lab b { color: var(--ink); }
.pdp__swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp__sw { width: 38px; height: 38px; border-radius: 999px; border: 2px solid #fff; box-shadow: 0 0 0 1.5px var(--border); cursor: pointer; transition: transform .15s ease; }
.pdp__sw:hover { transform: scale(1.1); }
.pdp__sw.is-active { box-shadow: 0 0 0 2px var(--ink); }
.pdp__buy { display: flex; gap: 12px; align-items: stretch; margin: 28px 0 22px; }
.pdp__qty { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--border); border-radius: 999px; padding: 0 6px; }
.pdp__qty button { width: 40px; height: 54px; font-family: var(--f-rounded); font-weight: 700; font-size: 18px; color: var(--ink); }
.pdp__qty button:hover { color: var(--pink-hot); }
.pdp__qty span { min-width: 28px; text-align: center; font-family: var(--f-rounded); font-weight: 600; }
.pdp__add { flex: 1; height: 58px; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--f-rounded); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; transition: transform .15s ease, background .2s ease; }
.pdp__add:hover { transform: translateY(-2px); background: var(--pink-hot); }
.pdp__add.is-added { background: var(--pink); color: var(--ink); }
.pdp__wish { width: 58px; flex: none; border: 1.5px solid var(--border); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); transition: all .2s ease; }
.pdp__wish:hover { border-color: var(--pink-hot); color: var(--pink-hot); }
.pdp__wish.is-active { background: var(--pink); border-color: var(--pink); color: var(--pink-hot); }
.pdp__addons { background: var(--bg-cream); border: 1.5px solid var(--border); border-radius: 20px; padding: 16px 18px; margin: 0 0 26px; }
.pdp__addons-lab { display: block; font-family: var(--f-script); font-weight: 700; font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.pdp__addons-list { display: flex; flex-direction: column; gap: 10px; }
.addon-card { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 8px 10px; }
.addon-card__media { width: 48px; height: 48px; flex: none; border-radius: 10px; overflow: hidden; background: var(--bg-soft); }
.addon-card__media img, .addon-card__ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.addon-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.addon-card__name { font-family: var(--f-rounded); font-weight: 600; font-size: 13.5px; color: var(--ink); line-height: 1.2; }
.addon-card__name:hover { color: var(--pink-hot); }
.addon-card__price { font-family: var(--f-rounded); font-weight: 700; font-size: 12.5px; color: var(--ink-2); }
.addon-card__add { flex: none; height: 36px; padding: 0 18px; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--f-rounded); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; transition: transform .15s ease, background .2s ease; }
.addon-card__add:hover { transform: translateY(-1px); background: var(--pink-hot); }
.addon-card__add.is-added { background: var(--pink); color: var(--ink); }
.pdp__perks { display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 22px 0; border-top: 2px dashed var(--border); border-bottom: 2px dashed var(--border); }
.pdp__perk { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-rounded); font-weight: 600; font-size: 13px; color: var(--ink-2); }
.pdp__perk b { color: var(--pink-hot); }
.pdp__acc { margin-top: 8px; }
.pdp__acc details { border-bottom: 1.5px solid var(--border); }
.pdp__acc summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: var(--f-rounded); font-weight: 600; font-size: 15px; color: var(--ink); cursor: pointer; list-style: none; }
.pdp__acc summary::-webkit-details-marker { display: none; }
.pdp__acc summary::after { content: "+"; font-size: 20px; color: var(--ink-3); }
.pdp__acc details[open] summary::after { content: "–"; }
.pdp__acc-body { padding: 0 0 18px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.pdp__related { margin-top: 90px; }
.pdp__related h2 { font-family: var(--f-display); font-weight: 400; font-size: 36px; letter-spacing: -0.02em; margin-bottom: 26px; }
.pdp__related h2 em { font-style: italic; color: var(--pink-hot); }

/* =================== DOC / LEGAL / INFO PAGES =================== */
.doc { padding: 30px 0 100px; }
.doc__hero { background: var(--bg-soft); padding: 56px 0 50px; position: relative; overflow: hidden; }
.doc__hero::after { content: "✿"; position: absolute; right: 6%; top: 26%; font-size: 90px; color: rgba(226,137,154,0.16); }
.doc__crumb { display: flex; align-items: center; gap: 9px; font-family: var(--f-rounded); font-weight: 600; font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }
.doc__crumb a:hover { color: var(--pink-hot); }
.doc__eyebrow { font-family: var(--f-rounded); font-weight: 600; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-hot); }
.doc__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(40px, 6vw, 74px); letter-spacing: -0.03em; line-height: 0.95; margin-top: 12px; }
.doc__title em { font-style: italic; color: var(--pink-hot); }
.doc__lead { font-size: 17px; color: var(--ink-2); max-width: 580px; margin-top: 16px; text-wrap: pretty; }
.doc__body { max-width: 760px; margin: 52px auto 0; }
.doc__body h2 { font-family: var(--f-display); font-weight: 400; font-size: 30px; letter-spacing: -0.02em; margin: 44px 0 14px; }
.doc__body h2:first-child { margin-top: 0; }
.doc__body h3 { font-family: var(--f-rounded); font-weight: 600; font-size: 17px; margin: 28px 0 8px; }
.doc__body p { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; text-wrap: pretty; }
.doc__body ul.bullets { list-style: none; margin: 0 0 16px; padding: 0; }
.doc__body ul.bullets li { position: relative; padding-left: 26px; font-size: 15.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 9px; }
.doc__body ul.bullets li::before { content: "✿"; position: absolute; left: 0; color: var(--pink-hot); font-size: 13px; top: 2px; }
.doc__body a.inline { color: var(--pink-hot); text-decoration: underline; text-underline-offset: 2px; }
.doc__meta { font-family: var(--f-rounded); font-weight: 600; font-size: 12px; color: var(--ink-3); margin-bottom: 30px; }
.doc__note { background: var(--bg-pink); border-radius: 20px; padding: 24px 28px; margin: 26px 0; }
.doc__note p { color: var(--ink); margin: 0; }
.doc__toc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.doc__toc a { font-family: var(--f-rounded); font-weight: 600; font-size: 12.5px; color: var(--ink); border: 1.5px solid var(--border); background: #fff; padding: 8px 15px; border-radius: 999px; }
.doc__toc a:hover { border-color: var(--ink); }

/* info cards row (shipping / returns highlights) */
.infocards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 760px; margin: 0 auto 10px; }
.infocard { background: #fff; border: 1.5px solid var(--border); border-radius: 22px; padding: 26px 24px; }
.infocard__ic { width: 46px; height: 46px; border-radius: 999px; background: var(--bg-pink); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.infocard h3 { font-family: var(--f-rounded); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.infocard p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.infocard b { color: var(--ink); }

/* shipping table */
.ship-table { width: 100%; border-collapse: collapse; margin: 10px 0 18px; }
.ship-table th, .ship-table td { text-align: left; padding: 14px 10px; border-bottom: 1.5px solid var(--border); font-size: 14.5px; }
.ship-table th { font-family: var(--f-rounded); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.ship-table td { color: var(--ink-2); }
.ship-table td b { color: var(--ink); }

/* =================== FAQ PAGE =================== */
.faq { max-width: 820px; margin: 52px auto 0; }
.faq__group { margin-bottom: 40px; }
.faq__group h2 { font-family: var(--f-display); font-weight: 400; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 12px; }
.faq__group h2 em { font-style: italic; color: var(--pink-hot); }
.faq details { border-bottom: 1.5px solid var(--border); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-family: var(--f-rounded); font-weight: 600; font-size: 16px; color: var(--ink); cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--ink-3); flex: none; }
.faq details[open] summary::after { content: "–"; color: var(--pink-hot); }
.faq__a { padding: 0 0 20px; font-size: 15px; color: var(--ink-2); line-height: 1.7; max-width: 64ch; }

/* =================== CONTACT PAGE =================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 960px; margin: 52px auto 0; align-items: start; }
.contact__aside h2 { font-family: var(--f-display); font-weight: 400; font-size: 30px; letter-spacing: -0.02em; margin-bottom: 14px; }
.contact__aside h2 em { font-style: italic; color: var(--pink-hot); }
.contact__methods { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }
.contact__method { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1.5px solid var(--border); }
.contact__method .ic { width: 42px; height: 42px; flex: none; border-radius: 999px; background: var(--bg-pink); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.contact__method h4 { font-family: var(--f-rounded); font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.contact__method p { font-size: 13.5px; color: var(--ink-2); }
.contact__method a { color: var(--pink-hot); }
.form-card { background: #fff; border: 1.5px solid var(--border); border-radius: 26px; padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-rounded); font-weight: 600; font-size: 13px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 14px; padding: 13px 15px; font-family: var(--f-body); font-size: 14.5px; color: var(--ink); background: var(--bg); transition: border-color .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink-hot); }
.field textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; margin-top: 4px; }
.form-msg { background: var(--bg-pink); border-radius: 18px; padding: 30px; text-align: center; }
.form-msg b { font-family: var(--f-display); font-style: italic; font-size: 24px; color: var(--ink); display: block; margin-bottom: 6px; }
.form-msg p { font-size: 14px; }

/* =================== ACCOUNT / AUTH PAGE =================== */
.auth { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px 90px; }
.auth__card { width: 100%; max-width: 440px; background: #fff; border: 1.5px solid var(--border); border-radius: 28px; padding: 40px 38px; box-shadow: 0 30px 70px -40px rgba(0,0,0,0.25); }
.auth__tabs { display: flex; gap: 6px; background: var(--bg-soft); border-radius: 999px; padding: 5px; margin-bottom: 28px; }
.auth__tab { flex: 1; height: 44px; border-radius: 999px; font-family: var(--f-rounded); font-weight: 600; font-size: 14px; color: var(--ink-2); transition: all .2s ease; }
.auth__tab.is-active { background: #fff; color: var(--ink); box-shadow: 0 4px 12px -6px rgba(0,0,0,0.2); }
.auth__head { text-align: center; margin-bottom: 26px; }
.auth__head h1 { font-family: var(--f-display); font-weight: 400; font-size: 34px; letter-spacing: -0.02em; }
.auth__head h1 em { font-style: italic; color: var(--pink-hot); }
.auth__head p { font-size: 14px; margin-top: 6px; }
.auth__row { display: flex; justify-content: space-between; align-items: center; margin: -4px 0 20px; }
.auth__row a { font-family: var(--f-rounded); font-weight: 600; font-size: 12.5px; color: var(--pink-hot); }
.auth__check { display: flex; align-items: center; gap: 8px; font-family: var(--f-rounded); font-weight: 600; font-size: 12.5px; color: var(--ink-2); }
.auth__alt { text-align: center; margin-top: 22px; font-size: 13px; color: var(--ink-3); }
.auth__divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--ink-3); font-family: var(--f-rounded); font-weight: 600; font-size: 12px; }
.auth__divider::before, .auth__divider::after { content: ""; flex: 1; height: 1.5px; background: var(--border); }
.auth__social { display: flex; flex-direction: column; gap: 10px; }
.auth__social button { width: 100%; height: 52px; border: 1.5px solid var(--border); border-radius: 999px; font-family: var(--f-rounded); font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: border-color .15s ease; }
.auth__social button:hover { border-color: var(--ink); }

/* =================== WISHLIST PAGE =================== */
.wish-page { padding: 30px 0 110px; }
.wish-empty { text-align: center; padding: 80px 24px; }
.wish-empty__ic { font-size: 50px; color: var(--pink-hot); }
.wish-empty h2 { font-family: var(--f-display); font-weight: 400; font-style: italic; font-size: 32px; margin: 12px 0 8px; }
.wish-empty p { margin-bottom: 24px; }
.wishlist-count.is-empty { display: none; }

/* small heart count on header */
.wish-dot { position: absolute; top: -6px; right: -6px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: var(--pink-hot); color: #fff; font-family: var(--f-rounded); font-weight: 700; font-size: 10px; display: inline-flex; align-items: center; justify-content: center; }
.iconb { position: relative; }

/* =================== LOCALE TOGGLES (currency + language) =================== */
.locale { display: inline-flex; align-items: center; gap: 2px; margin-right: 4px; padding: 0 2px; }
.locale__btn {
  min-width: 34px; height: 34px; padding: 0 9px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-rounded); font-weight: 700; font-size: 14px;
  color: var(--ink); transition: background .2s ease, color .2s ease;
}
.locale__btn:hover { background: var(--pink); }
.locale__lang { font-size: 11px; letter-spacing: 0.1em; }
.locale__sep { width: 1.5px; height: 16px; background: var(--border); margin: 0 1px; }
body.is-translating { cursor: progress; }
body.is-translating .locale__lang { opacity: 0.5; }

@media (max-width: 720px) {
  .locale__sep { display: none; }
  .locale { gap: 0; margin-right: 0; }
  .locale__btn { min-width: 30px; padding: 0 6px; }
}

@media (max-width: 900px) {
  .pdp__grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp__media { position: static; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .infocards { grid-template-columns: 1fr; }
  .srch__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Multi-image: crossfade to alternate shot on grid + PDP swipe gallery
   ============================================================ */

/* --- grid card: two stacked shots; the alternate fades in on hover --- */
.prod__swap { position: absolute; inset: 0; }
.prod__swap-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--bg-soft);
  backface-visibility: hidden;
}
/* the alternate shot sits on top, hidden until hover */
.prod__swap-img--alt { opacity: 0; }
/* keep the wishlist heart, code badge & sticker above the stacked images */
.prod__media--swap .prod__heart,
.prod__media--swap .code-badge,
.prod__media--swap .prod__sticker { z-index: 2; }

/* crossfade only on real hover + larger screens; mobile stays clean (single image) */
@media (hover: hover) and (min-width: 701px) {
  .prod__swap-img--alt { transition: opacity .5s ease; }
  .prod:hover .prod__swap-img--alt { opacity: 1; }
}

/* --- PDP: sliding gallery + dots + thumbnails --- */
.pdp__slides { display: flex; width: 100%; height: 100%; transition: transform .45s cubic-bezier(.2,.8,.25,1); will-change: transform; }
.pdp__slide { flex: 0 0 100%; width: 100%; height: 100%; }
.pdp__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pdp__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 999px; border: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.88); color: var(--ink);
  font-family: var(--f-rounded); font-size: 22px; line-height: 1; cursor: pointer;
  box-shadow: 0 6px 18px rgba(36,27,26,0.14); backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease; z-index: 4;
}
.pdp__nav:hover { background: #fff; }
.pdp__nav--prev { left: 14px; } .pdp__nav--next { right: 14px; }
@media (hover: none) { .pdp__nav { display: none; } } /* mobile: swipe instead */

.pdp__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 4; }
.pdp__dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,0.6); cursor: pointer; transition: width .25s ease, background .25s ease; }
.pdp__dot.is-active { width: 20px; background: #fff; }

.pdp__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pdp__thumb { width: 66px; height: 66px; padding: 0; border: 2px solid transparent; border-radius: 14px; overflow: hidden; background: var(--bg-soft); cursor: pointer; transition: border-color .2s ease, transform .2s ease; }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__thumb:hover { transform: translateY(-2px); }
.pdp__thumb.is-active { border-color: var(--pink-deep); }

/* ---- language toggle (EN / NL) ---- */
.lang { display: inline-flex; align-items: center; gap: 2px; margin-right: 4px;
  font-family: var(--f-rounded); font-weight: 700; font-size: 12px; }
.lang__opt { border: 0; background: none; padding: 4px 6px; border-radius: 999px;
  color: var(--ink-3); cursor: pointer; line-height: 1; letter-spacing: .04em;
  transition: color .2s ease, background .2s ease; }
.lang__opt:hover { color: var(--ink); }
.lang__opt.is-active { color: var(--pink-deep); background: rgba(255,255,255,0.7); }
.lang__sep { color: var(--ink-3); font-weight: 500; }

/* ============================================================
   Mobile menu — nude "boutique drawer" (left slide-in).
   Mirrors the cart-drawer machinery; shown only <=900px.
   Palette: nude/cream only, no pink.
   ============================================================ */
.hdr__left { display: flex; align-items: center; gap: 8px; }
.hdr__burger { display: none; padding: 0; }
.hdr__burger svg { display: block; color: var(--ink); }

.menu-scrim {
  position: fixed; inset: 0; background: rgba(36,27,26,0.42);
  backdrop-filter: blur(2px); opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s; z-index: 200;
}
.menu-scrim.is-open { opacity: 1; visibility: visible; }

.menu {
  position: fixed; top: 0; left: 0; height: 100%;
  width: min(86vw, 380px); background: var(--bg);
  z-index: 201; display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4,0,.1,1);
  box-shadow: 24px 0 70px -34px rgba(0,0,0,0.45);
}
.menu.is-open { transform: none; }

.menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 16px; border-bottom: 2px dashed var(--border); flex-shrink: 0;
}
.menu__script {
  font-family: var(--f-script); font-weight: 700; font-size: 30px; color: var(--ink);
  line-height: 1; transform: rotate(-3deg); transform-origin: left center;
}

.menu__body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 6px 14px; }
.menu__sec { padding: 12px 4px 14px; border-bottom: 2px dashed var(--border); }
.menu__sec:last-child { border-bottom: 0; }
.menu__eyebrow {
  display: flex; align-items: center; gap: 6px; margin: 4px 10px 12px;
  font-family: var(--f-rounded); font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3);
}
.menu__eyebrow::before { content: "✿"; color: var(--nude); font-size: 12px; }

.menu__cat {
  display: flex; align-items: center; gap: 14px; margin-bottom: 2px;
  padding: 8px 10px; border-radius: 16px; transition: background .18s ease;
}
.menu__cat img {
  width: 52px; height: 52px; border-radius: 14px; object-fit: cover; flex-shrink: 0;
  border: 1.5px solid var(--border); background: var(--bg-soft);
}
.menu__cat-txt { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
.menu__cat-txt b { font-family: var(--f-display); font-size: 19px; font-weight: 500; color: var(--ink); }
.menu__cat-txt small { font-family: var(--f-rounded); font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.menu__arrow { font-family: var(--f-rounded); color: var(--ink-3); font-size: 16px; transition: transform .2s ease, color .2s ease; }
.menu__cat:hover, .menu__link:hover { background: var(--bg-soft); }
.menu__cat:hover .menu__arrow, .menu__link:hover .menu__arrow { transform: translateX(3px); color: var(--ink); }
.menu__cat.is-active { background: var(--ink); }
.menu__cat.is-active .menu__cat-txt b,
.menu__cat.is-active .menu__cat-txt small,
.menu__cat.is-active .menu__arrow { color: #fff; }
.menu__cat.is-active img { border-color: rgba(255,255,255,0.35); }

.menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 12px; transition: background .18s ease;
  font-family: var(--f-rounded); font-weight: 600; font-size: 16px; color: var(--ink);
}
.menu__link--all { color: var(--ink-2); font-size: 15px; margin-top: 4px; }

.menu__foot { flex-shrink: 0; border-top: 2px dashed var(--border); padding: 16px 20px 22px; background: var(--bg-cream); }
.menu__foot-row { display: flex; align-items: center; justify-content: space-between; }
.menu__foot-row + .menu__foot-row { margin-top: 14px; }
.menu__foot-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-rounded); font-weight: 600; font-size: 15px; color: var(--ink);
}
.menu__foot-link:hover { color: var(--ink-2); }
.menu__social { font-family: var(--f-script); font-weight: 700; font-size: 20px; color: var(--ink-2); }
/* keep the reused EN/NL toggle nude (no pink) inside the menu */
.menu .lang__opt.is-active { color: var(--ink); background: var(--bg-soft); }

/* staggered entrance */
.menu__sec, .menu__foot { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.menu.is-open .menu__sec, .menu.is-open .menu__foot { opacity: 1; transform: none; }
.menu.is-open .menu__body > .menu__sec:nth-child(1) { transition-delay: .08s; }
.menu.is-open .menu__body > .menu__sec:nth-child(2) { transition-delay: .15s; }
.menu.is-open .menu__body > .menu__sec:nth-child(3) { transition-delay: .22s; }
.menu.is-open .menu__foot { transition-delay: .28s; }

@media (max-width: 900px) { .hdr__burger { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) {
  .menu { transition: none; }
  .menu__sec, .menu__foot { transition: none; opacity: 1; transform: none; }
}

/* ---- editable sale price: compare-at strikethrough (native compareAtPrice) ---- */
.prod__was, .pdp__was {
  color: var(--ink-3);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: .4em;
}
.prod__was { font-size: .85em; }
.pdp__was { font-size: .7em; }

/* ---- editable logo image (brand_settings.logo); falls back to the wordmark ---- */
.logo__img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.ftr .logo__img { height: 30px; }
