/* ==========================================================================
   RotiAuto — Design System 2026
   Dark luxury • glassmorphism • racing red
   ========================================================================== */

/* ---------- Fonturi locale (variabile) */
@font-face {
    font-family: 'Unbounded';
    src: url('../fonts/unbounded-var.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-var.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-display: swap;
}

/* ---------- Tokens */
:root {
    --bg-0: #04060a;
    --bg-1: #090d14;
    --bg-2: #0e131d;
    --panel: #101623;
    --glass: rgba(255, 255, 255, .045);
    --glass-strong: rgba(16, 22, 35, .82);
    --stroke: rgba(255, 255, 255, .09);
    --stroke-hi: rgba(255, 255, 255, .18);
    --txt: #eef1f7;
    --muted: #97a0b3;
    --blue: #ff2d2d;
    --blue-deep: #c1121f;
    --red: #ff2d55;
    --red-deep: #c1121f;
    --gold: #e8c290;
    --font-d: 'Unbounded', sans-serif;
    --font-b: 'Inter', system-ui, sans-serif;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 24px 60px -18px rgba(0, 0, 0, .65);
    --glow-blue: 0 0 24px rgba(255, 45, 45, .35), 0 0 64px rgba(255, 45, 45, .12);
    --ease: cubic-bezier(.22, .8, .26, .99);
    color-scheme: dark;
}

/* ---------- Reset / bază */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; } /* atributul hidden bate orice display din clase */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background:
        radial-gradient(1200px 700px at 80% -10%, rgba(255, 45, 45, .07), transparent 60%),
        radial-gradient(900px 600px at -10% 30%, rgba(193, 18, 31, .06), transparent 55%),
        linear-gradient(180deg, var(--bg-1), var(--bg-0) 40%);
    color: var(--txt);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* Fără scroll lateral pe mobil: „clip" taie fără să creeze container de scroll
   (overflow-x:hidden doar pe body nu oprește panning-ul pe iOS/Android). */
html, body { overflow-x: clip; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 640; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.5rem); }
p { margin: 0 0 1em; }
::selection { background: rgba(255, 45, 45, .35); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--blue); color: #ffffff; padding: .6rem 1rem; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.ra-container { width: min(1240px, 100% - 2.5rem); margin-inline: auto; }
.ra-main { min-height: 60vh; }
.ra-page { padding: 8rem 0 4rem; }
.ra-page-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.2rem; }

/* ---------- Glass */
.ra-glass {
    background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02) 38%), var(--glass-strong);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

/* ---------- Butoane */
.ra-btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .78rem 1.5rem; border-radius: 999px;
    font-weight: 640; font-size: .95rem; letter-spacing: .01em;
    border: 1px solid transparent;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s, border-color .28s, color .28s;
    position: relative; overflow: hidden; white-space: nowrap;
    will-change: transform;
}
.ra-btn svg { width: 18px; height: 18px; transition: transform .28s var(--ease); }
.ra-btn:hover svg { transform: translateX(4px); }
.ra-btn::after { /* baleiaj luminos */
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
    transform: translateX(-120%); transition: transform .7s var(--ease);
    pointer-events: none;
}
.ra-btn:hover::after { transform: translateX(120%); }
.ra-btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: #ffffff;
    box-shadow: var(--glow-blue);
}
.ra-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(255, 45, 45, .5), 0 14px 30px -12px rgba(0, 0, 0, .6); }
.ra-btn-ghost {
    border-color: var(--stroke-hi); color: var(--txt);
    background: rgba(255, 255, 255, .03);
}
.ra-btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.ra-btn-red {
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    box-shadow: 0 0 26px rgba(255, 45, 85, .4);
}
.ra-btn-red:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255, 45, 85, .55); }
.ra-btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.ra-btn-sm { padding: .5rem 1rem; font-size: .84rem; }

.ra-iconbtn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px;
    border: 1px solid transparent; color: var(--txt);
    transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease);
    position: relative;
}
.ra-iconbtn svg { width: 21px; height: 21px; }
.ra-iconbtn:hover { background: var(--glass); border-color: var(--stroke); color: var(--blue); transform: translateY(-1px); }

/* ---------- Eyebrow / section head */
.ra-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .74rem; font-weight: 640; letter-spacing: .22em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 1rem;
}
.ra-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); animation: ra-pulse 2.4s infinite; }
@keyframes ra-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.ra-section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.ra-section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.ra-section-head p { color: var(--muted); font-size: 1.05rem; }
.ra-section-head-row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ---------- Reveal la scroll */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    * { animation-duration: .001s !important; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
body.admin-bar .ra-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .ra-header { top: 46px; } }
.ra-header {
    position: fixed; inset: 0 0 auto; z-index: 90;
    transition: background .35s, box-shadow .35s, border-color .35s;
    border-bottom: 1px solid transparent;
}
.ra-header.is-scrolled {
    background: rgba(6, 9, 14, .78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--stroke);
    box-shadow: 0 10px 40px -20px rgba(0, 0, 0, .8);
}
/* Topbar (telefon, program, promo) */
.ra-topbar {
    border-bottom: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .02);
    overflow: hidden;
    max-height: 40px;
    transition: max-height .35s var(--ease), opacity .3s;
}
.ra-header.is-scrolled .ra-topbar { max-height: 0; opacity: 0; }
.ra-topbar-inner { display: flex; align-items: center; gap: 1.6rem; height: 38px; font-size: .8rem; color: var(--muted); }
.ra-topbar-inner svg { width: 15px; height: 15px; }
.ra-topbar-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 640; color: var(--txt); transition: color .2s; }
.ra-topbar-phone:hover { color: var(--blue); }
.ra-topbar-hours { display: inline-flex; align-items: center; gap: .45rem; }
.ra-topbar-links { display: inline-flex; align-items: center; gap: 1.1rem; margin-left: auto; }
.ra-topbar-links a { color: var(--muted); transition: color .2s; }
.ra-topbar-links a:hover { color: var(--txt); }
.ra-topbar-promo { display: inline-flex; align-items: center; gap: .5rem; margin-left: 1.6rem; color: var(--blue); font-weight: 600; }
@media (max-width: 980px) {
    .ra-topbar-hours, .ra-topbar-links { display: none; }
    .ra-topbar-promo { margin-left: auto; }
}
@media (max-width: 760px) {
    .ra-topbar-promo { font-size: .74rem; }
}

.ra-header-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
/* Header + topbar mai late decât conținutul (1240) ca meniul complet să respire pe ecrane mari. */
.ra-header-inner, .ra-topbar-inner { width: min(1400px, 100% - 2.5rem); }

.ra-logo { display: inline-flex; align-items: center; gap: .6rem; }
.ra-logo-img { height: 52px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .5)); }
.ra-logo-img-footer { height: 64px; }
@media (max-width: 640px) { .ra-logo-img { height: 42px; } }

/* Badge-uri ANPC SAL / SOL */
.ra-anpc-badge { margin-top: .3rem; }
.ra-anpc-badge img { height: 44px; width: auto; border-radius: 6px; background: #fff; padding: 2px 6px; }
.ra-anpc-badge:hover { padding-left: 0 !important; opacity: .9; }
.ra-logo-mark { width: 34px; height: 34px; color: var(--blue); filter: drop-shadow(0 0 8px rgba(255, 45, 45, .5)); }
.ra-logo-mark svg { width: 100%; height: 100%; animation: ra-spin-slow 14s linear infinite; }
@keyframes ra-spin-slow { to { transform: rotate(360deg); } }
.ra-logo-text { font-family: var(--font-d); font-weight: 760; font-size: 1.12rem; letter-spacing: .04em; }
.ra-logo-text em { font-style: normal; color: var(--blue); }

.ra-nav { margin-left: auto; }
.ra-nav-list { display: flex; align-items: center; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.ra-nav-list > li { position: relative; }
.ra-nav-list > li > a {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .55rem .8rem; border-radius: 10px;
    font-weight: 560; font-size: .92rem; color: var(--txt);
    white-space: nowrap;
    transition: color .25s, background .25s;
}
.ra-nav-list > li > a:hover,
.ra-nav-list > li > a[aria-current="page"] { color: var(--blue); background: var(--glass); }
.ra-nav-deals { color: var(--red) !important; font-weight: 700 !important; }
/* Buton evidențiat „Potrivire Vehicul" */
.ra-nav-pill {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)) !important;
    color: #fff !important; font-weight: 680 !important;
    box-shadow: 0 0 20px rgba(255, 45, 45, .28);
    margin-left: .25rem;
}
.ra-nav-pill svg { width: 18px; height: 18px; }
.ra-nav-pill:hover { filter: brightness(1.08); transform: translateY(-1px); }
.ra-caret { width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }

/* Mega menu */
.ra-mega {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(12px) scale(.98);
    width: 620px; padding: 1.6rem; display: grid; grid-template-columns: 1fr 1fr 200px; gap: 1.6rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.has-mega:hover .ra-mega, .has-mega:focus-within .ra-mega {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}
.ra-mega::before { content: ''; position: absolute; inset: -16px 0 auto; height: 18px; }
/* Mega „Magazin" cu 3 coloane egale (jante / anvelope / mai mult) */
.ra-mega-shop { width: 680px; grid-template-columns: 1fr 1fr 1fr; }
.ra-mega-deals { color: var(--red) !important; font-weight: 700 !important; }
/* Rând diametre pe toată lățimea mega-ului (o singură linie) */
.ra-mega-sizes-row { grid-column: 1 / -1; border-top: 1px solid var(--stroke); margin-top: .5rem; padding-top: 1.1rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.ra-mega-sizes-row .ra-mega-title { margin-bottom: 0; flex: none; }
.ra-mega-col { display: flex; flex-direction: column; gap: .15rem; }
.ra-mega-title { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.ra-mega-col > a { padding: .45rem .6rem; margin-inline: -.6rem; border-radius: 8px; font-size: .93rem; color: var(--txt); transition: background .2s, color .2s, padding-left .25s var(--ease); }
.ra-mega-col > a:hover { background: var(--glass); color: var(--blue); padding-left: .85rem; }
.ra-mega-sizes { display: flex; flex-wrap: wrap; gap: .5rem; }
.ra-size-chip {
    padding: .38rem .8rem; border-radius: 999px; border: 1px solid var(--stroke);
    font-size: .84rem; font-weight: 600; color: var(--txt);
    transition: border-color .25s, color .25s, box-shadow .25s, transform .25s var(--ease);
}
.ra-size-chip:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 14px rgba(255, 45, 45, .3); transform: translateY(-2px); }
.ra-mega-promo {
    border-radius: var(--radius-sm); padding: 1rem;
    background: linear-gradient(160deg, rgba(255, 45, 45, .14), rgba(193, 18, 31, .05));
    border: 1px solid rgba(255, 45, 45, .25);
    display: flex; flex-direction: column; gap: .3rem;
}
.ra-mega-promo-tag { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.ra-mega-promo strong { font-size: .95rem; }
.ra-mega-promo p { font-size: .8rem; color: var(--muted); margin: 0; }

.ra-header-actions { display: flex; align-items: center; gap: .3rem; }
.ra-cart-count, .ra-wish-count {
    position: absolute; top: 2px; right: 0;
    min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px;
    background: var(--blue); color: #ffffff;
    font-size: .66rem; font-weight: 760; line-height: 17px; text-align: center;
    transform: scale(0); transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.ra-cart-count.has-items, .ra-wish-count.has-items { transform: scale(1); }
.ra-cart-count.ra-bump { animation: ra-bump .5s var(--ease); }
@keyframes ra-bump { 30% { transform: scale(1.45); } 100% { transform: scale(1); } }

.ra-searchbar { border-top: 1px solid var(--stroke); background: rgba(6, 9, 14, .92); backdrop-filter: blur(20px); }
.ra-searchbar-form { display: flex; gap: .8rem; padding: 1rem 0; }
.ra-searchbar input[type="search"] {
    flex: 1; background: var(--glass); border: 1px solid var(--stroke); border-radius: 999px;
    padding: .8rem 1.4rem; color: var(--txt); font-size: 1rem; outline: none;
    transition: border-color .25s, box-shadow .25s;
}
.ra-searchbar input[type="search"]:focus { border-color: var(--blue); box-shadow: var(--glow-blue); }

.ra-burger { display: none; flex-direction: column; gap: 5px; padding: .6rem; }
.ra-burger span { width: 22px; height: 2px; background: var(--txt); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.ra-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ra-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ra-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ra-mobile-menu {
    position: fixed; z-index: 89; inset: 118px 1rem auto; padding: 1.2rem;
    transform-origin: top; transition: transform .3s var(--ease), opacity .3s;
}
.ra-mobile-menu[hidden] { display: none; }
.ra-mobile-menu { max-height: calc(100vh - 130px); overflow-y: auto; }
.ra-mobile-menu nav { display: flex; flex-direction: column; gap: .3rem; }
.ra-mm-title { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: .9rem 0 .5rem; }
.ra-mm-title:first-child { margin-top: 0; }
.ra-mm-cats { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.ra-mm-cat {
    display: flex; flex-direction: column; gap: .15rem;
    padding: .7rem .85rem; border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    background: var(--glass); transition: border-color .25s;
}
.ra-mm-cat:active, .ra-mm-cat:hover { border-color: var(--blue); }
.ra-mm-cat strong { font-size: .88rem; font-weight: 640; }
.ra-mm-cat small { color: var(--muted); font-size: .74rem; }
.ra-mm-sizes { margin-bottom: .3rem; }
.ra-mm-link { display: flex; align-items: center; gap: .75rem; padding: .7rem .3rem; font-weight: 560; font-size: .95rem; border-bottom: 1px solid var(--stroke); }
.ra-mm-link svg { width: 20px; height: 20px; flex: none; color: var(--muted); }
.ra-mm-link:hover svg { color: var(--blue); }
.ra-mm-deals svg { color: inherit; }
.ra-mm-deals { color: #ff8fa3; }
.ra-mm-phone { justify-content: center; margin-top: 1rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.ra-hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 7rem 0 4rem; }
.ra-hero::before {
    /* Fotografie reală de atelier — prezentă pe dreapta, estompată spre stânga (unde e textul) */
    content: ''; position: absolute; inset: 0;
    background: url('../img/photos/hero-garage.jpg') center 32% / cover no-repeat;
    opacity: .55;
    mask-image: radial-gradient(115% 105% at 82% 38%, #000 22%, rgba(0,0,0,.35) 52%, transparent 74%);
    -webkit-mask-image: radial-gradient(115% 105% at 82% 38%, #000 22%, rgba(0,0,0,.35) 52%, transparent 74%);
    pointer-events: none;
}
.ra-hero::after {
    /* Scrim pentru lizibilitate: bază întunecată stânga → transparent dreapta */
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(90deg, var(--bg-0) 8%, rgba(4,6,10,.72) 34%, rgba(4,6,10,.15) 60%, transparent 78%),
                linear-gradient(180deg, transparent 60%, var(--bg-0) 99%);
}
.ra-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ra-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 45, 45, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 45, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 75%);
}
.ra-hero-floor {
    position: absolute; inset: auto 0 0; height: 34%;
    background: linear-gradient(180deg, transparent, rgba(255, 45, 45, .045) 45%, transparent);
    transform: perspective(600px) rotateX(58deg) scale(2.4);
    transform-origin: bottom;
    background-image: linear-gradient(rgba(255, 45, 45, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 45, 45, .12) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(180deg, transparent, #000 40%);
    opacity: .5;
}
.ra-beam {
    position: absolute; width: 55vw; height: 130px; filter: blur(50px);
    background: linear-gradient(90deg, transparent, rgba(255, 45, 45, .16), transparent);
    animation: ra-beam 9s var(--ease) infinite;
    opacity: 0;
}
.ra-beam-1 { top: 16%; left: -20%; transform: rotate(-14deg); }
.ra-beam-2 { top: 55%; right: -25%; transform: rotate(10deg); animation-delay: 4.5s; background: linear-gradient(90deg, transparent, rgba(255, 45, 85, .09), transparent); }
@keyframes ra-beam { 0% { opacity: 0; translate: -12vw 0; } 45% { opacity: 1; } 100% { opacity: 0; translate: 22vw 0; } }

.ra-particles { position: absolute; inset: 0; }
.ra-particles i {
    position: absolute; width: 3px; height: 3px; border-radius: 50%;
    background: var(--blue); opacity: 0;
    box-shadow: 0 0 8px var(--blue);
    animation: ra-float var(--dur, 9s) linear infinite;
    animation-delay: var(--del, 0s);
    left: var(--x, 50%); top: 105%;
}
@keyframes ra-float {
    0% { transform: translateY(0); opacity: 0; }
    12% { opacity: var(--op, .55); }
    88% { opacity: var(--op, .55); }
    100% { transform: translateY(-108vh); opacity: 0; }
}

.ra-hero-inner { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .88fr); align-items: center; gap: 2.4rem; position: relative; z-index: 3; }
.ra-hero-title {
    font-size: clamp(1.9rem, 3.5vw, 3.15rem);
    font-weight: 720;
    margin: 0 0 1.2rem;
    max-width: 25ch;
}
/* Janta din hero — puțin mai mică, ca titlul să încapă pe 2 rânduri */
.ra-hero-wheel .ra-wheel-stage { width: min(440px, 80vw); }
.ra-hero-title em {
    font-style: normal;
    background: linear-gradient(100deg, var(--blue) 10%, #ff9b9b 45%, var(--blue-deep));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 0 18px rgba(255, 45, 45, .35));
}
.ra-hero-sub { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.16rem); max-width: 34rem; margin-bottom: 2rem; }
.ra-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.ra-hero-stats { display: flex; gap: 2.6rem; margin: 0; padding: 0; flex-wrap: wrap; }
.ra-hero-stats div { position: relative; padding-left: 1rem; }
.ra-hero-stats div::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--blue), transparent); border-radius: 2px; }
.ra-hero-stats dt { font-family: var(--font-d); font-weight: 720; font-size: 1.5rem; }
.ra-hero-stats dd { margin: 0; color: var(--muted); font-size: .85rem; }

.ra-fitment-help { margin: 1.1rem 0 0; color: var(--muted); font-size: .92rem; }
.ra-fitment-help a { color: var(--blue); font-weight: 600; }

/* ============ SELECTOR VEHICUL PE COLOANE (marcă → model → generație) ============ */
.ra-vsel { --vsel-h: 320px; }

.ra-vsel-steps {
    display: flex; gap: .5rem; list-style: none; margin: 0 0 1.2rem; padding: 0; flex-wrap: wrap;
}
.ra-vsel-steps li {
    display: flex; align-items: center; gap: .6rem;
    padding: .6rem 1.1rem .6rem .7rem; border-radius: 999px;
    border: 1px solid var(--stroke); background: var(--glass);
    color: var(--muted); font-size: .9rem; transition: all .25s var(--ease);
}
.ra-vsel-steps b {
    width: 26px; height: 26px; flex: none; border-radius: 50%;
    display: grid; place-items: center; font-size: .82rem; font-weight: 800;
    background: rgba(255, 255, 255, .08); color: var(--muted);
}
.ra-vsel-steps span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; color: inherit; }
.ra-vsel-steps em { font-style: normal; font-size: .72rem; font-weight: 500; opacity: .75; text-transform: uppercase; letter-spacing: .06em; }
.ra-vsel-steps li.is-active { border-color: rgba(255, 45, 45, .5); background: rgba(255, 45, 45, .1); color: #fff; }
.ra-vsel-steps li.is-active b { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; }
.ra-vsel-steps li.is-done b { background: var(--blue); color: #fff; }

.ra-vsel-cols {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.05fr);
    gap: 1rem; align-items: stretch; /* panouri de aceeași înălțime, ca într-un tablou de bord */
}
.ra-vsel-col, .ra-vsel-summary {
    background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015) 40%), var(--glass-strong);
    border: 1px solid var(--stroke); border-radius: var(--radius);
    padding: 1rem; display: flex; flex-direction: column; min-width: 0;
}
.ra-vsel-title {
    font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); margin: 0 0 .8rem;
}
.ra-vsel-col.is-locked { opacity: .55; pointer-events: none; }

/* Zona listei: aceeași înălțime în toate coloanele, indiferent de conținut.
   Mesajul de ajutor stă centrat peste lista goală, nu împins la baza coloanei. */
.ra-vsel-listwrap { position: relative; flex: 1; min-height: var(--vsel-h); }
.ra-vsel-hint {
    display: none; position: absolute; inset: 0; margin: 0;
    align-items: center; justify-content: center; text-align: center;
    font-size: .84rem; color: var(--muted); padding: 1rem;
}
.ra-vsel-col.is-locked .ra-vsel-hint { display: flex; }

/* Ține lista de generații la același nivel cu celelalte (nu are casetă de căutare). */
.ra-vsel-spacer { height: 38px; margin-bottom: .7rem; flex: none; }

.ra-vsel-search { position: relative; display: block; margin-bottom: .7rem; }
.ra-vsel-search svg { position: absolute; left: .7rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--muted); pointer-events: none; }
.ra-vsel-search input {
    width: 100%; padding: .6rem .8rem .6rem 2.1rem;
    background: rgba(0, 0, 0, .28); border: 1px solid var(--stroke); border-radius: 10px;
    color: var(--txt); font-size: .9rem; font-family: inherit;
}
.ra-vsel-search input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(255, 45, 45, .16); }
.ra-vsel-search input::placeholder { color: var(--muted); }

.ra-vsel-list {
    list-style: none; margin: 0; padding: 0;
    height: 100%; max-height: var(--vsel-h); overflow-y: auto; overscroll-behavior: contain;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.22) transparent;
}
.ra-vsel-list::-webkit-scrollbar { width: 8px; }
.ra-vsel-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .18); border-radius: 8px; }
.ra-vsel-list li {
    padding: .58rem .75rem; border-radius: 8px; cursor: pointer;
    font-size: .92rem; color: #dbe2ee; transition: background .18s, color .18s;
    display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.ra-vsel-list li:hover, .ra-vsel-list li:focus-visible { background: rgba(255, 255, 255, .07); color: #fff; outline: none; }
.ra-vsel-list li.is-selected {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; font-weight: 700;
}
.ra-vsel-list-gen li { flex-direction: column; align-items: flex-start; gap: .15rem; }
.ra-vsel-gy { font-weight: 700; }
.ra-vsel-gp { font-size: .78rem; color: var(--muted); }
.ra-vsel-list li.is-selected .ra-vsel-gp { color: rgba(255, 255, 255, .85); }

.ra-vsel-summary { background: linear-gradient(160deg, rgba(255, 45, 45, .07), rgba(255, 255, 255, .015) 45%), var(--glass-strong); }
.ra-vsel-empty { color: var(--muted); font-size: .88rem; line-height: 1.55; margin: 0; }
.ra-vsel-carname { display: block; font-size: 1.12rem; font-weight: 750; }
.ra-vsel-caryears { display: block; color: var(--blue); font-size: .85rem; font-weight: 600; margin-top: .1rem; }
.ra-vsel-specs { margin: .9rem 0 1rem; display: flex; flex-direction: column; gap: .42rem; }
.ra-vsel-specs > div { display: flex; justify-content: space-between; gap: .8rem; font-size: .86rem; border-bottom: 1px dashed rgba(255,255,255,.09); padding-bottom: .35rem; }
.ra-vsel-specs dt { color: var(--muted); margin: 0; }
.ra-vsel-specs dd { margin: 0; font-weight: 700; text-align: right; }
.ra-vsel-actions { display: flex; flex-direction: column; gap: .5rem; }
.ra-vsel-reset {
    background: none; border: none; color: var(--muted); font-size: .82rem; cursor: pointer;
    text-decoration: underline; padding: .3rem; font-family: inherit;
}
.ra-vsel-reset:hover { color: var(--blue); }
.ra-vsel-help { margin: .9rem 0 0; font-size: .8rem; color: var(--muted); line-height: 1.5; }
.ra-vsel-help a { color: var(--blue); font-weight: 600; }

/* intrare din sidebar-ul magazinului */
.ra-side-fit-text { margin: 0 0 .7rem; font-size: .84rem; color: var(--muted); line-height: 1.5; }

/* modal cu selectorul (magazin) */
.ra-vsel-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.ra-vsel-modal[hidden] { display: none; }
.ra-vsel-modal-backdrop { position: absolute; inset: 0; background: rgba(2, 4, 8, .78); backdrop-filter: blur(4px); }
.ra-vsel-modal-panel {
    position: relative; z-index: 1; width: min(1100px, 100%); max-height: 90vh; overflow-y: auto;
    background: var(--bg-1, #090d14); border: 1px solid var(--stroke); border-radius: var(--radius);
    padding: 1.6rem; box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}
.ra-vsel-modal-title { margin: 0 0 1.2rem; font-size: 1.35rem; }
.ra-vsel-modal-x {
    position: absolute; top: .7rem; right: .9rem; z-index: 2;
    background: none; border: none; color: var(--muted); font-size: 1.9rem; line-height: 1; cursor: pointer; padding: .2rem .5rem;
}
.ra-vsel-modal-x:hover { color: var(--blue); }

/* variantă compactă (sidebar) */
.ra-vsel.is-compact { --vsel-h: 200px; }
.ra-vsel.is-compact .ra-vsel-cols { grid-template-columns: 1fr; }
.ra-vsel.is-compact .ra-vsel-steps { display: none; }

@media (max-width: 1100px) {
    .ra-vsel-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ra-vsel-summary { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    .ra-vsel { --vsel-h: 230px; }
    .ra-vsel-cols { grid-template-columns: 1fr; }
    .ra-vsel-steps li { flex: 1; justify-content: center; padding: .5rem .6rem; }
    .ra-vsel-steps em { display: none; }
}

/* Hero cu fotografie (înlocuiește scena 3D) */
.ra-hero-glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(52% 62% at 76% 42%, rgba(255, 45, 45, .16), transparent 62%),
        radial-gradient(46% 55% at 10% 18%, rgba(255, 45, 45, .06), transparent 64%);
    pointer-events: none;
}
.ra-hero-photo {
    position: relative; margin: 0; border-radius: 24px; overflow: hidden;
    border: 1px solid var(--stroke);
    box-shadow: 0 42px 90px rgba(0, 0, 0, .62), inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.ra-hero-photo img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ra-hero-photo::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(66% 60% at 72% 28%, rgba(255, 45, 45, .16), transparent 70%),
        linear-gradient(180deg, transparent 52%, rgba(4, 6, 10, .58));
}
.ra-hero-photo-badge {
    position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem .95rem; border-radius: 999px;
    background: rgba(9, 13, 20, .74); border: 1px solid var(--stroke);
    backdrop-filter: blur(10px);
    font-size: .84rem; font-weight: 600; color: #fff;
}
.ra-hero-photo-badge svg { width: 17px; height: 17px; color: var(--blue); flex: none; }
@media (max-width: 900px) {
    .ra-hero-photo { order: -1; }
    .ra-hero-photo img { aspect-ratio: 16 / 10; }
}

/* Mini-finder în hero (Marcă / Model / An) — trimite la finder-ul complet #fitment */
.ra-hero-finder { padding: 1rem; border-radius: 18px; margin: 0 0 1.8rem; max-width: 34rem; }
.ra-hero-finder-row { display: grid; grid-template-columns: 1.2fr 1.2fr .8fr; gap: .6rem; margin-bottom: .8rem; }
.ra-hero-finder .ra-select span { font-size: .72rem; }
.ra-hero-finder .ra-btn { width: 100%; justify-content: center; }
@media (max-width: 560px) { .ra-hero-finder-row { grid-template-columns: 1fr 1fr; } }

/* Scena roții 3D */
.ra-hero-wheel { position: relative; display: flex; justify-content: center; }
.ra-wheel-stage {
    position: relative; width: min(520px, 88vw); aspect-ratio: 1;
    transform-style: preserve-3d;
    perspective: 1100px;
    transition: transform .25s ease-out;
    will-change: transform;
}
.ra-wheel-svg { width: 100%; height: 100%; position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .75)); }
.ra-wheel-rotor { transform-box: view-box; transform-origin: center; animation: ra-wheel-spin var(--spin-dur, 26s) linear infinite; }
@keyframes ra-wheel-spin { to { transform: rotate(360deg); } }
.ra-wheel-halo {
    position: absolute; inset: -12%;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 45, 45, .18), transparent 55%),
        conic-gradient(from 210deg, transparent 70%, rgba(255, 45, 45, .12) 82%, transparent 94%);
    border-radius: 50%; filter: blur(24px); z-index: 1;
    animation: ra-halo 7s ease-in-out infinite alternate;
}
@keyframes ra-halo { from { opacity: .75; transform: scale(.97); } to { opacity: 1; transform: scale(1.04); } }
.ra-wheel-shadow {
    position: absolute; left: 50%; bottom: -7%; width: 78%; height: 60px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(0, 0, 0, .8), transparent 65%);
    filter: blur(8px); z-index: 0;
}
.ra-streak {
    position: absolute; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    filter: drop-shadow(0 0 6px var(--blue));
    animation: ra-streak 5s var(--ease) infinite; opacity: 0;
}
.ra-streak-1 { width: 220px; top: 24%; right: 4%; }
.ra-streak-2 { width: 150px; bottom: 20%; left: 0; animation-delay: 2.6s; background: linear-gradient(90deg, transparent, var(--red), transparent); filter: drop-shadow(0 0 6px var(--red)); }
@keyframes ra-streak { 0% { transform: translateX(-70px); opacity: 0; } 40% { opacity: .9; } 100% { transform: translateX(90px); opacity: 0; } }

.ra-scroll-hint {
    position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
    width: 26px; height: 44px; border: 1.6px solid var(--stroke-hi); border-radius: 999px;
    display: flex; justify-content: center; padding-top: 8px;
}
.ra-scroll-hint span { width: 3px; height: 9px; border-radius: 3px; background: var(--blue); animation: ra-scrollhint 1.8s var(--ease) infinite; }
@keyframes ra-scrollhint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ==========================================================================
   FITMENT FINDER
   ========================================================================== */
.ra-fitment-panel { padding: clamp(1.4rem, 3vw, 2.4rem); position: relative; overflow: hidden; }
.ra-fitment-track { position: absolute; inset: 0 0 auto; height: 3px; background: var(--stroke); }
.ra-fitment-track span {
    display: block; height: 100%; width: var(--progress, 5%);
    background: linear-gradient(90deg, var(--blue-deep), var(--blue));
    box-shadow: 0 0 14px var(--blue);
    transition: width .5s var(--ease);
}
.ra-fitment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: .6rem; }

.ra-select { display: flex; flex-direction: column; gap: .45rem; font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.ra-select select {
    appearance: none;
    background: rgba(255, 255, 255, .04) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='m1 1 5 5 5-5' stroke='%23ff2d2d' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
    border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    color: var(--txt); font-size: .95rem; font-family: var(--font-b);
    padding: .85rem 2.6rem .85rem 1rem; outline: none; cursor: pointer;
    transition: border-color .25s, box-shadow .25s, opacity .25s;
    width: 100%;
}
.ra-select select:focus { border-color: var(--blue); box-shadow: var(--glow-blue); }
.ra-select select:disabled { opacity: .38; cursor: not-allowed; }
.ra-select select option { background: var(--panel); color: var(--txt); }

.ra-fitment-foot { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; margin-top: 1.6rem; flex-wrap: wrap; }
.ra-fitment-note { color: var(--muted); font-size: .87rem; margin: 0; display: flex; align-items: center; gap: .5rem; }
.ra-fitment-note.is-ready { color: var(--blue); }

/* ==========================================================================
   CATEGORII
   ========================================================================== */
.ra-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.ra-cat-card {
    display: flex; flex-direction: column; gap: 1.1rem;
    padding: 1.7rem; position: relative; overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    transform-style: preserve-3d;
}
.ra-cat-card:hover { border-color: rgba(255, 45, 45, .45); box-shadow: var(--shadow), var(--glow-blue); }
.ra-cat-img {
    position: absolute; right: -8%; top: 50%; width: 46%; aspect-ratio: 1;
    transform: translateY(-50%) rotate(8deg);
    transition: transform .5s var(--ease), opacity .4s;
    opacity: .92; pointer-events: none;
}
.ra-cat-img img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(-14px 18px 22px rgba(0, 0, 0, .55)); }
.ra-cat-card:hover .ra-cat-img { transform: translateY(-50%) rotate(2deg) scale(1.08); opacity: 1; }
.ra-cat-card.has-img .ra-cat-body, .ra-cat-card.has-img .ra-cat-foot { max-width: 58%; position: relative; z-index: 2; }
.ra-cat-icon { width: 52px; height: 52px; color: var(--blue); filter: drop-shadow(0 0 10px rgba(255, 45, 45, .4)); transition: transform .4s var(--ease); }
.ra-cat-card:hover .ra-cat-icon { transform: scale(1.12) rotate(-6deg); }
.ra-cat-body strong { font-family: var(--font-d); font-size: 1.1rem; font-weight: 660; display: block; margin-bottom: .3rem; }
.ra-cat-body small { color: var(--muted); font-size: .9rem; }
.ra-cat-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.ra-cat-count { font-size: .8rem; color: var(--muted); }
.ra-cat-arrow { font-size: 1.2rem; color: var(--blue); transition: transform .3s var(--ease); }
.ra-cat-card:hover .ra-cat-arrow { transform: translateX(6px); }

/* Glow urmărește cursorul (setat din JS: --mx/--my) */
.ra-card-glow {
    position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 45, 45, .13), transparent 45%);
    opacity: 0; transition: opacity .35s;
}
.ra-cat-card:hover .ra-card-glow, .ra-card:hover .ra-card-glow, .ra-promo-panel:hover .ra-card-glow { opacity: 1; }

/* ==========================================================================
   CARD PRODUS
   ========================================================================== */
.ra-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ra-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015) 40%), var(--panel);
    border: 1px solid var(--stroke); border-radius: var(--radius);
    overflow: hidden; position: relative; display: flex; flex-direction: column;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    transform-style: preserve-3d;
}
.ra-card:hover { border-color: rgba(255, 45, 45, .5); box-shadow: var(--shadow), var(--glow-blue); z-index: 2; }

/* Fundal alb: pozele de produs au fundalul decupat (transparent) — pe închis nu se disting. */
.ra-card-media { position: relative; aspect-ratio: 1; background: radial-gradient(circle at 50% 38%, #ffffff, #eef1f5 72%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ra-card-media::after { /* umbră subtilă jos, ca produsul să nu „plutească" */
    content: ''; position: absolute; inset: auto 0 0; height: 34%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 38, .07));
    pointer-events: none;
}
.ra-card-imglink { display: contents; }
.ra-card-img, .ra-card-media img { width: 82%; height: 82%; object-fit: contain; margin: auto; transition: transform .5s var(--ease); filter: drop-shadow(0 14px 18px rgba(15, 23, 38, .22)); }
.ra-card:hover .ra-card-media img { transform: scale(1.07) rotate(1.5deg); }
.ra-noimg { width: 45%; color: #2c3648; }
.is-noimg .ra-noimg { display: block; }

.ra-badge {
    position: absolute; top: .9rem; left: .9rem; z-index: 3;
    padding: .28rem .7rem; border-radius: 999px;
    background: rgba(255, 45, 45, .14); border: 1px solid rgba(255, 45, 45, .4);
    color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    backdrop-filter: blur(6px);
}
.ra-badge-sale { background: rgba(255, 45, 85, .16); border-color: rgba(255, 45, 85, .45); color: #ff8fa3; }
.ra-badge-oos { background: rgba(232, 194, 144, .14); border-color: rgba(232, 194, 144, .4); color: var(--gold); }
/* Card fără stoc: imagine ușor estompată + buton WhatsApp verde */
.ra-card.is-oos .ra-card-img { opacity: .62; filter: grayscale(.25); }
.ra-ask-stock { background: #1f9d57 !important; border: none !important; }
.ra-ask-stock:hover { background: #24b063 !important; }
/* Pagina produs — bloc „la comandă" */
.ra-single-oos { margin: 1.4rem 0; padding: 1.2rem 1.3rem; border: 1px solid rgba(232, 194, 144, .3); background: rgba(232, 194, 144, .06); border-radius: var(--radius-sm); }
.ra-single-oos-note { margin: 0 0 1rem; color: var(--muted); font-size: .92rem; }
.ra-single-oos .ra-btn { background: #1f9d57; box-shadow: none; }
.ra-single-oos .ra-btn:hover { background: #24b063; }

.ra-wish {
    position: absolute; top: .8rem; right: .8rem; z-index: 3;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(10, 14, 22, .6); border: 1px solid var(--stroke);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); backdrop-filter: blur(6px);
    transition: color .25s, border-color .25s, transform .25s var(--ease);
}
.ra-wish svg { width: 18px; height: 18px; }
.ra-wish:hover { transform: scale(1.12); color: var(--red); border-color: var(--red); }
.ra-wish.is-active { color: var(--red); border-color: var(--red); }
.ra-wish.is-active svg path { fill: var(--red); }

.ra-quickview {
    position: absolute; left: 50%; bottom: .9rem; transform: translateX(-50%) translateY(14px);
    padding: .5rem 1.1rem; border-radius: 999px; z-index: 3;
    background: rgba(6, 10, 16, .78); border: 1px solid var(--stroke-hi);
    font-size: .8rem; font-weight: 640; color: var(--txt);
    opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .25s, color .25s;
    backdrop-filter: blur(8px);
}
.ra-card:hover .ra-quickview, .ra-quickview:focus-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.ra-quickview:hover { border-color: var(--blue); color: var(--blue); }

.ra-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.ra-card-brand { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.ra-card-title { font-family: var(--font-b); font-weight: 640; font-size: .98rem; margin: 0; line-height: 1.35; }
.ra-card-title a { transition: color .2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ra-card-title a:hover { color: var(--blue); }
.ra-card-spec { font-size: .82rem; color: var(--muted); }
.ra-card-meta { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: .4rem; }
.ra-price { font-family: var(--font-d); font-weight: 720; font-size: 1.06rem; }
.ra-price del { color: var(--muted); font-weight: 400; font-size: .82rem; margin-right: .4rem; }
.ra-price ins { text-decoration: none; color: var(--blue); }

.ra-stars { --star-size: 15px; position: relative; display: inline-block; width: calc(var(--star-size) * 5); height: var(--star-size); }
.ra-stars::before, .ra-stars::after {
    content: '★★★★★'; position: absolute; inset: 0;
    font-size: var(--star-size); line-height: 1; letter-spacing: 2px;
    color: rgba(255, 255, 255, .16);
}
.ra-stars::after { color: var(--gold); width: calc(var(--rating, 0) / 5 * 100%); overflow: hidden; white-space: nowrap; }

.ra-card-actions { display: flex; gap: .6rem; margin-top: .8rem; }
.ra-card-actions .ra-btn { flex: 1; justify-content: center; }
.ra-card-actions .added_to_cart { display: none; }
.ra-btn.loading { opacity: .6; pointer-events: none; }

/* ==========================================================================
   CONFIGURATOR
   ========================================================================== */
.ra-configurator {
    background:
        radial-gradient(800px 500px at 85% 50%, rgba(255, 45, 45, .08), transparent 60%),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, .015) 50%, transparent);
}
.ra-config-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3.4rem; align-items: center; }
.ra-config-copy p { color: var(--muted); max-width: 30rem; }
.ra-config-group { margin: 1.6rem 0; }
.ra-config-label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.ra-config-options { display: flex; flex-wrap: wrap; gap: .6rem; }

.ra-chip {
    padding: .55rem 1.15rem; border-radius: 999px;
    border: 1px solid var(--stroke); color: var(--txt); font-weight: 600; font-size: .88rem;
    transition: all .25s var(--ease);
}
.ra-chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.ra-chip.is-active { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); border-color: transparent; color: #ffffff; box-shadow: var(--glow-blue); }

.ra-finish { display: inline-flex; align-items: center; gap: .55rem; padding: .5rem 1rem .5rem .55rem; border-radius: 999px; border: 1px solid var(--stroke); font-size: .86rem; font-weight: 600; transition: all .25s var(--ease); }
.ra-finish span { width: 24px; height: 24px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, .75), transparent 38%), var(--sw, #999); border: 1px solid rgba(255, 255, 255, .25); box-shadow: inset 0 -3px 6px rgba(0, 0, 0, .4); }
.ra-finish:hover { border-color: var(--stroke-hi); transform: translateY(-2px); }
.ra-finish.is-active { border-color: var(--blue); box-shadow: var(--glow-blue); color: var(--blue); }

/* Jante reale din stoc, sub configurator */
.ra-config-real { margin-top: 2rem; }
.ra-config-real.is-loading { opacity: .5; }
.ra-config-real-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; transition: opacity .3s; }
.ra-config-real-item {
    display: flex; flex-direction: column; gap: .4rem; padding: .8rem;
    background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.ra-config-real-item:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--glow-blue); }
.ra-config-real-item img { width: 100%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .5)); }
.ra-cri-name { font-size: .74rem; line-height: 1.35; color: var(--txt); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ra-cri-price { font-family: var(--font-d); font-weight: 700; font-size: .86rem; color: var(--blue); }
.ra-config-real-empty { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; margin: 0; }

.ra-fitment-ctas { display: flex; gap: .8rem; flex-wrap: wrap; }

.ra-config-stage { position: relative; display: flex; justify-content: center; }
.ra-wheel-stage-config { width: min(460px, 80vw); transition: transform .25s ease-out, scale .5s var(--ease); scale: var(--wheel-scale, 1); }
.ra-config-size-label {
    position: absolute; top: 4%; right: 8%;
    font-family: var(--font-d); font-weight: 760; font-size: 1.4rem; color: var(--blue);
    text-shadow: 0 0 20px rgba(255, 45, 45, .6);
}

/* Finisaje jantă — variabile pentru gradientele SVG */
[data-finish="argintiu-periat"] { --rim-hi: #f4f7fb; --rim-mid: #9aa3b2; --rim-lo: #3c4350; }
[data-finish="negru-mat"]       { --rim-hi: #4a4e55; --rim-mid: #26292f; --rim-lo: #101216; }
[data-finish="negru-lucios"]    { --rim-hi: #767d88; --rim-mid: #1a1d23; --rim-lo: #05060a; }
[data-finish="crom"]            { --rim-hi: #ffffff; --rim-mid: #c3ccd8; --rim-lo: #5a6577; }
[data-finish="gunmetal"]        { --rim-hi: #aab3c0; --rim-mid: #5a6472; --rim-lo: #262c36; }
[data-finish="bronz"]           { --rim-hi: #e8c290; --rim-mid: #a97e4f; --rim-lo: #5a3d22; }

/* ==========================================================================
   TRUST
   ========================================================================== */
/* Fundal fotografic subtil — scoate secțiunea din „text pe negru" */
.ra-trust::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: url('../img/photos/wheel-closeup.jpg') center / cover no-repeat;
    opacity: .12;
    mask-image: radial-gradient(120% 100% at 15% 30%, #000 10%, transparent 62%);
    -webkit-mask-image: radial-gradient(120% 100% at 15% 30%, #000 10%, transparent 62%);
}
.ra-trust > .ra-container { position: relative; z-index: 1; }
.ra-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.ra-trust-card { padding: 1.6rem; transition: transform .3s var(--ease), border-color .3s; }
.ra-trust-card:hover { transform: translateY(-5px); border-color: rgba(255, 45, 45, .4); }
.ra-trust-icon { display: inline-flex; width: 46px; height: 46px; border-radius: 13px; align-items: center; justify-content: center; background: rgba(255, 45, 45, .1); border: 1px solid rgba(255, 45, 45, .3); color: var(--blue); margin-bottom: 1rem; }
.ra-trust-icon svg { width: 24px; height: 24px; }
.ra-trust-card strong { display: block; font-family: var(--font-d); font-size: 1rem; font-weight: 660; margin-bottom: .45rem; }
.ra-trust-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ==========================================================================
   PROMO
   ========================================================================== */
.ra-promo-panel {
    position: relative; overflow: hidden; text-align: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid rgba(255, 45, 85, .3);
    background:
        linear-gradient(160deg, rgba(20, 6, 11, .92), rgba(10, 5, 8, .88) 55%, rgba(18, 6, 9, .94)),
        url('../img/photos/wheel-closeup.jpg') center / cover no-repeat;
    transform-style: preserve-3d;
}
.ra-promo-bg { position: absolute; inset: 0; pointer-events: none; }
.ra-promo-stripes {
    position: absolute; inset: -50%;
    background: repeating-linear-gradient(115deg, transparent 0 46px, rgba(255, 45, 85, .07) 46px 52px);
    animation: ra-stripes 16s linear infinite;
}
@keyframes ra-stripes { to { transform: translateX(140px); } }
.ra-promo-glow { position: absolute; inset: 0; background: radial-gradient(600px 260px at 50% 110%, rgba(255, 45, 85, .22), transparent 65%); }
.ra-promo-tag {
    display: inline-block; padding: .35rem .95rem; border-radius: 999px; margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 45, 85, .5); color: #ff8fa3;
    font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    animation: ra-pulse 2.6s infinite;
}
.ra-promo-panel h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); position: relative; }
.ra-promo-panel p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; position: relative; }
.ra-promo-panel p strong { color: #ff5c7c; font-size: 1.3em; font-family: var(--font-d); }

/* ==========================================================================
   BRANDURI (marquee)
   ========================================================================== */
.ra-brands { padding: 2.5rem 0; border-block: 1px solid var(--stroke); overflow: hidden; }
.ra-brands-track { overflow: hidden; max-width: 100%; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.ra-brands-row { display: flex; gap: 4.5rem; width: max-content; animation: ra-marquee 36s linear infinite; }
.ra-brands:hover .ra-brands-row { animation-play-state: paused; }
@keyframes ra-marquee { to { transform: translateX(-50%); } }
.ra-brand-logo {
    font-family: var(--font-d); font-weight: 720; font-size: 1.25rem; letter-spacing: .12em;
    color: rgba(255, 255, 255, .28); white-space: nowrap;
    transition: color .3s, text-shadow .3s;
}
.ra-brand-logo:hover { color: var(--txt); text-shadow: 0 0 24px rgba(255, 45, 45, .5); }

/* ==========================================================================
   RECENZII
   ========================================================================== */
.ra-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ra-review-card { padding: 1.5rem; margin: 0; display: flex; flex-direction: column; gap: 1rem; transform-style: preserve-3d; transition: transform .35s var(--ease), border-color .35s; }
.ra-review-card:hover { border-color: rgba(255, 45, 45, .4); }
.ra-review-card blockquote { margin: 0; font-size: .94rem; color: #cfd6e2; flex: 1; }
.ra-review-card blockquote::before { content: '"'; }
.ra-review-card blockquote::after { content: '"'; }
.ra-review-card figcaption { display: flex; align-items: center; gap: .8rem; }
.ra-review-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--blue-deep), #4a0810);
    font-family: var(--font-d); font-weight: 720; color: #ffd0d0;
}
.ra-review-card figcaption strong { display: block; font-size: .92rem; }
.ra-review-card figcaption small { color: var(--muted); font-size: .8rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ra-footer { border-top: 1px solid var(--stroke); background: linear-gradient(180deg, transparent, rgba(255, 45, 45, .03)); padding: 4rem 0 2rem; margin-top: 4rem; }
.ra-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2.4rem; margin-bottom: 3rem; }
.ra-footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 1.1rem; max-width: 22rem; }
.ra-socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.ra-socials a {
    width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--stroke); color: var(--muted);
    transition: all .25s var(--ease);
}
.ra-socials a svg { width: 18px; height: 18px; }
.ra-socials a:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 0 16px rgba(255, 45, 45, .3); }
.ra-footer-col { display: flex; flex-direction: column; gap: .55rem; }
.ra-footer-col h4 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--txt); margin-bottom: .5rem; }
.ra-footer-col a, .ra-footer-col span { color: var(--muted); font-size: .92rem; transition: color .2s, padding-left .25s var(--ease); }
.ra-footer-col a:hover { color: var(--blue); padding-left: 4px; }
.ra-footer-phone { font-family: var(--font-d); font-weight: 660; color: var(--txt) !important; font-size: 1.05rem !important; }
.ra-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; border-top: 1px solid var(--stroke); color: var(--muted); font-size: .85rem; }
.ra-payments { display: flex; gap: .5rem; }
.ra-payments span { padding: .3rem .7rem; border: 1px solid var(--stroke); border-radius: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); }

/* ==========================================================================
   DRAWER (favorite) + MODAL (quick view) + OVERLAY
   ========================================================================== */
.ra-overlay { position: fixed; inset: 0; z-index: 95; background: rgba(2, 4, 8, .6); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; }
.ra-overlay.is-open { opacity: 1; }
.ra-overlay[hidden] { display: none; }

