/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --surface:      #f7f6f3;
  --surface-2:    #efece4;
  --line:         #e6e3da;
  --line-strong:  #d2cec1;
  --ink:          #0e0e0c;
  --ink-soft:     #3a3833;
  --ink-mid:      #6a6862;
  --ink-faint:    #a8a59c;
  --gold:         #b8924c;
  --gold-dark:    #7a5e24;
  --gold-soft:    #e8d8b0;
  --gold-bg:      #faf3e2;
  --green:        #2d7a4a;
  --green-bg:     #e6f0e9;
  --red:          #c44b3a;
  --red-bg:       #fbe9e6;
  --serif:        'Inter', system-ui, sans-serif;
  --sans:         'Inter', system-ui, sans-serif;
  --max-w:        1280px;
  --radius:       6px;
  --transition:   0.2s ease;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; color: var(--gold); }

/* ── Util Bar ──────────────────────────────────────────────── */
.util-bar { background: var(--ink); color: #f5f3ee; font-size: 12px; padding: 8px 32px; display: flex; justify-content: space-between; align-items: center; }
.util-bar .left { display: flex; gap: 24px; align-items: center; color: #c4c0b5; }
.util-bar .right { display: flex; gap: 20px; align-items: center; }
.util-bar a { transition: color var(--transition); color: #c4c0b5; }
.util-bar a:hover { color: var(--gold-soft); }

/* ── Header ────────────────────────────────────────────────── */
.site-header { background: var(--bg); border-bottom: 1px solid var(--line); }
.header-main { padding: 18px 32px; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.site-logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 26px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.site-logo svg { width: 26px; height: 26px; color: var(--gold); }
.site-logo small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 0.32em; color: var(--ink-mid); margin-top: -2px; text-transform: uppercase; }
.search-bar { display: flex; border: 1.5px solid var(--ink); border-radius: 4px; overflow: hidden; height: 44px; }
.search-bar input { flex: 1; border: none; padding: 0 16px; font-family: var(--sans); font-size: 14px; background: transparent; outline: none; color: var(--ink); }
.search-bar input::placeholder { color: var(--ink-faint); }
.search-bar button { background: var(--ink); color: var(--bg); padding: 0 24px; font-size: 13px; font-weight: 600; }
.header-actions { display: flex; gap: 12px; align-items: center; }
.h-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 14px; border-radius: 4px; font-size: 11px; color: var(--ink-soft); }
.h-btn svg { width: 22px; height: 22px; }
.cat-nav { border-bottom: 1px solid var(--line); background: var(--bg); }
.cat-nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: flex; gap: 4px; align-items: center; }
.cat-nav a { padding: 14px 18px; font-size: 13px; font-weight: 500; color: var(--ink-soft); border-bottom: 2px solid transparent; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.cat-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.cat-nav a.active { color: var(--ink); border-bottom-color: var(--ink); }
.cat-nav a.deals { color: var(--red); font-weight: 600; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary { background: var(--gold); color: var(--ink); padding: 13px 24px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.55); padding: 13px 18px; font-size: 13px; font-weight: 500; border-radius: 4px; }
.see-all { color: var(--ink); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { background: linear-gradient(120deg, var(--surface) 0%, var(--surface) 60%, var(--gold-bg) 100%); padding: 36px 32px; }
.hero-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.hero-main { background: var(--ink); color: var(--bg); padding: 40px; border-radius: var(--radius); position: relative; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-main::after { content: ''; position: absolute; right: -40px; top: -40px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(184,146,76,0.3) 0%, transparent 70%); pointer-events: none; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; font-weight: 600; }
.hero-main h1 { font-family: var(--sans); font-weight: 700; font-size: 44px; line-height: 1.03; letter-spacing: -0.04em; margin-bottom: 16px; max-width: 440px; position: relative; z-index: 1; }
.hero-main h1 em { font-style: normal; font-weight: 300; color: var(--gold-soft); }
.hero-main p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 440px; margin-bottom: 28px; line-height: 1.65; position: relative; z-index: 1; }
.hero-cta-row { display: flex; gap: 12px; align-items: center; position: relative; z-index: 1; }

.hero-side { background: var(--bg); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.hero-side.ppf-roll { background: linear-gradient(180deg, var(--gold-bg) 0%, var(--bg) 100%); }
.hero-side.ppf-roll .side-tag { color: var(--gold-dark); }
.hero-side.delivery { background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%); }
.hero-side.delivery .side-tag { color: var(--ink-mid); }
.side-tag { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.hero-side h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.hero-side p { font-size: 13px; color: var(--ink-mid); line-height: 1.6; }
.hero-spec-list { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.hero-spec-list span { font-size: 12px; font-weight: 500; color: var(--ink-soft); }
.hero-badge-gold { display: inline-block; margin-top: 16px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 6px 14px; border-radius: 3px; text-transform: uppercase; }
.side-link { color: var(--ink); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip { background: var(--bg); padding: 24px 32px; border-bottom: 1px solid var(--line); }
.stats-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { display: flex; align-items: center; gap: 16px; padding: 0 24px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-item:first-child { padding-left: 0; }
.stat-icon { width: 40px; height: 40px; background: var(--gold-bg); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 20px; height: 20px; }
.stat-text strong { display: block; font-size: 14px; font-weight: 600; }
.stat-text span { font-size: 12px; color: var(--ink-mid); }

/* ── Section Layout ────────────────────────────────────────── */
.section { max-width: var(--max-w); margin: 0 auto; padding: 56px 32px 24px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; gap: 24px; }
.section-head h2 { font-family: var(--sans); font-weight: 700; font-size: 36px; letter-spacing: -0.04em; line-height: 1.05; }
.section-head h2 em { font-style: normal; font-weight: 300; color: var(--gold); }
.section-head p { font-size: 14px; color: var(--ink-mid); margin-top: 6px; }

/* ── Solutions ─────────────────────────────────────────────── */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.solution-gloss { border-top: 3px solid var(--ink); }
.solution-mat   { border-top: 3px solid var(--ink-mid); }
.solution-color { border-top: 3px solid var(--gold); }
.sol-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sol-icon { width: 44px; height: 44px; background: var(--surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.sol-icon svg { width: 22px; height: 22px; }
.sol-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mid); }
.solution-card h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; letter-spacing: -0.01em; margin-bottom: 12px; }
.solution-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 20px; }
.sol-specs { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; flex: 1; }
.sol-specs li { font-size: 13px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.sol-specs li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.sol-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px; align-self: flex-start; }

/* ── Pourquoi Aegis ────────────────────────────────────────── */
.why-aegis { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 72px 32px; margin-top: 40px; }
.why-inner { max-width: var(--max-w); margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 56px; }
.why-header h2 { font-family: var(--sans); font-weight: 700; font-size: 40px; letter-spacing: -0.04em; }
.why-header h2 em { font-style: normal; font-weight: 300; color: var(--gold); }
.why-header .eyebrow { margin-bottom: 12px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item { display: flex; flex-direction: column; gap: 16px; }
.why-num { font-family: var(--sans); font-size: 48px; font-weight: 700; color: var(--line-strong); line-height: 1; letter-spacing: -0.05em; }
.why-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.why-body p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

/* ── Product Placeholder ───────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.product-img { aspect-ratio: 4/3; background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--ink-faint); font-size: 12px; }
.product-body { padding: 16px; }
.product-brand { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-mid); text-transform: uppercase; margin-bottom: 6px; }
.product-title { font-size: 15px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.product-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.product-specs span { background: var(--surface); padding: 3px 8px; border-radius: 3px; font-size: 11px; color: var(--ink-mid); }
.product-price { padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.price-now { font-size: 20px; font-weight: 700; }
.price-now small { font-size: 12px; color: var(--ink-mid); font-weight: 500; }
.price-pro { background: var(--gold-bg); color: var(--gold-dark); font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 3px; }

/* ── Pro Banner ────────────────────────────────────────────── */
.pro-banner { background: linear-gradient(95deg, var(--ink) 0%, #1f1d18 100%); color: var(--bg); padding: 32px 40px; border-radius: var(--radius); margin: 0; display: flex; justify-content: space-between; align-items: center; gap: 32px; position: relative; overflow: hidden; }
.pro-banner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(184,146,76,0.04) 30px, rgba(184,146,76,0.04) 60px); pointer-events: none; }
.pro-banner > * { position: relative; }
.pb-text { display: flex; align-items: center; gap: 24px; }
.lock-icon { width: 56px; height: 56px; background: var(--gold); color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pro-banner h3 { font-family: var(--sans); font-weight: 700; font-size: 24px; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 4px; }
.pro-banner h3 em { font-style: normal; font-weight: 300; color: var(--gold-soft); }
.pro-banner p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 64px 32px 24px; }
.foot-grid { max-width: var(--max-w); margin: 0 auto 48px; display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 48px; }
.foot-brand p { font-size: 13px; line-height: 1.65; margin-top: 16px; max-width: 260px; }
.foot-col h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 600; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 13px; color: rgba(255,255,255,0.5); }
.foot-newsletter { display: flex; gap: 0; margin-top: 16px; }
.foot-newsletter input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-right: none; padding: 10px 14px; color: #fff; font-family: var(--sans); font-size: 13px; border-radius: 3px 0 0 3px; }
.foot-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.foot-newsletter button { background: var(--gold); color: var(--ink); padding: 10px 18px; font-size: 12px; font-weight: 700; border-radius: 0 3px 3px 0; }
.foot-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── Color Studio IA ───────────────────────────────────────── */
.simulator-wrap { background: linear-gradient(180deg, #f4ede0 0%, #ffffff 100%); padding: 80px 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.simulator-wrap::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(184,146,76,0.15) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184,146,76,0.08) 0%, transparent 60%); pointer-events: none; }
.simulator { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; position: relative; }
.sim-header { margin-bottom: 32px; }
.sim-header .new-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--gold-soft); padding: 6px 14px; border-radius: 100px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
.sim-header .new-pill::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.3); } }
.sim-header h2 { font-family: var(--sans); font-weight: 700; font-size: 48px; line-height: 1; letter-spacing: -0.05em; color: var(--ink); margin-bottom: 16px; }
.sim-header h2 em { font-style: normal; font-weight: 300; color: var(--gold); }
.sim-header p { font-size: 15px; color: var(--ink-mid); max-width: 440px; line-height: 1.6; }
.sim-stage { background: var(--bg); border: 1px solid var(--line-strong); border-radius: 8px; padding: 32px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12); position: relative; overflow: hidden; }
.sim-stage::before { content: 'AEGIS COLOR STUDIO™'; position: absolute; top: 12px; left: 16px; font-size: 9px; letter-spacing: 0.3em; color: var(--ink-faint); font-weight: 600; }
.sim-stage::after { content: 'LIVE'; position: absolute; top: 12px; right: 16px; background: var(--red); color: var(--bg); font-size: 9px; letter-spacing: 0.2em; font-weight: 700; padding: 2px 8px; border-radius: 2px; }
.sim-canvas { aspect-ratio: 16/9; background: linear-gradient(180deg, #f9f7f1 0%, #e8e4d8 100%); border-radius: 4px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-top: 20px; }
.sim-car { width: 86%; transform: translateY(-4%); filter: drop-shadow(0 16px 30px rgba(0,0,0,0.25)); transition: filter 0.6s; }
.car-body { fill: var(--car-color, #0e0e0c); transition: fill 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.car-body-light { fill: var(--car-color, #0e0e0c); filter: brightness(1.25); transition: fill 0.7s cubic-bezier(0.2,0.8,0.2,1), filter 0.6s; }
.car-body-dark { fill: var(--car-color, #0e0e0c); filter: brightness(0.55); transition: fill 0.7s cubic-bezier(0.2,0.8,0.2,1), filter 0.6s; }
.sim-canvas[data-finish="matte"] .car-body-light { filter: brightness(1.1) saturate(0.85); }
.sim-canvas[data-finish="matte"] .car-body-dark { filter: brightness(0.7) saturate(0.85); }
.sim-canvas[data-finish="chrome"] .car-body { filter: contrast(1.4) saturate(1.5); }
.sim-canvas[data-finish="chrome"] .car-body-light { filter: brightness(1.6) contrast(1.3); }
.sim-canvas[data-finish="satin"] .car-body-light { filter: brightness(1.18) saturate(1.1); }
.sim-canvas[data-finish="satin"] .car-body-dark { filter: brightness(0.62) saturate(1.1); }
.sim-readout { display: flex; justify-content: space-between; align-items: center; padding: 14px 4px 0; font-size: 12px; color: var(--ink-mid); border-top: 1px dashed var(--line); margin-top: 16px; }
.sim-readout strong { color: var(--ink); font-weight: 600; }
.sim-readout .read-finish { background: var(--surface); padding: 4px 10px; border-radius: 3px; font-weight: 500; color: var(--ink); }
.sim-controls { display: flex; flex-direction: column; gap: 22px; }
.ctrl-group label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--ink-mid); margin-bottom: 12px; }
.swatches { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.swatch { aspect-ratio: 1; border-radius: 50%; border: 2px solid var(--bg); box-shadow: 0 0 0 1px var(--line), inset 0 -8px 16px rgba(0,0,0,0.12); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.swatch:hover { transform: scale(1.12); }
.swatch.active { box-shadow: 0 0 0 2px var(--ink), inset 0 -8px 16px rgba(0,0,0,0.12); transform: scale(1.08); }
.finish-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; background: var(--surface); padding: 5px; border-radius: 6px; }
.finish-tab { padding: 10px 8px; font-size: 12px; font-weight: 500; color: var(--ink-mid); border-radius: 4px; transition: all 0.2s; text-align: center; cursor: pointer; }
.finish-tab.active { background: var(--bg); color: var(--ink); font-weight: 600; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.upload-zone { background: var(--surface); border: 1.5px dashed var(--line-strong); border-radius: 6px; padding: 18px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: all 0.25s; }
.upload-zone:hover { background: var(--gold-bg); border-color: var(--gold); }
.upload-zone svg { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; }
.upload-zone strong { display: block; font-size: 13px; color: var(--ink); margin-bottom: 2px; }
.upload-zone span { font-size: 11px; color: var(--ink-mid); }
.sim-actions button { width: 100%; padding: 14px; font-size: 13px; font-weight: 600; border-radius: 4px; transition: all 0.2s; cursor: pointer; border: none; }
.btn-sim-primary { background: var(--ink); color: var(--bg); }
.btn-sim-primary:hover { background: var(--gold); color: var(--ink); }

/* ── Rouleaux 3D ───────────────────────────────────────────── */
.rolls-section { background: var(--ink); color: var(--bg); padding: 80px 32px; overflow: hidden; position: relative; }
.rolls-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(184,146,76,0.15) 0%, transparent 60%); pointer-events: none; }
.rolls-stage { max-width: 1280px; margin: 0 auto; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; perspective: 1400px; }
.roll { width: 180px; text-align: center; cursor: pointer; }
.roll-3d { width: 120px; height: 200px; position: relative; margin: 0 auto 28px; transform-style: preserve-3d; animation: rollSpin 14s linear infinite; transform: rotateX(-12deg); }
.roll:hover .roll-3d { animation-duration: 4s; }
@keyframes rollSpin { from { transform: rotateX(-12deg) rotateY(0deg); } to { transform: rotateX(-12deg) rotateY(360deg); } }
.roll-face { position: absolute; top: 0; left: 50%; width: 34px; height: 200px; margin-left: -17px; background: var(--rc, #888); background-image: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%); transform-origin: center center; }
.roll-face:nth-child(1)  { transform: rotateY(0deg)   translateZ(63px); }
.roll-face:nth-child(2)  { transform: rotateY(30deg)  translateZ(63px); }
.roll-face:nth-child(3)  { transform: rotateY(60deg)  translateZ(63px); }
.roll-face:nth-child(4)  { transform: rotateY(90deg)  translateZ(63px); }
.roll-face:nth-child(5)  { transform: rotateY(120deg) translateZ(63px); }
.roll-face:nth-child(6)  { transform: rotateY(150deg) translateZ(63px); }
.roll-face:nth-child(7)  { transform: rotateY(180deg) translateZ(63px); }
.roll-face:nth-child(8)  { transform: rotateY(210deg) translateZ(63px); }
.roll-face:nth-child(9)  { transform: rotateY(240deg) translateZ(63px); }
.roll-face:nth-child(10) { transform: rotateY(270deg) translateZ(63px); }
.roll-face:nth-child(11) { transform: rotateY(300deg) translateZ(63px); }
.roll-face:nth-child(12) { transform: rotateY(330deg) translateZ(63px); }
.roll-cap { position: absolute; width: 126px; height: 126px; left: 50%; margin-left: -63px; border-radius: 50%; background: radial-gradient(circle at center, var(--rc,#888) 0%, var(--rc,#888) 18%, rgba(0,0,0,0.5) 22%, var(--rc,#888) 26%, rgba(0,0,0,0.4) 30%, var(--rc,#888) 36%, rgba(0,0,0,0.3) 42%, var(--rc,#888) 50%, rgba(0,0,0,0.25) 60%, var(--rc,#888) 70%, rgba(0,0,0,0.2) 82%, var(--rc,#888) 100%); border: 2px solid rgba(0,0,0,0.4); }
.roll-cap-top { top: 0; transform: translateY(-63px) rotateX(90deg); }
.roll-cap-bottom { bottom: 0; transform: translateY(63px) rotateX(90deg); }
.roll[data-finish="matte"] .roll-face { background-image: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.3) 100%); }
.roll[data-finish="satin"] .roll-face { background-image: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(255,255,255,0.18) 50%, rgba(0,0,0,0.45) 100%); }
.roll[data-finish="chrome"] .roll-face { background-image: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0.45) 30%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.45) 70%, rgba(0,0,0,0.6) 100%); }
.roll-info { transition: transform 0.3s; }
.roll:hover .roll-info { transform: translateY(-4px); }
.roll-name { font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; color: var(--bg); line-height: 1.2; margin-bottom: 6px; }
.roll-meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); }
.roll-meta span { color: rgba(255,255,255,0.5); }
.roll-tag { display: inline-block; background: var(--gold); color: var(--ink); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; padding: 3px 8px; border-radius: 2px; margin-top: 10px; }

/* ── Aperçu badge ──────────────────────────────────────────── */
.preview-badge { position: fixed; top: 16px; right: 16px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 16px; border-radius: 20px; z-index: 9999; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }