/*
  SCHICGIRL — index.css · schicgirl.me
  Extracted from index.html (homepage app styles). schicgirl-* classes.
  © 2024-2026 Schicgirl. All rights reserved.
*/
      :root {
        --bg: #fdf8f2;
        --ink: #2d1a0e;
        --ink-soft: #5a3a22;
        --muted: rgba(45, 26, 14, 0.6);
        --gold: #c9934a;
        --gold-deep: #a06d28;
        --gold-lt: #e8c07e;
        --gold-pale: #f5e8d0;
        --rose: #e8b4a0;
        --rose-deep: #c47a65;
        --cream: rgba(255, 248, 238, 0.9);
        --glass: rgba(255, 252, 246, 0.82);
        --stroke: rgba(201, 147, 74, 0.22);
        --serif: "Cormorant Garamond", Georgia, serif;
        --sans: "Jost", system-ui, sans-serif;
        --shadow-s:
          0 1px 2px rgba(62, 38, 28, 0.05), 0 4px 12px rgba(62, 38, 28, 0.06),
          0 12px 28px -8px rgba(62, 38, 28, 0.06);
        --shadow:
          0 2px 4px rgba(62, 38, 28, 0.06), 0 8px 20px rgba(62, 38, 28, 0.1),
          0 24px 48px -12px rgba(62, 38, 28, 0.14);
        --shadow-warm:
          0 1px 2px rgba(62, 38, 28, 0.04), 0 6px 18px rgba(201, 147, 74, 0.1),
          0 18px 38px -10px rgba(201, 147, 74, 0.12);
        --r: 20px;
      }
      *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
      html { scroll-behavior: smooth; }
      body {
        font-family: var(--sans);
        color: var(--ink);
        background:
          radial-gradient(ellipse 80% 55% at 0% 0%, rgba(232, 180, 160, 0.45) 0%, transparent 55%),
          radial-gradient(ellipse 60% 50% at 100% 100%, rgba(237, 217, 176, 0.55) 0%, transparent 50%),
          radial-gradient(ellipse 50% 40% at 50% 50%, rgba(253, 246, 238, 0.8) 0%, transparent 70%),
          linear-gradient(160deg, #fdf6ee 0%, #f8ece0 100%);
        background-attachment: fixed;
        min-height: 100vh;
        padding: 0 0 72px;
        -webkit-tap-highlight-color: transparent;
      }
      img { -webkit-user-drag: none; pointer-events: auto; }
      .schicgirl-lang-bar {
        position: sticky; top: 0; z-index: 100;
        display: flex; justify-content: flex-end;
        padding: 10px 20px;
        background: rgba(253, 246, 238, 0.85);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(201, 147, 74, 0.12);
      }
      .schicgirl-lang-toggle { display: flex; background: rgba(201, 147, 74, 0.1); border-radius: 100px; padding: 3px; gap: 2px; }
      .schicgirl-lang-btn {
        padding: 6px 16px; border: none; border-radius: 100px;
        font-family: var(--sans); font-size: 12px; font-weight: 600;
        cursor: pointer; transition: all 0.2s; background: transparent;
        color: var(--muted); letter-spacing: 0.05em;
      }
      .schicgirl-lang-btn.is-active { background: var(--gold); color: #fff; box-shadow: 0 2px 8px rgba(201, 147, 74, 0.4); }
      .schicgirl-wrap { max-width: 480px; margin: 0 auto; padding: 0 18px; }
      /* ─── Hero ─── */
      .schicgirl-hero { text-align: center; padding: 40px 0 8px; }
      .schicgirl-logo-ring {
        width: 104px; height: 104px; border-radius: 50%;
        border: 2px solid rgba(201, 147, 74, 0.35); padding: 4px;
        margin: 0 auto 18px; position: relative;
        display: flex; align-items: center; justify-content: center;
      }
      .schicgirl-logo-ring::before {
        content: ""; position: absolute; inset: -6px; border-radius: 50%;
        border: 1px solid rgba(201, 147, 74, 0.15);
        animation: schicgirl-pulse 3s ease-in-out infinite;
      }
      @keyframes schicgirl-pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.04); opacity: 1; } }
      @media (prefers-reduced-motion: reduce) { .schicgirl-logo-ring::before { animation: none; } }
      .schicgirl-logo-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
      .schicgirl-logo-fb {
        width: 100%; height: 100%; border-radius: 50%;
        background: linear-gradient(135deg, #e8b4a0, #c9934a);
        display: flex; align-items: center; justify-content: center;
        font-family: var(--serif); font-size: 40px; font-weight: 600; color: #fff;
      }
      .schicgirl-brand-name {
        font-family: var(--serif); font-size: clamp(42px, 13vw, 54px);
        font-weight: 300; letter-spacing: 0.01em; color: var(--ink);
        line-height: 1; margin-bottom: 12px;
      }
      .schicgirl-brand-name span { color: var(--gold-deep); font-weight: 600; font-style: italic; }
      .schicgirl-proof-badge {
        display: inline-flex; align-items: center; gap: 7px;
        background: rgba(201, 147, 74, 0.12);
        border: 1px solid rgba(201, 147, 74, 0.3);
        border-radius: 100px; padding: 6px 15px 6px 12px;
        font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
        color: var(--gold-deep); margin-bottom: 14px;
      }
      .schicgirl-proof-badge::before { content: "✦"; font-size: 12px; color: var(--gold); }
      .schicgirl-brand-tagline {
        font-family: var(--serif); font-size: 18px; font-style: italic;
        font-weight: 400; color: var(--ink-soft); letter-spacing: 0.01em;
        line-height: 1.5; max-width: 330px; margin: 0 auto;
      }
      .schicgirl-trust { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
      .schicgirl-trust-stars { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink); }
      .schicgirl-trust-stars .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
      .schicgirl-trust-divider { width: 1px; height: 16px; background: var(--stroke); }
      .schicgirl-stat-row { display: flex; justify-content: center; gap: 8px; margin: 14px 0 0; flex-wrap: wrap; }
      .schicgirl-stat-pill {
        background: var(--glass); backdrop-filter: blur(10px);
        border: 1px solid var(--stroke); border-radius: 100px;
        padding: 6px 14px; font-size: 11.5px; font-weight: 600;
        color: var(--muted); display: flex; align-items: center; gap: 6px;
      }
      .schicgirl-stat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
      /* ─── Sections ─── */
      .schicgirl-section { margin-top: 26px; }
      .schicgirl-section-label {
        font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
        text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
        display: flex; align-items: center; gap: 8px; padding: 0 4px;
      }
      .schicgirl-section-label::after {
        content: ""; flex: 1; height: 1px;
        background: linear-gradient(90deg, rgba(201, 147, 74, 0.3), transparent);
      }
      /* ─── Conversion ladder step labels (numbered, no connecting line) ─── */
      .schicgirl-step-label { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; padding: 0 2px; }
      .schicgirl-step-num {
        position: relative; width: 30px; height: 30px; flex-shrink: 0;
        border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep));
        color: #fff; font-family: var(--serif); font-size: 15px; font-weight: 600; font-style: italic;
        display: flex; align-items: center; justify-content: center;
        box-shadow: 0 4px 12px rgba(201, 147, 74, 0.4); z-index: 1;
      }
      .schicgirl-step-titles { flex: 1; min-width: 0; }
      .schicgirl-step-eyebrow {
        font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em;
        text-transform: uppercase; color: var(--gold); line-height: 1.2;
      }
      .schicgirl-step-name {
        font-family: var(--serif); font-size: 21px; font-weight: 500;
        color: var(--ink); line-height: 1.15; margin-top: 1px;
      }
      /* ─── Gift cards ─── */
      .schicgirl-gift {
        background: linear-gradient(135deg, rgba(232, 180, 160, 0.25), rgba(253, 246, 238, 0.85));
        border: 1.5px dashed rgba(201, 147, 74, 0.35); border-radius: var(--r);
        padding: 20px 18px; margin-bottom: 10px; display: flex; gap: 14px;
        align-items: center; text-decoration: none; color: var(--ink);
        box-shadow: var(--shadow-warm); transition: all 0.22s; cursor: pointer;
      }
      .schicgirl-gift:hover { transform: translateY(-2px); border-style: solid; box-shadow: var(--shadow); }
      .schicgirl-gift:hover .schicgirl-gift-cta { background: var(--gold); color: #fff; border-color: var(--gold); }
      .schicgirl-gift-icon {
        width: 46px; height: 46px; border-radius: 14px;
        background: linear-gradient(135deg, var(--rose), var(--gold-lt));
        display: flex; align-items: center; justify-content: center;
        font-size: 22px; flex-shrink: 0;
      }
      .schicgirl-gift-body { flex: 1; min-width: 0; }
      .schicgirl-gift-label { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 3px; }
      .schicgirl-gift-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
      .schicgirl-gift-sub { font-size: 12px; color: var(--muted); }
      .schicgirl-gift-cta {
        display: inline-flex; align-items: center; gap: 5px; font-size: 11px;
        font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
        padding: 8px 13px; border-radius: 100px; white-space: nowrap;
        background: transparent; color: var(--gold); border: 1.5px solid var(--gold);
        flex-shrink: 0; transition: background 0.2s, color 0.2s; align-self: center;
      }
      /* ─── Shop block ─── */
      .schicgirl-shop {
        display: flex; gap: 16px; align-items: stretch;
        background: linear-gradient(135deg, rgba(45, 26, 14, 0.97), rgba(85, 42, 18, 0.94));
        border: 1px solid rgba(201, 147, 74, 0.45); border-radius: 22px;
        padding: 18px; margin-bottom: 10px; text-decoration: none; color: #fdf6ee;
        box-shadow: var(--shadow); transition: all 0.25s; position: relative;
        overflow: hidden; cursor: pointer;
      }
      .schicgirl-shop::before {
        content: ""; position: absolute; top: -60px; right: -60px;
        width: 200px; height: 200px; border-radius: 50%;
        background: radial-gradient(circle, rgba(201, 147, 74, 0.22) 0%, transparent 70%);
        pointer-events: none;
      }
      .schicgirl-shop:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 28px 70px rgba(45, 26, 14, 0.3), 0 0 0 1px rgba(201, 147, 74, 0.45); }
      .schicgirl-shop:active { transform: translateY(-1px) scale(0.99); }
      .schicgirl-shop-img {
        width: 96px; flex-shrink: 0; border-radius: 14px;
        background: linear-gradient(135deg, var(--gold-pale), rgba(201, 147, 74, 0.3));
        border: 1px solid rgba(201, 147, 74, 0.35); overflow: hidden;
        display: flex; align-items: center; justify-content: center;
        font-size: 40px; box-shadow: -4px 8px 18px rgba(0, 0, 0, 0.3);
        position: relative; z-index: 1; color: var(--gold);
      }
      .schicgirl-shop-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
      .schicgirl-shop-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 5px; position: relative; z-index: 1; }
      .schicgirl-shop-eyebrow {
        display: inline-flex; align-items: center; gap: 5px;
        background: rgba(201, 147, 74, 0.2); border: 1px solid rgba(201, 147, 74, 0.3);
        border-radius: 100px; padding: 3px 10px; font-size: 9px; font-weight: 700;
        letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-lt);
        align-self: flex-start; margin-bottom: 2px;
      }
      .schicgirl-shop-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--gold-lt); line-height: 1.2; margin-bottom: 4px; }
      .schicgirl-shop-desc { font-size: 12px; color: rgba(253, 240, 215, 0.7); line-height: 1.5; margin-bottom: 10px; }
      .schicgirl-shop-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 11px; }
      .schicgirl-shop-price .amt { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold-lt); line-height: 1; }
      .schicgirl-shop-price .note { font-size: 11px; color: rgba(253, 240, 215, 0.6); font-weight: 500; }
      .schicgirl-shop-cta {
        display: inline-flex; align-items: center; gap: 6px; background: var(--gold);
        color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
        padding: 9px 16px; border-radius: 100px; box-shadow: 0 5px 16px rgba(201, 147, 74, 0.4);
        white-space: nowrap; align-self: flex-start; transition: filter 0.2s;
      }
      .schicgirl-shop:hover .schicgirl-shop-cta { filter: brightness(1.1); }
      /* ─── Ebook showcase (bloc 04, défilement horizontal) ─── */
      .schicgirl-ebook-intro { margin: -2px 2px 12px; }
      .schicgirl-ebook-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; }
      .schicgirl-ebook-lead { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
      .schicgirl-ebook-scroll {
        display: flex; gap: 12px; overflow-x: auto; padding: 2px 4px 10px;
        scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; -ms-overflow-style: none;
      }
      .schicgirl-ebook-scroll::-webkit-scrollbar { display: none; }
      .schicgirl-ebook {
        flex-shrink: 0; width: 190px; scroll-snap-align: start; display: flex; flex-direction: column;
        background: linear-gradient(135deg, rgba(45,26,14,0.97), rgba(85,42,18,0.94));
        border: 1px solid rgba(201,147,74,0.4); border-radius: 18px; overflow: hidden;
        text-decoration: none; color: #fdf6ee; box-shadow: var(--shadow); transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
      }
      .schicgirl-ebook:hover { transform: translateY(-3px); border-color: var(--gold); }
      .schicgirl-ebook-cover {
        position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden;
        display: flex; align-items: center; justify-content: center; font-size: 42px; color: var(--gold);
        background: linear-gradient(135deg, var(--gold-pale), rgba(201,147,74,0.3));
      }
      .schicgirl-ebook-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
      .schicgirl-ebook-badge {
        position: absolute; top: 10px; left: 10px; font-size: 9px; font-weight: 700;
        letter-spacing: 0.08em; text-transform: uppercase; color: #3a2412;
        background: var(--gold-lt); padding: 4px 9px; border-radius: 100px;
      }
      .schicgirl-ebook-body { padding: 12px 13px 14px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
      .schicgirl-ebook-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--gold-lt); line-height: 1.2; }
      .schicgirl-ebook-desc { font-size: 11.5px; color: rgba(253,240,215,0.72); line-height: 1.45; flex: 1; }
      .schicgirl-ebook-foot { display: flex; flex-direction: column; align-items: stretch; gap: 9px; margin-top: 8px; }
      .schicgirl-ebook-priceblock { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
      .schicgirl-ebook-price { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--gold-lt); }
      .schicgirl-ebook-cfa { font-size: 10px; font-weight: 500; color: rgba(232,192,126,0.8); margin-top: 2px; }
      .schicgirl-ebook-cta { display: block; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 9px 12px; border-radius: 100px; white-space: nowrap; }
      .schicgirl-ebook:hover .schicgirl-ebook-cta { filter: brightness(1.1); }
      /* ─── Feature tool card ─── */
      .schicgirl-feature {
        background: linear-gradient(135deg, rgba(232, 180, 160, 0.3), rgba(201, 147, 74, 0.15));
        border: 1px solid rgba(201, 147, 74, 0.28); border-radius: var(--r);
        padding: 20px 18px; margin-bottom: 10px; text-decoration: none; display: block;
        color: var(--ink); box-shadow: var(--shadow-warm); transition: all 0.22s; cursor: pointer;
      }
      .schicgirl-feature.is-soon { cursor: default; opacity: 0.72; filter: saturate(0.85); }
      .schicgirl-feature.is-soon:hover { transform: none; box-shadow: var(--shadow-warm); }
      .schicgirl-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
      .schicgirl-feature:hover .schicgirl-feature-cta { background: var(--gold-deep); box-shadow: 0 7px 22px rgba(160, 109, 40, 0.45); }
      .schicgirl-feature-inner { display: flex; align-items: center; gap: 14px; }
      .schicgirl-feature-icon {
        width: 50px; height: 50px; border-radius: 16px;
        background: linear-gradient(135deg, var(--rose), var(--gold));
        display: flex; align-items: center; justify-content: center;
        font-size: 22px; flex-shrink: 0; box-shadow: 0 6px 18px rgba(201, 147, 74, 0.3);
      }
      .schicgirl-feature-text { flex: 1; min-width: 0; }
      .schicgirl-feature-label { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
      .schicgirl-feature-title { font-family: var(--sans); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
      .schicgirl-feature-sub { font-size: 12px; color: var(--muted); line-height: 1.45; }
      .schicgirl-feature-cta {
        display: inline-flex; align-items: center; gap: 6px; background: var(--gold);
        color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
        text-transform: uppercase; padding: 9px 14px; border-radius: 100px;
        box-shadow: 0 5px 16px rgba(201, 147, 74, 0.4); white-space: nowrap;
        flex-shrink: 0; transition: background 0.2s, box-shadow 0.2s; align-self: center;
      }
      /* ─── Standard tool card ─── */
      .schicgirl-tool {
        display: flex; align-items: center; gap: 14px; background: var(--glass);
        backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: var(--r); padding: 16px 18px; margin-bottom: 10px;
        text-decoration: none; color: var(--ink); box-shadow: var(--shadow-warm);
        transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
        overflow: hidden; cursor: pointer;
      }
      .schicgirl-tool::before {
        content: ""; position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(255, 248, 238, 0.6), rgba(232, 180, 160, 0.1));
        opacity: 0; transition: opacity 0.2s;
      }
      .schicgirl-tool:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(201, 147, 74, 0.35); }
      .schicgirl-tool:hover::before { opacity: 1; }
      .schicgirl-tool:hover .schicgirl-tool-cta { background: var(--gold); color: #fff; border-color: var(--gold); box-shadow: 0 5px 16px rgba(201, 147, 74, 0.4); }
      .schicgirl-tool:active { transform: scale(0.98); }
      .schicgirl-tool-icon {
        width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
        display: flex; align-items: center; justify-content: center; font-size: 20px;
        background: rgba(201, 147, 74, 0.1); border: 1px solid rgba(201, 147, 74, 0.18);
        position: relative; z-index: 1;
      }
      .schicgirl-tool-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
      .schicgirl-tool-title { font-family: var(--sans); font-size: 14.5px; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
      .schicgirl-tool-sub { font-size: 12px; color: var(--muted); line-height: 1.45; font-weight: 400; }
      .schicgirl-tool-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; position: relative; z-index: 1; }
      .schicgirl-tool-cta {
        display: inline-flex; align-items: center; gap: 5px; font-size: 11px;
        font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
        padding: 8px 13px; border-radius: 100px; white-space: nowrap;
        background: transparent; color: var(--gold); border: 1.5px solid var(--gold);
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      }
      .schicgirl-badge {
        font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
        padding: 3px 9px; border-radius: 100px; white-space: nowrap;
        background: rgba(201, 147, 74, 0.15); color: var(--gold); border: 1px solid rgba(201, 147, 74, 0.25);
      }
      /* ─── Amazon picks ─── */
      .schicgirl-picks { display: flex; flex-direction: column; gap: 10px; }
      .schicgirl-pick {
        display: flex; align-items: center; gap: 14px; background: var(--glass);
        backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.92);
        border-radius: 18px; padding: 14px 16px; text-decoration: none; color: var(--ink);
        box-shadow: var(--shadow-warm); transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative; overflow: hidden;
      }
      .schicgirl-pick:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(201, 147, 74, 0.3); }
      .schicgirl-pick:active { transform: scale(0.98); }
      .schicgirl-pick-img {
        width: 64px; height: 64px; border-radius: 14px; flex-shrink: 0;
        background: var(--gold-pale); border: 1px solid rgba(201, 147, 74, 0.2);
        overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 28px;
      }
      .schicgirl-pick-img img { width: 100%; height: 100%; object-fit: cover; }
      .schicgirl-pick-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
      .schicgirl-pick-eyebrow { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
      .schicgirl-pick-name { font-size: 14.5px; font-weight: 700; line-height: 1.25; color: var(--ink); }
      .schicgirl-pick-desc { font-size: 11.5px; color: var(--muted); line-height: 1.4; font-weight: 400; }
      .schicgirl-pick-cta {
        flex-shrink: 0; background: var(--gold); color: #fff; font-size: 12px;
        font-weight: 700; letter-spacing: 0.04em; padding: 8px 14px; border-radius: 100px;
        white-space: nowrap; box-shadow: 0 4px 12px rgba(201, 147, 74, 0.35); transition: filter 0.2s;
      }
      .schicgirl-pick:hover .schicgirl-pick-cta { filter: brightness(1.08); }
      /* ─── Testimonials ─── */
      .schicgirl-testi-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; -ms-overflow-style: none; }
      .schicgirl-testi-scroll::-webkit-scrollbar { display: none; }
      .schicgirl-testi {
        flex-shrink: 0; width: 230px; background: var(--glass); backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 18px; padding: 18px; box-shadow: var(--shadow-s);
      }
      .schicgirl-testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
      .schicgirl-testi-text { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink); line-height: 1.6; margin-bottom: 12px; }
      .schicgirl-testi-author { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
      .schicgirl-testi-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-lt); margin-bottom: 10px; display: block; }
      .schicgirl-review-cta {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
        text-decoration: none; color: var(--gold-deep);
        background: rgba(201, 147, 74, 0.1); border: 1.5px solid var(--gold);
        padding: 9px 18px; border-radius: 100px; transition: all 0.2s;
      }
      .schicgirl-review-cta:hover { background: var(--gold); color: #fff; box-shadow: 0 5px 16px rgba(201, 147, 74, 0.4); }
      /* ─── Gallery (horizontal scroll) ─── */
      .schicgirl-gallery-scroll {
        display: flex; gap: 12px; overflow-x: auto; padding: 2px 4px 10px;
        scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; -ms-overflow-style: none;
      }
      .schicgirl-gallery-scroll::-webkit-scrollbar { display: none; }
      .schicgirl-gallery-item {
        flex-shrink: 0; width: 200px; scroll-snap-align: start; border-radius: 18px;
        overflow: hidden; position: relative; background: var(--gold-pale);
        border: 1px solid rgba(201, 147, 74, 0.2); box-shadow: var(--shadow-warm);
        aspect-ratio: 4 / 5; transition: transform 0.22s;
      }
      .schicgirl-gallery-item:hover { transform: translateY(-3px); }
      .schicgirl-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
      /* ─── Lightbox (agrandir une carte de la galerie) ─── */
      .schicgirl-lightbox {
        position: fixed; inset: 0; z-index: 300; display: none;
        align-items: center; justify-content: center; padding: 24px;
        background: rgba(45, 26, 14, 0.85); backdrop-filter: blur(6px);
      }
      .schicgirl-lightbox.is-open { display: flex; }
      .schicgirl-lightbox img { max-width: 100%; max-height: 86vh; border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
      .schicgirl-lightbox-close {
        position: absolute; top: 14px; right: 18px; width: 42px; height: 42px;
        display: flex; align-items: center; justify-content: center;
        font-size: 26px; color: #fff; cursor: pointer; border-radius: 50%;
        background: rgba(255,255,255,.12); line-height: 1;
      }
      .schicgirl-gallery-cap {
        position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px;
        font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: #fff;
        background: linear-gradient(to top, rgba(45, 26, 14, 0.78) 0%, rgba(45, 26, 14, 0.35) 55%, transparent 100%);
      }
      .schicgirl-gallery-ph {
        width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
        font-size: 30px; color: var(--gold);
        background: linear-gradient(135deg, var(--gold-pale), rgba(232, 180, 160, 0.4));
      }
      .schicgirl-gallery-hint { font-size: 11px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
      .schicgirl-gallery-hint .arrow { animation: schicgirl-swipe 1.8s ease-in-out infinite; }
      @keyframes schicgirl-swipe { 0%, 100% { transform: translateX(0); opacity: 0.5; } 50% { transform: translateX(-5px); opacity: 1; } }
      @media (prefers-reduced-motion: reduce) { .schicgirl-gallery-hint .arrow { animation: none; } }
      /* ─── Social ─── */
      .schicgirl-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
      .schicgirl-social {
        flex: 1; min-width: 130px; background: var(--glass); backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.88); border-radius: 14px; padding: 14px 16px;
        display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
        box-shadow: var(--shadow-s); transition: all 0.2s; cursor: pointer;
      }
      .schicgirl-social:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--stroke); }
      .schicgirl-social-icon { font-size: 20px; display: inline-flex; align-items: center; }
      .schicgirl-social-icon svg { display: block; }
      .schicgirl-social-label { font-size: 13px; font-weight: 600; }
      .schicgirl-social-sub { font-size: 11px; color: var(--muted); }
      /* ─── Footer ─── */
      .schicgirl-footer { text-align: center; margin-top: 44px; padding: 0 18px; font-size: 11px; color: var(--muted); line-height: 1.7; }
      .schicgirl-footer strong { color: var(--gold); }
      .schicgirl-footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 147, 74, 0.25), transparent); margin: 14px 0; }
      .schicgirl-copyright { font-size: 10px; letter-spacing: 0.04em; margin-top: 8px; opacity: 0.85; }
      /* ─── Watermark ─── */
      .schicgirl-watermark {
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
        background: rgba(253, 246, 238, 0.92); backdrop-filter: blur(8px);
        border-top: 1px solid rgba(201, 147, 74, 0.15); text-align: center;
        padding: 6px 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted);
      }
    