.ra-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 96;
    width: min(420px, 92vw);
    background: var(--glass-strong); backdrop-filter: blur(24px);
    border-left: 1px solid var(--stroke);
    transform: translateX(100%); transition: transform .4s var(--ease);
    display: flex; flex-direction: column;
}
.ra-drawer[hidden] { display: none; }
.ra-drawer.is-open { transform: translateX(0); }
.ra-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--stroke); }
.ra-drawer-head h3 { margin: 0; font-size: 1.1rem; }
.ra-drawer-body { padding: 1.4rem 1.6rem; overflow-y: auto; flex: 1; }
.ra-wishlist-empty { color: var(--muted); font-size: .92rem; }
.ra-wishlist-items { display: flex; flex-direction: column; gap: .9rem; }
.ra-wishlist-item { display: flex; gap: .9rem; align-items: center; padding: .8rem; border: 1px solid var(--stroke); border-radius: var(--radius-sm); background: var(--glass); }
.ra-wishlist-item img { width: 58px; height: 58px; object-fit: contain; border-radius: 8px; background: #0b0f17; }
.ra-wishlist-item-info { flex: 1; min-width: 0; }
.ra-wishlist-item-info strong { display: block; font-size: .86rem; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ra-wishlist-item-info span { font-size: .82rem; color: var(--blue); font-weight: 640; }
.ra-wishlist-remove { color: var(--muted); font-size: 1rem; padding: .4rem; transition: color .2s; }
.ra-wishlist-remove:hover { color: var(--red); }

.ra-modal { position: fixed; inset: 0; z-index: 97; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.ra-modal[hidden] { display: none; }
.ra-modal-backdrop { position: absolute; inset: 0; background: rgba(2, 4, 8, .7); backdrop-filter: blur(6px); }
.ra-modal-panel {
    position: relative; width: min(760px, 100%); max-height: 88vh; overflow: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; padding: 1.8rem;
    animation: ra-modal-in .4s var(--ease);
}
@keyframes ra-modal-in { from { opacity: 0; transform: translateY(26px) scale(.97); } }
.ra-modal-close { position: absolute; top: .9rem; right: .9rem; z-index: 2; }
.ra-qv-media { aspect-ratio: 1; border-radius: var(--radius-sm); background: radial-gradient(circle at 50% 42%, #1b2230, #0b0f17 72%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ra-qv-media img { width: 84%; height: 84%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .55)); }
.ra-qv-info { display: flex; flex-direction: column; gap: .5rem; padding-top: .6rem; }
.ra-qv-brand { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.ra-qv-title { margin: 0; font-size: 1.2rem; font-family: var(--font-b); font-weight: 700; }
.ra-qv-spec { color: var(--muted); font-size: .9rem; }
.ra-qv-price { font-family: var(--font-d); font-size: 1.5rem; font-weight: 720; margin: .6rem 0 1rem; }
.ra-qv-actions { margin-top: auto; }

/* ==========================================================================
   MAGAZIN / WOOCOMMERCE
   ========================================================================== */
.ra-shop-wrap { padding: 8rem 0 4rem; }
/* Layout magazin: sidebar (categorii + filtre) + zona principală */
.ra-shop-layout { display: grid; grid-template-columns: 262px minmax(0, 1fr); gap: 2rem; align-items: start; }
.ra-shop-sidebar { position: sticky; top: 104px; max-height: calc(100vh - 124px); overflow-y: auto; display: flex; flex-direction: column; gap: 1.4rem; padding-right: 4px; }
.ra-shop-sidebar::-webkit-scrollbar { width: 8px; }
.ra-shop-sidebar::-webkit-scrollbar-thumb { background: var(--stroke-hi); border-radius: 8px; }
/* Toolbar: număr rezultate (stânga) + sortare (dreapta) pe un rând */
.ra-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.ra-shop-toolbar .woocommerce-result-count { margin: 0; color: var(--muted); font-size: .9rem; }
.ra-shop-toolbar .woocommerce-ordering { margin: 0; }
.ra-shop-main { min-width: 0; }
.ra-shop-head { margin-bottom: 1.4rem; }
.ra-shop-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: .2rem 0 .6rem; }
.ra-shop-head .woocommerce-breadcrumb { color: var(--muted); font-size: .82rem; margin-bottom: .5rem; }
.ra-shop-head .woocommerce-breadcrumb a { color: var(--muted); transition: color .2s; }
.ra-shop-head .woocommerce-breadcrumb a:hover { color: var(--blue); }
.ra-shop-head .term-description { color: var(--muted); max-width: 62ch; font-size: .95rem; }

/* Sidebar — blocuri */
.ra-side-block, .ra-side-filters { background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; }
.ra-side-title { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; }
.ra-side-cats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .1rem; }
.ra-side-cats a { display: flex; justify-content: space-between; align-items: center; gap: .5rem; padding: .5rem .65rem; margin-inline: -.65rem; border-radius: 8px; color: var(--txt); font-size: .92rem; transition: background .2s, color .2s; }
.ra-side-cats a small { color: var(--muted); font-size: .74rem; }
.ra-side-cats a:hover { background: var(--glass); color: var(--blue); }
.ra-side-cats a.is-active { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; font-weight: 640; }
.ra-side-cats a.is-active small { color: rgba(255, 255, 255, .85); }
.ra-side-filters { display: flex; flex-direction: column; gap: .95rem; }
.ra-side-select { width: 100%; }
.ra-side-select select { width: 100%; padding: .6rem 2.2rem .6rem .8rem; font-size: .88rem; }
.ra-side-price > span { display: block; font-size: .8rem; color: var(--muted); margin-bottom: .45rem; }
.ra-side-price-row { display: flex; align-items: center; gap: .5rem; }
.ra-side-price-row input { width: 100%; min-width: 0; background: rgba(0, 0, 0, .3); border: 1px solid var(--stroke); border-radius: 8px; padding: .5rem .55rem; color: var(--txt); font-size: .88rem; }
.ra-side-check { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--txt); cursor: pointer; }
.ra-side-apply { width: 100%; justify-content: center; margin-top: .2rem; }
.ra-shop-filters-toggle { display: none; }

/* Filtre active */
.ra-active-filters { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin: 0 0 1.4rem; }
.ra-active-filters-label { color: var(--muted); font-size: .82rem; font-weight: 600; }
.ra-filter-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .4rem .85rem; border-radius: 999px;
    background: rgba(255, 45, 45, .1); border: 1px solid rgba(255, 45, 45, .4);
    color: var(--blue); font-size: .82rem; font-weight: 600;
    transition: all .25s var(--ease);
}
.ra-filter-chip b { font-weight: 700; opacity: .7; }
/* Grila din magazin: 3 coloane (sidebar ocupă din lățime) */
.ra-shop-main .ra-product-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1200px) { .ra-shop-main .ra-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px) {
    .ra-shop-layout { grid-template-columns: 1fr; }
    .ra-shop-filters-toggle { display: inline-flex; margin-bottom: 1.2rem; }
    .ra-shop-sidebar { display: none; }
    .ra-shop-sidebar.is-open { display: flex; }
    .ra-shop-main .ra-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .ra-shop-main .ra-product-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* Filtre active */
.ra-active-filters { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin: -0.6rem 0 1.4rem; }
.ra-active-filters-label { color: var(--muted); font-size: .82rem; font-weight: 600; }
.ra-filter-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .4rem .85rem; border-radius: 999px;
    background: rgba(255, 45, 45, .1); border: 1px solid rgba(255, 45, 45, .4);
    color: var(--blue); font-size: .82rem; font-weight: 600;
    transition: all .25s var(--ease);
}
.ra-filter-chip b { font-weight: 700; opacity: .7; }
.ra-filter-chip:hover { background: rgba(255, 45, 85, .1); border-color: rgba(255, 45, 85, .45); color: #ff8fa3; }
.ra-filter-clear { background: transparent; border-color: var(--stroke-hi); color: var(--muted); }

.woocommerce-result-count { color: var(--muted); font-size: .9rem; float: none !important; margin: 0 0 .8rem !important; }
.woocommerce-ordering { float: none !important; margin: 0 0 1rem !important; }
.woocommerce-ordering select {
    appearance: none; background: var(--glass); border: 1px solid var(--stroke); border-radius: 999px;
    color: var(--txt); padding: .55rem 2.2rem .55rem 1.1rem; font-size: .88rem; outline: none; cursor: pointer;
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
    background: var(--glass-strong); border: 1px solid var(--stroke); border-left: 3px solid var(--blue);
    color: var(--txt); border-radius: var(--radius-sm); padding: 1rem 1.3rem; margin-bottom: 1.2rem;
    list-style: none; backdrop-filter: blur(10px);
}
.woocommerce-notices-wrapper .woocommerce-error { border-left-color: var(--red); }
.woocommerce-notices-wrapper a.button { background: var(--blue); color: #ffffff; border-radius: 999px; padding: .4rem 1rem; font-weight: 640; float: right; }

/* Paginare */
.woocommerce-pagination, .ra-pagination { text-align: center; margin-top: 2.6rem; }
.woocommerce-pagination ul { display: inline-flex !important; gap: .45rem; list-style: none; border: 0 !important; margin: 0; padding: 0; }
.woocommerce-pagination li { border: 0 !important; }
.woocommerce-pagination .page-numbers,
.ra-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 .8rem; border-radius: 12px;
    border: 1px solid var(--stroke); color: var(--txt); font-weight: 600;
    transition: all .25s var(--ease);
}
.woocommerce-pagination .page-numbers:hover, .ra-pagination .page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.woocommerce-pagination .page-numbers.current, .ra-pagination .page-numbers.current { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #ffffff; border-color: transparent; }

/* Pagina de produs single */
.single-product div.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: start; }
.single-product div.product .woocommerce-product-gallery { background: radial-gradient(circle at 50% 38%, #ffffff, #eef1f5 74%); border-radius: var(--radius); border: 1px solid var(--stroke); overflow: hidden; padding: 2rem; }
.single-product div.product .summary { padding-top: .5rem; }
/* CSS-ul WooCommerce dă float + width 48% galeriei și sumarului — în grid le vrem pe toată coloana. */
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary { float: none !important; width: 100% !important; margin: 0 !important; }
/* Format standard de afișare: casetă pătrată, imaginea se potrivește în ea fără tăiere
   (indiferent de proporțiile fișierului de la furnizor — jantă pătrată sau anvelopă înaltă). */
.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery__image { height: 100%; }
.single-product .woocommerce-product-gallery__image a { display: block; height: 100%; }
.single-product .woocommerce-product-gallery__image img {
    width: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(15, 23, 38, .2));
}
/* Miniaturile din coș/checkout: aceeași casetă pătrată, fără tăiere. */
.wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img { aspect-ratio: 1 / 1; object-fit: contain; background: #10151f; border-radius: 8px; }
.single-product .product_title { font-size: clamp(1.4rem, 2.6vw, 2rem); font-family: var(--font-b); font-weight: 760; }
.single-product .summary .price { font-family: var(--font-d); font-size: 1.7rem; font-weight: 720; color: var(--txt); margin: 1rem 0; display: block; }
.single-product .summary .price del { color: var(--muted); font-size: 1.1rem; }
.single-product .summary .price ins { color: var(--blue); text-decoration: none; }
.single-product .summary form.cart { display: flex; gap: .8rem; margin: 1.6rem 0; }
.single-product .summary form.cart .qty {
    width: 84px; background: var(--glass); border: 1px solid var(--stroke); border-radius: 999px;
    color: var(--txt); text-align: center; font-size: 1rem; padding: .8rem .4rem; outline: none;
}
.single-product .summary .single_add_to_cart_button {
    flex: 1; border: 0; border-radius: 999px; cursor: pointer;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #ffffff;
    font-weight: 700; font-size: 1rem; padding: .9rem 1.6rem;
    box-shadow: var(--glow-blue); transition: transform .25s var(--ease), box-shadow .25s;
}
.single-product .summary .single_add_to_cart_button:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(255, 45, 45, .5); }
.single-product .product_meta { color: var(--muted); font-size: .88rem; display: flex; flex-direction: column; gap: .3rem; padding-top: 1.2rem; border-top: 1px solid var(--stroke); }

/* Marca deasupra titlului */
.ra-single-brand {
    display: inline-block; margin-bottom: .5rem; padding: .3rem .9rem; border-radius: 999px;
    border: 1px solid rgba(255, 45, 45, .4); background: rgba(255, 45, 45, .08);
    color: var(--blue); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}

/* Preseturi cantitate */
.ra-qty-presets { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; width: 100%; }
.ra-qty-presets > span { color: var(--muted); font-size: .84rem; margin-right: .2rem; }
.ra-qty-preset.is-recommended { border-color: rgba(74, 222, 128, .5); color: #a7e8bd; }
.ra-qty-preset.is-recommended:hover, .ra-qty-preset.is-recommended.is-active { border-color: #4ade80; color: #4ade80; box-shadow: 0 0 14px rgba(74, 222, 128, .25); background: rgba(74, 222, 128, .08); transform: none; }
.ra-qty-preset.is-active { background: rgba(255, 45, 45, .12); border-color: var(--blue); color: var(--blue); }
.single-product .summary form.cart { flex-wrap: wrap; }

/* Badge-uri de încredere pe pagina de produs */
.ra-single-trust { list-style: none; margin: 1.4rem 0 0; padding: 1.1rem 1.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.2rem; background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius-sm); }
.ra-single-trust li { display: flex; align-items: center; gap: .6rem; font-size: .84rem; color: #cfd6e2; }
.ra-single-trust svg { width: 20px; height: 20px; color: var(--blue); flex: none; }
@media (max-width: 640px) { .ra-single-trust { grid-template-columns: 1fr; } }

/* Galerie suplimentară din feed */
.ra-gallery-extra { display: inline-block; width: calc(25% - 8px); margin: 8px 8px 0 0; border: 1px solid var(--stroke); border-radius: 10px; overflow: hidden; background: #fff; }
.ra-gallery-extra img { width: 100%; aspect-ratio: 1; object-fit: contain; cursor: zoom-in; transition: transform .3s var(--ease); }
.ra-gallery-extra:hover img { transform: scale(1.06); }
.single-product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 2rem; }
.single-product .woocommerce-tabs ul.tabs { display: flex; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1.4rem; border-bottom: 1px solid var(--stroke); }
.single-product .woocommerce-tabs ul.tabs li { margin: 0; }
.single-product .woocommerce-tabs ul.tabs li a { display: inline-block; padding: .7rem 1.3rem; color: var(--muted); font-weight: 600; border-bottom: 2px solid transparent; }
.single-product .woocommerce-tabs ul.tabs li.active a { color: var(--blue); border-bottom-color: var(--blue); }
.single-product .woocommerce-tabs .panel { background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 1.6rem; }
.single-product .woocommerce-tabs .panel h2 { font-size: 1.1rem; }
table.woocommerce-product-attributes { width: 100%; border-collapse: collapse; }
table.woocommerce-product-attributes th, table.woocommerce-product-attributes td { text-align: left; padding: .65rem .8rem; border-bottom: 1px solid var(--stroke); font-size: .92rem; }
table.woocommerce-product-attributes th { color: var(--muted); font-weight: 600; width: 38%; }
.related.products, .upsells.products { grid-column: 1 / -1; margin-top: 3rem; }
.related.products > h2, .upsells.products > h2 { font-size: 1.4rem; margin-bottom: 1.4rem; }

/* Bară sticky de cumpărare */
.ra-sticky-atc {
    position: fixed; z-index: 91; left: 50%; bottom: 1rem;
    transform: translateX(-50%);
    width: min(640px, calc(100vw - 2rem));
    display: flex; align-items: center; gap: 1rem;
    padding: .7rem 1rem;
    animation: ra-cookie-in .45s var(--ease);
}
.ra-sticky-atc[hidden] { display: none; }
.ra-sticky-atc img { width: 46px; height: 46px; object-fit: contain; flex: none; }
.ra-sticky-atc-info { flex: 1; min-width: 0; }
.ra-sticky-atc-info strong { display: block; font-size: .84rem; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ra-sticky-atc-info span { font-family: var(--font-d); font-weight: 720; font-size: .95rem; color: var(--blue); }

/* Inima de pe pagina de produs */
.ra-wish-single {
    position: static; width: 48px; height: 48px; flex: none;
    border-radius: 50%; border: 1px solid var(--stroke-hi);
    background: var(--glass); display: inline-flex; align-items: center; justify-content: center;
    color: var(--muted); transition: color .25s, border-color .25s, transform .25s var(--ease);
}
.ra-wish-single svg { width: 22px; height: 22px; }
.ra-wish-single:hover { transform: scale(1.08); color: var(--red); border-color: var(--red); }
.ra-wish-single.is-active { color: var(--red); border-color: var(--red); }
.ra-wish-single.is-active svg path { fill: var(--red); }

/* Recenzii WooCommerce pe dark */
#reviews .woocommerce-Reviews-title, #reviews .comment-reply-title { color: var(--txt); font-size: 1.1rem; }
#reviews ol.commentlist { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
#reviews li .comment_container {
    display: flex; gap: 1rem; padding: 1.2rem;
    background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius-sm);
}
#reviews img.avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; }
#reviews .comment-text { flex: 1; }
#reviews .comment-text .meta { color: var(--muted); font-size: .84rem; margin: .3rem 0 .5rem; }
#reviews .comment-text .meta strong { color: var(--txt); }
#reviews .star-rating { color: var(--gold); }
#reviews .comment-form { display: flex; flex-direction: column; gap: .9rem; }
#reviews .comment-form label { display: block; color: var(--muted); font-size: .86rem; margin-bottom: .3rem; }
#reviews .comment-form input:not([type="checkbox"]):not([type="submit"]), #reviews .comment-form textarea {
    width: 100%; background: rgba(255, 255, 255, .04); border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    color: var(--txt); padding: .75rem 1rem; outline: none;
}
#reviews .comment-form input:focus, #reviews .comment-form textarea:focus { border-color: var(--blue); box-shadow: var(--glow-blue); }
#reviews .comment-form-rating .stars a { color: var(--gold); }
#reviews .comment-form .form-submit input[type="submit"] {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #ffffff;
    border: 0; border-radius: 999px; font-weight: 700; padding: .8rem 1.8rem; cursor: pointer;
}

/* Completează setul + Văzute recent */
.ra-crosssell { grid-column: 1 / -1; margin-top: 3rem; }
.ra-crosssell > h2 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.ra-recent { width: min(1240px, 100% - 2.5rem); margin: 3rem auto 1rem; }
.ra-recent > h2 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.ra-recent-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
@media (max-width: 760px) { .ra-recent-list { grid-template-columns: repeat(2, 1fr); } }

/* Suprascrieri WooCommerce single (culori implicite verzi/ambră) */
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--txt); }
.woocommerce div.product p.stock.in-stock { color: #4ade80; font-weight: 600; }
.woocommerce div.product p.stock.out-of-stock { color: var(--red); font-weight: 600; }
.woocommerce span.onsale {
    background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff;
    border-radius: 999px; padding: .3rem .9rem; font-weight: 700; min-width: 0; min-height: 0; line-height: 1.4;
}
.woocommerce-product-gallery__trigger { background: var(--glass-strong) !important; border: 1px solid var(--stroke) !important; border-radius: 50% !important; }
.ra-qv-media img { filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .55)); }

/* Coș / checkout (blocuri) — armonizare culori */
.wc-block-components-button:not(.is-link) { background: linear-gradient(135deg, var(--blue), var(--blue-deep)) !important; color: #ffffff !important; border-radius: 999px !important; font-weight: 700 !important; }
.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout { color: var(--txt); }

/* Butonul „Continuă" NU mai plutește peste pagină (clona sticky a blocului de coș) */
.wc-block-cart__submit-container--sticky {
    position: static !important;
    box-shadow: none !important;
}
.wc-block-cart__submit-container--sticky::before { display: none !important; }

/* Câmpurile din checkout, pe tema dark — regulă generală pentru orice input/select */
.wp-block-woocommerce-checkout input:not([type="checkbox"]):not([type="radio"]),
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea,
.wp-block-woocommerce-cart input:not([type="checkbox"]):not([type="radio"]) {
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid var(--stroke) !important;
    color: var(--txt) !important;
}
.wc-block-components-combobox-control,
.wc-block-components-form .wc-block-components-text-input,
.wc-block-components-country-input,
.wc-block-components-state-input { background: transparent !important; }

/* Selecturile noi din blocuri (țară/județ) — erau albe pe tema dark */
.wc-blocks-components-select .wc-blocks-components-select__container {
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid var(--stroke) !important;
    border-radius: var(--radius-sm) !important;
}
.wc-blocks-components-select__select {
    background: transparent !important;
    color: var(--txt) !important;
}
.wc-blocks-components-select__select option { background: var(--panel); color: var(--txt); }
.wc-blocks-components-select__label { color: var(--muted) !important; }
.wc-blocks-components-select__expander { color: var(--blue) !important; }
.wp-block-woocommerce-checkout select option { background: var(--panel); color: var(--txt); }

/* Câmpurile din checkout, pe tema dark */
.wc-block-components-text-input input,
.wc-block-components-combobox .components-combobox-control__input,
.wc-block-components-form .wc-block-components-select .components-custom-select-control__button,
.wc-block-components-totals-coupon__input input {
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid var(--stroke) !important;
    border-radius: 12px !important;
    color: var(--txt) !important;
}
.wc-block-components-text-input input:focus { border-color: var(--blue) !important; box-shadow: var(--glow-blue) !important; }
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-checkbox__label,
.wc-block-components-select label { color: var(--muted) !important; }
.wc-block-components-checkout-step__heading .wc-block-components-title,
.wc-block-components-title { color: var(--txt) !important; }
.wc-block-components-checkout-step__description { color: var(--muted) !important; }
.wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option {
    background: var(--glass) !important;
    border-color: var(--stroke) !important;
    color: var(--txt) !important;
}
.wc-block-components-radio-control__option-checked { border-color: var(--blue) !important; }
.wc-block-components-order-summary, .wc-block-components-totals-wrapper { border-color: var(--stroke) !important; }
.wc-block-components-panel__button { color: var(--txt) !important; }
.wc-block-components-product-name { color: var(--txt) !important; }
.wc-block-components-express-payment-continue-rule { color: var(--muted); }
.wc-block-checkout__sidebar .wc-block-components-product-metadata__description { color: var(--muted); }
.wc-block-components-checkout-return-to-cart-button { color: var(--blue) !important; }

/* ==========================================================================
   CONSTRUCTOR PACHETE ROȚI
   ========================================================================== */
.ra-package-page { padding: 8rem 0 4rem; }
.ra-package-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 1.6rem; align-items: start; }
.ra-package-steps { display: flex; flex-direction: column; gap: 1.4rem; }
.ra-package-step { padding: 1.6rem; transition: opacity .35s, filter .35s; }
.ra-package-step.is-locked { opacity: .38; filter: saturate(.4); pointer-events: none; }
.ra-package-step h2 { font-size: 1.15rem; display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.ra-step-no {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%; flex: none;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff;
    font-size: .95rem; font-weight: 760;
}
.ra-step-optional { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); border: 1px solid var(--stroke-hi); border-radius: 999px; padding: .15rem .6rem; margin-left: .5rem; vertical-align: middle; }
.ra-package-step-hint { color: var(--muted); font-size: .88rem; margin: -.3rem 0 1rem; }
.ra-acc-row { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; padding: .35rem 0; font-size: .84rem; border-bottom: 1px dashed var(--stroke); }
.ra-acc-row:last-child { border-bottom: 0; }
.ra-acc-row em { color: var(--muted); font-style: normal; font-size: .78rem; }
.ra-acc-row b { color: var(--txt); white-space: nowrap; }
.ra-package-acc-list { display: block; }
.ra-package-filters { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.ra-package-filters .ra-select { min-width: 200px; }
.ra-package-count { color: var(--muted); font-size: .84rem; padding-bottom: .6rem; }
.ra-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.ra-package-item {
    display: flex; flex-direction: column; gap: .35rem; padding: .9rem; text-align: left;
    background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
    cursor: pointer;
}
.ra-package-item:hover { transform: translateY(-3px); border-color: var(--stroke-hi); }
.ra-package-item.is-selected { border-color: var(--blue); box-shadow: var(--glow-blue); background: rgba(255, 45, 45, .07); }
.ra-package-item img { width: 100%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 10px 12px rgba(0, 0, 0, .45)); }
.ra-package-item .pk-name { font-size: .78rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ra-package-item .pk-spec { font-size: .72rem; color: var(--muted); }
.ra-package-item .pk-price { font-family: var(--font-d); font-weight: 700; font-size: .9rem; color: var(--blue); margin-top: auto; }
.ra-package-more { margin: 1.1rem auto 0; display: flex; }

.ra-package-summary { position: sticky; top: 96px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ra-package-summary h3 { margin: 0; font-size: 1.15rem; }
.ra-package-slot-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.ra-package-slot-body { display: flex; align-items: center; gap: .8rem; padding: .8rem; border: 1px dashed var(--stroke-hi); border-radius: var(--radius-sm); font-size: .86rem; }
.ra-package-slot-body.is-empty { color: var(--muted); justify-content: center; }
.ra-package-slot-body:not(.is-empty) { border-style: solid; border-color: rgba(255, 45, 45, .4); background: rgba(255, 45, 45, .05); }
.ra-package-slot-body img { width: 52px; height: 52px; object-fit: contain; flex: none; }
.ra-package-slot-body strong { display: block; font-size: .8rem; line-height: 1.3; }
.ra-package-slot-body small { color: var(--blue); font-weight: 600; }
.ra-package-perks { list-style: none; margin: 0; padding: .9rem 1rem; display: flex; flex-direction: column; gap: .35rem; background: rgba(74, 222, 128, .06); border: 1px solid rgba(74, 222, 128, .25); border-radius: var(--radius-sm); font-size: .84rem; color: #a7e8bd; }
.ra-package-total { display: flex; align-items: baseline; justify-content: space-between; padding-top: .6rem; border-top: 1px solid var(--stroke); }
.ra-package-total span { color: var(--muted); font-size: .86rem; }
.ra-package-total strong { font-family: var(--font-d); font-size: 1.45rem; font-weight: 760; }
.ra-package-note { margin: 0; text-align: center; color: var(--muted); font-size: .8rem; }
#pk-add:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }

@media (max-width: 980px) {
    .ra-package-layout { grid-template-columns: 1fr; }
    .ra-package-summary { position: static; order: 2; }
    .ra-package-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Căutare live — sugestii */
.ra-searchbar-form { position: relative; }
.ra-search-suggestions {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 99;
    background: var(--glass-strong); backdrop-filter: blur(20px);
    border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); overflow: hidden;
}
.ra-sugg { display: flex; align-items: center; gap: .9rem; padding: .7rem 1rem; transition: background .2s; border-bottom: 1px solid var(--stroke); }
.ra-sugg:last-child { border-bottom: 0; }
.ra-sugg:hover { background: rgba(255, 45, 45, .08); }
.ra-sugg img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.ra-sugg-body { flex: 1; min-width: 0; }
.ra-sugg-body strong { display: block; font-size: .88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ra-sugg-body small { color: var(--muted); font-size: .78rem; }
.ra-sugg-price { font-family: var(--font-d); font-weight: 700; font-size: .9rem; color: var(--blue); white-space: nowrap; }

/* Buton comparare pe card */
.ra-compare-btn {
    position: absolute; top: 3.4rem; right: .8rem; z-index: 3;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(10, 14, 22, .6); border: 1px solid var(--stroke);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); backdrop-filter: blur(6px);
    transition: color .25s, border-color .25s, transform .25s var(--ease);
}
.ra-compare-btn svg { width: 17px; height: 17px; }
.ra-compare-btn:hover { transform: scale(1.12); color: var(--blue); border-color: var(--blue); }
.ra-compare-btn.is-active { color: var(--blue); border-color: var(--blue); background: rgba(255, 45, 45, .15); }

/* Bară comparator */
.ra-compare-bar {
    position: fixed; z-index: 93; left: 1.2rem; bottom: 1.2rem;
    display: flex; align-items: center; gap: .8rem;
    padding: .7rem .9rem;
    animation: ra-cookie-in .5s var(--ease);
}
.ra-compare-thumbs { display: flex; gap: .4rem; }
.ra-compare-thumb { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--stroke); background: #0b0f17; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--muted); }
.ra-compare-thumb img { width: 85%; height: 85%; object-fit: contain; }
#ra-compare-open:disabled { opacity: .5; }

/* Modal comparator */
.ra-compare-panel { display: block; width: min(880px, 100%); }
.ra-compare-panel h3 { margin: 0 0 1.2rem; }
.ra-compare-table-wrap { overflow-x: auto; }
.ra-compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.ra-compare-table th { text-align: left; color: var(--muted); font-weight: 600; padding: .6rem .8rem; width: 110px; white-space: nowrap; }
.ra-compare-table td { padding: .6rem .8rem; border-left: 1px solid var(--stroke); vertical-align: middle; min-width: 160px; }
.ra-compare-table tr { border-bottom: 1px solid var(--stroke); }
.ra-compare-table tr:first-child, .ra-compare-table tr:last-child { border-bottom: 0; }
.ra-cmp-prod { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.ra-cmp-prod img { width: 90px; height: 90px; object-fit: contain; }
.ra-cmp-prod strong { font-size: .84rem; line-height: 1.3; }
.ra-cmp-prod:hover strong { color: var(--blue); }
.ra-cmp-price { font-family: var(--font-d); font-size: 1.05rem; color: var(--blue); }

/* Înapoi sus */
.ra-backtotop {
    position: fixed; z-index: 92; right: 1.2rem; bottom: 5.4rem;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--glass-strong); border: 1px solid var(--stroke-hi);
    backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.ra-backtotop:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

/* Buton WhatsApp plutitor */
.ra-whatsapp {
    position: fixed; z-index: 92; right: 1.2rem; bottom: 1.2rem;
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    transition: transform .25s var(--ease), box-shadow .25s;
}
.ra-whatsapp svg { width: 28px; height: 28px; }
.ra-whatsapp:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37, 211, 102, .6); }
.ra-whatsapp-tip {
    position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
    padding: .45rem .85rem; border-radius: 10px; white-space: nowrap;
    background: var(--glass-strong); border: 1px solid var(--stroke);
    color: var(--txt); font-size: .8rem; font-weight: 600;
    opacity: 0; pointer-events: none; transition: opacity .25s;
}
.ra-whatsapp:hover .ra-whatsapp-tip { opacity: 1; }

/* Credit footer */
.ra-credit { font-size: .8rem; color: var(--muted); }
.ra-credit a { color: var(--blue); font-weight: 600; }

/* Harta de contact */
/* Hero pagina Contact — imagine + scrim, texte peste */
.ra-contact-hero { position: relative; overflow: hidden; padding: 9rem 0 3.4rem; margin-bottom: 2.6rem; border-bottom: 1px solid var(--stroke); }
.ra-contact-hero-media { position: absolute; inset: 0; z-index: 0; }
.ra-contact-hero-media::before {
    content: ''; position: absolute; inset: 0;
    background: url('../img/photos/service-tire.jpg') center / cover no-repeat;
    opacity: .55;
    mask-image: radial-gradient(120% 120% at 82% 25%, #000 18%, transparent 72%);
    -webkit-mask-image: radial-gradient(120% 120% at 82% 25%, #000 18%, transparent 72%);
}
.ra-contact-hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--bg-0) 8%, rgba(4,6,10,.62) 42%, rgba(4,6,10,.1) 68%, transparent 82%),
                linear-gradient(180deg, transparent 55%, var(--bg-0) 99%);
}
/* Conținut aliniat la stânga (containerul rămâne centrat, textul NU) */
.ra-contact-hero-inner { position: relative; z-index: 1; }
.ra-contact-hero-inner h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); max-width: 16ch; margin: .4rem 0 .9rem; }
.ra-contact-hero-inner p { color: var(--muted); font-size: 1.02rem; max-width: 46ch; margin: 0; }
.ra-contact-hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.7rem; }
@media (max-width: 560px) {
    .ra-contact-hero { padding-top: 8rem; }
    .ra-contact-hero-actions { gap: .6rem; flex-wrap: nowrap; }
    .ra-contact-hero-actions .ra-btn { flex: 1; justify-content: center; padding-left: .8rem; padding-right: .8rem; }
}
.ra-contact-page { padding-top: 0; }
.ra-contact-map { margin-top: 1.6rem; overflow: hidden; padding: 0; }

/* Pagina „Mulțumim" (mesaj trimis) — confirmare centrată */
.ra-thankyou { position: relative; overflow: hidden; min-height: 76vh; display: flex; align-items: center; padding: 9rem 0 4rem; }
.ra-thankyou-media { position: absolute; inset: 0; z-index: 0; }
.ra-thankyou-media::before {
    content: ''; position: absolute; inset: 0;
    background: url('../img/photos/hero-garage.jpg') center / cover no-repeat;
    opacity: .16;
    mask-image: radial-gradient(80% 80% at 50% 40%, #000 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 10%, transparent 70%);
}
.ra-thankyou-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, var(--bg-0) 99%); }
.ra-thankyou-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin-inline: auto; }
.ra-thankyou-inner .ra-eyebrow { justify-content: center; }
.ra-thankyou-inner h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: .4rem 0 .9rem; }
.ra-thankyou-inner p { color: var(--muted); font-size: 1.05rem; max-width: 50ch; margin: 0 auto; }
.ra-thankyou-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin: 1.9rem 0 1.3rem; }
.ra-thankyou-urgent { font-size: .9rem; color: var(--muted); }
.ra-thankyou-urgent a { color: var(--blue); font-weight: 640; }
.ra-contact-map iframe { display: block; filter: invert(90%) hue-rotate(180deg) saturate(.8); }

/* Estimare livrare + urgență stoc */
.ra-delivery-eta {
    display: flex; align-items: flex-start; gap: .6rem;
    padding: .8rem 1rem; margin: .8rem 0 0;
    background: rgba(74, 222, 128, .07); border: 1px solid rgba(74, 222, 128, .25); border-radius: var(--radius-sm);
    font-size: .88rem; color: #cfe9d8;
}
.ra-delivery-eta svg { width: 20px; height: 20px; color: #4ade80; flex: none; margin-top: 1px; }
.ra-delivery-eta strong { color: #4ade80; }
.ra-stock-urgency { color: #fbbf24; font-weight: 640; font-size: .9rem; margin: .7rem 0 0; }

/* FAQ acordeon */
.ra-faq .ra-section-head { max-width: 820px; margin-inline: auto; text-align: center; }
.ra-faq .ra-section-head .ra-eyebrow { justify-content: center; }
.ra-faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: .8rem; }
.ra-faq-item {
    background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    transition: border-color .3s;
}
.ra-faq-item[open] { border-color: rgba(255, 45, 45, .4); }
.ra-faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.1rem 1.3rem; cursor: pointer; font-weight: 640; font-size: .98rem;
    list-style: none;
}
.ra-faq-item summary::-webkit-details-marker { display: none; }
.ra-faq-item summary::after { content: '+'; font-family: var(--font-d); font-size: 1.3rem; color: var(--blue); transition: transform .3s var(--ease); flex: none; }
.ra-faq-item[open] summary::after { transform: rotate(45deg); }
.ra-faq-item p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--muted); font-size: .93rem; }

/* Pagina de contact */
.ra-contact-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 1.6rem; align-items: start; }
.ra-contact-form { padding: 1.8rem; }
.ra-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.ra-field { display: flex; flex-direction: column; gap: .45rem; font-size: .82rem; font-weight: 600; color: var(--muted); }
.ra-field-full { grid-column: 1 / -1; }
.ra-field input, .ra-field textarea {
    background: rgba(255, 255, 255, .04); border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    color: var(--txt); font-size: .95rem; font-family: var(--font-b);
    padding: .8rem 1rem; outline: none; resize: vertical;
    transition: border-color .25s, box-shadow .25s;
}
.ra-field input:focus, .ra-field textarea:focus { border-color: var(--blue); box-shadow: var(--glow-blue); }
.ra-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.ra-contact-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap; }
.ra-contact-status { margin: 0; font-size: .88rem; color: var(--muted); flex: 1; }
.ra-contact-status.is-ok { color: #4ade80; }
.ra-contact-status.is-err { color: var(--red); }
.ra-contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.ra-contact-card { padding: 1.4rem; display: flex; flex-direction: column; gap: .4rem; }
.ra-contact-card h3 { margin: 0 0 .4rem; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.ra-contact-card a { color: var(--txt); transition: color .2s; }
.ra-contact-card a:hover { color: var(--blue); }
.ra-contact-card span, .ra-contact-card p { color: var(--muted); font-size: .92rem; margin: 0; }
.ra-contact-big { font-family: var(--font-d); font-weight: 720; font-size: 1.3rem; }
.ra-contact-card .ra-btn { margin-top: .6rem; align-self: flex-start; }
@media (max-width: 900px) {
    .ra-contact-layout { grid-template-columns: 1fr; }
    .ra-contact-grid { grid-template-columns: 1fr; }
}

/* Banner cookie-uri */
.ra-cookiebar {
    position: fixed; z-index: 94; left: 50%; bottom: 1.2rem;
    transform: translateX(-50%);
    width: min(680px, calc(100vw - 2rem));
    display: flex; align-items: center; gap: 1.2rem;
    padding: 1rem 1.3rem;
    animation: ra-cookie-in .6s var(--ease);
}
@keyframes ra-cookie-in { from { opacity: 0; transform: translateX(-50%) translateY(24px); } }
.ra-cookiebar p { margin: 0; font-size: .86rem; color: var(--muted); flex: 1; }
.ra-cookiebar p a { color: var(--blue); text-decoration: underline; }
.ra-cookiebar-actions { display: flex; gap: .5rem; flex-shrink: 0; }
@media (max-width: 640px) {
    .ra-cookiebar { flex-direction: column; align-items: stretch; text-align: center; }
    .ra-cookiebar-actions { justify-content: center; }
}

/* CookieYes (plugin GDPR) — armonizare cu tema dark */
.cky-consent-container .cky-consent-bar,
.cky-modal .cky-preference-center {
    background: var(--glass-strong) !important;
    border: 1px solid var(--stroke) !important;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow) !important;
}
.cky-consent-container .cky-consent-bar { border-radius: var(--radius) !important; }
.cky-title, .cky-preference-title, .cky-consent-container p, .cky-preference-center p,
.cky-consent-container .cky-notice-des, .cky-accordion-header-des, .cky-always-active + *,
.cky-preference-content-wrapper, .cky-accordion-btn {
    color: var(--txt) !important;
}
.cky-notice-des, .cky-preference-content-wrapper p, .cky-accordion-header-des { color: var(--muted) !important; }
.cky-notice-des a, .cky-preference-content-wrapper a { color: var(--blue) !important; }
.cky-btn-accept, .cky-btn-preferences.cky-btn-accept {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)) !important;
    color: #ffffff !important; border: 0 !important; border-radius: 999px !important; font-weight: 700 !important;
}
.cky-btn-reject, .cky-btn-customize, .cky-btn-preferences {
    background: rgba(255, 255, 255, .03) !important; color: var(--txt) !important;
    border: 1px solid var(--stroke-hi) !important; border-radius: 999px !important; font-weight: 600 !important;
}
.cky-btn-reject:hover, .cky-btn-customize:hover { border-color: var(--blue) !important; color: var(--blue) !important; }
.cky-accordion, .cky-accordion-item { background: var(--glass) !important; border-color: var(--stroke) !important; }
.cky-footer-shadow { display: none !important; }
.cky-preference-center { max-width: min(845px, calc(100vw - 20px)) !important; }
.cky-btn-revisit-wrapper { background: var(--blue-deep) !important; }

/* Empty state */
.ra-empty { padding: 3.4rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; color: var(--muted); }
.ra-empty svg { width: 64px; height: 64px; color: #2c3648; }
.ra-empty p { max-width: 30rem; margin: 0; }

/* Articole / conținut */
.ra-article.ra-glass { padding: 2rem; }
.ra-article { max-width: 820px; margin-inline: auto; }
/* Coș / checkout / cont: layout pe coloane WooCommerce Blocks — lățime întreagă. */
.ra-article-wide { max-width: none; }
/* Rândurile din coș/checkout: fără lista tehnică din descriere (numele conține deja specificațiile). */
.wc-block-components-product-metadata__description { display: none; }
.ra-article-head { margin-bottom: 1.6rem; }
.ra-prose { color: #cfd6e2; line-height: 1.75; }
.ra-prose a { color: var(--blue); }
.ra-prose h2 { font-size: 1.3rem; margin-top: 1.8em; }
.ra-prose ul, .ra-prose ol { padding-left: 1.3rem; }
.ra-prose li { margin-bottom: .4rem; }
.ra-article-cta { margin-top: 2.4rem; }
.ra-post-nav { display: flex; justify-content: space-between; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* Blog listing */
.ra-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.ra-blog-card { padding: 0; display: flex; flex-direction: column; overflow: hidden; transform-style: preserve-3d; transition: transform .35s var(--ease), border-color .35s; }
.ra-blog-card:hover { border-color: rgba(255, 45, 45, .4); }
.ra-blog-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.ra-blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ra-blog-card:hover .ra-blog-media img { transform: scale(1.05); }
.ra-blog-body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.ra-blog-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ra-blog-date { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.ra-blog-rtime { font-size: .78rem; color: var(--muted); }
.ra-blog-title { font-size: 1.15rem; margin: 0; line-height: 1.35; }
.ra-blog-title a:hover { color: var(--blue); }
.ra-blog-excerpt { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.ra-blog-more { font-weight: 640; font-size: .9rem; color: var(--blue); }
@media (max-width: 980px) { .ra-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ra-blog-grid { grid-template-columns: 1fr; } }

/* Banner compact cu imagine în capul listei de blog */
.ra-blog-hero { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--stroke); padding: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: clamp(2rem, 4vw, 3rem); min-height: 220px; display: flex; align-items: center; }
.ra-blog-hero-media { position: absolute; inset: 0; z-index: 0; }
.ra-blog-hero-media::before {
    content: ''; position: absolute; inset: 0;
    background: url('../img/photos/wheel-closeup.jpg') center 35% / cover no-repeat;
    opacity: .5;
    mask-image: radial-gradient(120% 130% at 85% 30%, #000 12%, transparent 72%);
    -webkit-mask-image: radial-gradient(120% 130% at 85% 30%, #000 12%, transparent 72%);
}
.ra-blog-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-1) 12%, rgba(9,13,20,.6) 45%, transparent 80%); }
.ra-blog-hero-inner { position: relative; z-index: 1; max-width: 620px; }
.ra-blog-hero-inner h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: .4rem 0 .7rem; }
.ra-blog-hero-inner p { color: var(--muted); font-size: 1.02rem; margin: 0; max-width: 46ch; }

/* Bandă CTA sub lista de articole */
.ra-blog-cta { margin-top: 2.5rem; padding: 2.2rem 2.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; }
.ra-blog-cta-copy h2 { font-size: 1.4rem; margin: 0 0 .4rem; }
.ra-blog-cta-copy p { color: var(--muted); margin: 0; max-width: 50ch; }

/* Hero de pagină reutilizabil (imagine via --phero-img) */
/* Hero unificat pentru toate paginile (același format ca pagina Contact) */
.ra-phero { position: relative; overflow: hidden; padding: 9rem 0 3.4rem; margin-bottom: 2.6rem; border-bottom: 1px solid var(--stroke); }
.ra-phero-media { position: absolute; inset: 0; z-index: 0; }
.ra-phero-media::before {
    content: ''; position: absolute; inset: 0;
    background: var(--phero-img) center / cover no-repeat;
    opacity: .55;
    mask-image: radial-gradient(120% 120% at 82% 25%, #000 18%, transparent 72%);
    -webkit-mask-image: radial-gradient(120% 120% at 82% 25%, #000 18%, transparent 72%);
}
.ra-phero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--bg-0) 8%, rgba(4,6,10,.62) 42%, rgba(4,6,10,.1) 68%, transparent 82%),
                linear-gradient(180deg, transparent 55%, var(--bg-0) 99%);
}
.ra-phero-inner { position: relative; z-index: 1; }
.ra-phero-inner h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); max-width: 16ch; margin: .4rem 0 .9rem; }
.ra-phero-inner p { color: var(--muted); font-size: 1.02rem; max-width: 46ch; margin: 0; }
.ra-phero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.7rem; }
/* Secțiunea / containerul imediat după hero nu mai adaugă spațiu propriu sus */
.ra-phero + .ra-section { padding-top: 0; }
.ra-page-flush { padding-top: 0; }
@media (max-width: 560px) {
    .ra-phero { padding-top: 8rem; }
    .ra-phero-actions { gap: .6rem; flex-wrap: nowrap; }
    .ra-phero-actions .ra-btn { flex: 1; justify-content: center; padding-left: .8rem; padding-right: .8rem; }
}

/* Despre — secțiunea poveste (2 coloane) */
.ra-about-story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.ra-about-story-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: .4rem 0 1rem; }
.ra-about-story-copy p { color: var(--muted); margin: 0 0 1rem; line-height: 1.75; }
.ra-about-story-ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.ra-about-story-img { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--stroke); }
.ra-about-story-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
@media (max-width: 860px) { .ra-about-story-grid { grid-template-columns: 1fr; gap: 2rem; } .ra-about-story-img { order: -1; } }

/* Despre — bandă statistici */
.ra-about-statsband { border-block: 1px solid var(--stroke); background: var(--glass); padding: 2.6rem 0; }
.ra-about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 0; text-align: center; }
.ra-about-stats dt { font-family: var(--font-d); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 760; color: var(--txt); }
.ra-about-stats dd { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; }
@media (max-width: 640px) { .ra-about-stats { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }

/* Articol single: imagine hero */
.ra-article-hero { margin: 0 0 2rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--stroke); }
.ra-article-hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

/* Articol single — layout pe 2 coloane (text + rail lipicios) */
.ra-article-single { max-width: 1080px; margin-inline: auto; }
.ra-breadcrumb { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.ra-breadcrumb a { color: var(--muted); transition: color .2s; }
.ra-breadcrumb a:hover { color: var(--blue); }
.ra-breadcrumb-current { color: var(--txt); }
.ra-article-byline { color: var(--muted); font-size: .9rem; margin: .7rem 0 0; }
.ra-article-byline strong { color: var(--txt); font-weight: 640; }
.ra-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3rem; align-items: start; }
.ra-article-rail { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 1.2rem; }
/* Cuprins */
.ra-toc { padding: 1.2rem 1.3rem; }
.ra-toc-title { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; }
.ra-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.ra-toc a { display: block; color: var(--muted); font-size: .9rem; line-height: 1.35; border-left: 2px solid var(--stroke); padding-left: .75rem; transition: color .2s, border-color .2s; }
.ra-toc a:hover { color: var(--blue); border-color: var(--blue); }
/* Share */
.ra-share { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.ra-share-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ra-share-btns { display: flex; gap: .5rem; }
.ra-share-btn { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--stroke); background: var(--glass); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: color .2s, border-color .2s, transform .2s; }
.ra-share-btn svg { width: 18px; height: 18px; }
.ra-share-btn:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.ra-share-copy.is-copied { color: #4ade80; border-color: #4ade80; }
/* Card CTA din rail */
.ra-rail-cta { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.ra-rail-cta strong { font-family: var(--font-d); font-size: 1.02rem; }
.ra-rail-cta p { color: var(--muted); font-size: .86rem; margin: 0 0 .5rem; }
.ra-rail-cta .ra-btn { justify-content: center; }
/* Articole similare */
.ra-related { margin-top: 3.5rem; }
.ra-related-title { font-size: 1.4rem; margin-bottom: 1.4rem; }
@media (max-width: 900px) {
    .ra-article-layout { grid-template-columns: 1fr; gap: 2rem; }
    .ra-article-rail { position: static; }
}

/* Contul meu (WooCommerce) */
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.woocommerce-MyAccount-navigation li a {
    display: inline-block; padding: .55rem 1.15rem; border-radius: 999px;
    border: 1px solid var(--stroke); font-weight: 600; font-size: .9rem;
    transition: all .25s var(--ease);
}
.woocommerce-MyAccount-navigation li a:hover { border-color: var(--blue); color: var(--blue); }
.woocommerce-MyAccount-navigation li.is-active a { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #ffffff; border-color: transparent; }
.woocommerce-MyAccount-content { background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 1.8rem; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    background: rgba(255, 255, 255, .04); border: 1px solid var(--stroke); border-radius: var(--radius-sm);
    color: var(--txt); padding: .75rem 1rem; width: 100%;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--blue); outline: none; box-shadow: var(--glow-blue); }
.woocommerce form .form-row label { color: var(--muted); font-size: .88rem; }
.woocommerce-button, .woocommerce button.button, .woocommerce a.button {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)) !important; color: #ffffff !important;
    border-radius: 999px !important; font-weight: 700 !important; border: 0 !important; padding: .7rem 1.5rem !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* Meniu complet (9 itemi + buton) doar pe ecrane largi; sub 1180px trece pe hamburger. */
@media (max-width: 1180px) {
    .ra-nav { display: none; }
    .ra-burger { display: flex; }
}
/* Între 1181–1400px compactăm puțin ca să încapă curat. */
@media (min-width: 1181px) and (max-width: 1400px) {
    .ra-header-inner { gap: 1.2rem; }
    .ra-nav-list { gap: .15rem; }
    .ra-nav-list > li > a { padding: .5rem .62rem; font-size: .88rem; }
    .ra-nav-pill { padding: .5rem .8rem !important; }
    .ra-nav-pill svg { width: 16px; height: 16px; }
}
@media (max-width: 1120px) {
    .ra-product-grid { grid-template-columns: repeat(3, 1fr); }
    .ra-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .ra-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .ra-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
    .ra-nav { display: none; }
    .ra-burger { display: flex; }
    .ra-hero { padding-top: 6rem; }
    .ra-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .ra-hero-copy { order: 2; display: flex; flex-direction: column; align-items: center; }
    .ra-hero-wheel { order: 1; }
    .ra-wheel-stage { width: min(360px, 76vw); }
    .ra-hero-ctas { justify-content: center; }
    .ra-hero-stats { justify-content: center; gap: 1.8rem; }
    .ra-fitment-grid { grid-template-columns: 1fr 1fr; }
    .ra-cat-grid, .ra-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .ra-config-inner { grid-template-columns: 1fr; }
    .ra-config-stage { order: -1; }
    .single-product div.product { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    /* Mobil: o singură coloană de produse (homepage + magazin), carduri uniforme, butoane pe rând. */
    .ra-product-grid, .ra-shop-main .ra-product-grid { grid-template-columns: 1fr; gap: 1rem; }
    .ra-fitment-grid { grid-template-columns: 1fr; }
    .ra-cat-grid, .ra-trust-grid, .ra-reviews-grid { grid-template-columns: 1fr; }
    .ra-footer-grid { grid-template-columns: 1fr 1fr; }
    .ra-modal-panel { grid-template-columns: 1fr; }
    .ra-hero-stats dt { font-size: 1.2rem; }
    .ra-filterbar .ra-select { max-width: none; min-width: calc(50% - .5rem); }
}

/* ============ PAGINI INFO (Ghid, Livrare, Retururi) ============ */
/* hero-ul folosește exact componenta .ra-phero (identic cu pagina Contact) */
.ra-info-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 0; padding: 0; }
.ra-info-chips li {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .5rem .95rem; border: 1px solid var(--stroke); border-radius: 999px;
    background: var(--glass); font-size: .85rem; font-weight: 600; color: #e7ecf5;
}
.ra-info-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }

.ra-info-body { padding-top: clamp(2.4rem, 5vw, 3.6rem); }
.ra-info-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 4vw, 3.4rem); align-items: start; }

.ra-info-prose { max-width: 780px; font-size: 1.02rem; }
.ra-info-prose > p:first-of-type { font-size: 1.15rem; line-height: 1.7; color: #e7ecf5; }
.ra-info-prose h2 { position: relative; padding-left: 1rem; font-size: 1.35rem; margin-top: 2.3em; margin-bottom: .7em; }
.ra-info-prose h2::before {
    content: ''; position: absolute; left: 0; top: .18em; bottom: .18em; width: 4px;
    border-radius: 3px; background: linear-gradient(var(--blue), var(--blue-deep));
}
.ra-info-prose ul, .ra-info-prose ol { list-style: none; padding-left: 0; }
.ra-info-prose ul li { position: relative; padding-left: 2rem; margin-bottom: .75rem; }
.ra-info-prose ul li::before {
    content: '✓'; position: absolute; left: 0; top: .06em;
    width: 1.35rem; height: 1.35rem; display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 700; color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)); border-radius: 50%;
}
.ra-info-prose ol { counter-reset: ra-steps; }
.ra-info-prose ol li { position: relative; padding-left: 2.5rem; margin-bottom: .95rem; counter-increment: ra-steps; }
.ra-info-prose ol li::before {
    content: counter(ra-steps); position: absolute; left: 0; top: -.05em;
    width: 1.7rem; height: 1.7rem; display: flex; align-items: center; justify-content: center;
    font-size: .88rem; font-weight: 700; color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep)); border-radius: 50%;
}

.ra-info-aside { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 1rem; }
.ra-help-card { padding: 1.5rem; border-radius: var(--radius); }
.ra-help-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255, 45, 45, .12); color: var(--blue); margin-bottom: .85rem; }
.ra-help-icon svg { width: 24px; height: 24px; }
.ra-help-card strong { display: block; font-size: 1.06rem; margin-bottom: .4rem; }
.ra-help-card p { color: var(--muted); font-size: .92rem; margin: 0 0 1.1rem; line-height: 1.55; }
.ra-help-hours { display: block; margin-top: .85rem; font-size: .8rem; color: var(--muted); text-align: center; }
.ra-help-link { display: inline-block; margin-top: .7rem; color: var(--blue); font-weight: 600; font-size: .9rem; }
.ra-btn-block { display: flex; width: 100%; justify-content: center; margin-bottom: .6rem; }
.ra-btn-block:last-of-type { margin-bottom: 0; }

@media (max-width: 900px) {
    .ra-info-layout { grid-template-columns: 1fr; }
    .ra-info-aside { position: static; flex-direction: row; flex-wrap: wrap; }
    .ra-info-aside > * { flex: 1 1 260px; }
}
@media (max-width: 560px) {
    .ra-info-aside { flex-direction: column; }
}
