/* ============================================================
   Dual Motors — motociclete.com.ro
   Design system: "Refined Motorsport Showroom"
   Light, airy, big imagery, one sharp red accent.
   ============================================================ */

:root {
    /* Brand red sampled from logo (#FF0000), refined for white backgrounds */
    --red:       #E10600;
    --red-dark:  #B00500;
    --red-soft:  #FFF1F0;

    --ink:       #0E0E10;
    --ink-2:     #2A2A2E;
    --muted:     #6B6B72;
    --line:      #E7E7EB;
    --surface:   #F6F6F7;
    --bg:        #FFFFFF;
    --black:     #08080A;

    --display: "Archivo Expanded", "Archivo", system-ui, sans-serif;
    --head:    "Archivo", system-ui, sans-serif;
    --body:    "Hanken Grotesk", system-ui, sans-serif;

    --container: 1600px;
    --pad: clamp(1.1rem, 4vw, 2.5rem);
    --radius: 16px;
    --radius-sm: 10px;

    --shadow-sm: 0 1px 2px rgba(8,8,10,.06), 0 4px 14px rgba(8,8,10,.05);
    --shadow-md: 0 10px 40px rgba(8,8,10,.10);
    --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
select { font: inherit; }
ul { list-style: none; padding: 0; }

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

/* ---------- shared type ---------- */
.kicker {
    display: inline-block;
    font-family: var(--head);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}
.kicker--light { color: #ff5b52; }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1.5rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); flex-wrap: wrap;
}
.section__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4.4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -.01em;
}

.link-arrow {
    font-family: var(--head); font-weight: 700; font-size: .9rem;
    letter-spacing: .02em; color: var(--ink);
    display: inline-flex; align-items: center; gap: .5rem;
    border-bottom: 2px solid transparent; padding-bottom: 2px;
    transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--red); border-color: var(--red); }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow--sm { font-size: .82rem; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
    --bg-btn: var(--ink);
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--head); font-weight: 700; font-size: .95rem;
    letter-spacing: .01em;
    padding: .9rem 1.5rem; border-radius: 999px;
    background: var(--bg-btn); color: #fff;
    transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg-btn: var(--red); }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost {
    background: transparent; color: var(--ink);
    box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: transparent; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ---------- media placeholder (until real photos arrive) ---------- */
.media-ph {
    position: relative; overflow: hidden;
    background:
        linear-gradient(135deg, #f0f0f2 0%, #e7e7ea 100%);
    border-radius: var(--radius-sm);
    display: grid; place-items: center;
}
.media-ph::after {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(8,8,10,.035) 0 2px, transparent 2px 11px);
    pointer-events: none;
}
.media-ph__label {
    position: relative; z-index: 1;
    font-family: var(--head); font-weight: 700; font-size: .8rem;
    letter-spacing: .12em; text-transform: uppercase; color: #a6a6ad;
}
.media-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0);
    transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom-color: var(--line);
    box-shadow: 0 1px 0 rgba(8,8,10,.02);
}
.site-header__inner { display: flex; align-items: center; gap: 2rem; height: 84px; }
.brand__logo { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: .35rem; margin-left: .5rem; }
.nav__item { position: static; }
.nav__link {
    display: inline-flex; align-items: center; gap: .35rem;
    font-family: var(--head); font-weight: 600; font-size: .95rem;
    padding: .6rem .85rem; border-radius: 8px; color: var(--ink-2);
    transition: color .2s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__caret { transition: transform .3s var(--ease); opacity: .6; }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* mega menu */
.mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav__item.is-open .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__inner { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding-block: 2.4rem; align-items: start; }
.mega__cols { display: flex; gap: clamp(1.5rem, 3vw, 3rem); }
.mega__col { min-width: 140px; }
.mega__title { font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--muted); display: block; margin-bottom: .9rem; }
.mega__list { display: flex; flex-direction: column; gap: .15rem; }
.mega__list a {
    font-family: var(--head); font-weight: 600; font-size: 1rem;
    padding: .3rem 0; display: inline-block; color: var(--ink-2);
    transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.mega__list a:hover { color: var(--red); padding-left: .35rem; }
.mega__feature {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    background: var(--surface); border-radius: var(--radius); overflow: hidden;
    min-height: 220px; padding: 1.4rem; color: var(--ink); isolation: isolate;
    transition: transform .3s var(--ease);
}
.mega__feature:hover { transform: translateY(-3px); }
.mega__feature-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.mega__feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(8,8,10,.78) 100%); }
.mega__feature:has(.mega__feature-img) { color: #fff; }
.mega__feature:has(.mega__feature-img) .mega__feature-kicker { color: #ff5b52; }
.mega__feature:has(.mega__feature-img) .link-arrow { color: #fff; }
.mega__feature-kicker { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.mega__feature-title { font-family: var(--display); font-weight: 800; font-size: 1.3rem; line-height: 1.08; margin: .4rem 0 .8rem; }

.site-header__actions { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.iconbtn {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    color: var(--ink); transition: background .2s var(--ease), color .2s var(--ease);
}
.iconbtn:hover { background: var(--surface); color: var(--red); }
.burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding-top: clamp(2rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 7vw, 6rem);
    background:
        radial-gradient(120% 80% at 85% -10%, var(--red-soft) 0%, transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--surface) 100%);
    overflow: hidden;
}
.hero__grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.hero__title {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: .96; letter-spacing: -.02em;
    margin-bottom: 1.4rem;
}
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 46ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.8rem; }
.hero__stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); border-top: 1px solid var(--line); padding-top: 1.6rem; }
.hero__stats dt { font-family: var(--display); font-weight: 800; font-size: 2.2rem; line-height: 1; }
.hero__stats dd { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

.hero__stage { position: relative; aspect-ratio: 16 / 11; }
.hero__media { position: relative; width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.media-corner {
    position: absolute; top: 0; right: 0; width: 76px; height: 76px; z-index: 2;
    background-image:
        conic-gradient(from 0deg, #111 0 25%, #fff 0 50%, #111 0 75%, #fff 0);
    background-size: 19px 19px;
    -webkit-mask: linear-gradient(225deg, #000 38%, transparent 38%);
            mask: linear-gradient(225deg, #000 38%, transparent 38%);
    opacity: .9;
}
.hero__ghost {
    position: absolute; left: -6%; bottom: -7%; z-index: 0;
    font-family: var(--display); font-weight: 900; font-size: clamp(4rem, 11vw, 9rem);
    color: transparent; -webkit-text-stroke: 1.5px rgba(225,6,0,.16);
    letter-spacing: -.03em; pointer-events: none; user-select: none;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands { border-block: 1px solid var(--line); background: #fff; }
.brands__inner { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: flex-start; padding-block: 2rem; }
.brands__group { display: flex; flex-direction: column; gap: .9rem; }
.brands__group:first-child { padding-right: clamp(1.5rem, 4vw, 3.5rem); border-right: 1px solid var(--line); }
.brands__lead { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.brands__row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.1rem, 3vw, 2.4rem); }
.brands__item {
    font-family: var(--display); font-weight: 800; font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: .02em; color: #c4c4c9;
    transition: color .25s var(--ease), transform .25s var(--ease);
}
.brands__item:hover { color: var(--ink); transform: translateY(-2px); }
@media (max-width: 720px) {
    .brands__group:first-child { border-right: 0; padding-right: 0; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); width: 100%; }
}

/* ============================================================
   GRIDS / CARDS
   ============================================================ */
.grid { display: grid; gap: 1.4rem; }
.grid--models { grid-template-columns: repeat(4, 1fr); }
.grid--articles { grid-template-columns: repeat(3, 1fr); }
.grid--acc { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.card-moto {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card-moto:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-moto__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface); }
.card-moto__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card-moto:hover .card-moto__media img { transform: scale(1.04); }
.badge {
    position: absolute; top: .8rem; left: .8rem; z-index: 2;
    background: var(--ink); color: #fff; font-family: var(--head); font-weight: 700;
    font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
    padding: .35rem .6rem; border-radius: 6px;
}
.card-moto__body { padding: 1.1rem 1.2rem 1.3rem; }
.card-moto__meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .7rem; }
.chip {
    font-family: var(--head); font-weight: 600; font-size: .72rem; letter-spacing: .03em;
    padding: .25rem .55rem; border-radius: 6px; background: var(--surface); color: var(--ink-2);
}
.chip--ghost { background: transparent; box-shadow: inset 0 0 0 1px var(--line); color: var(--muted); }
.chip--permis { background: var(--red-soft); color: var(--red-dark); }
.card-moto__name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; line-height: 1.05; margin-bottom: .9rem; }
.card-moto__foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--head); font-weight: 800; font-size: 1.15rem; }
.price small { display: block; font-weight: 500; font-size: .7rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* ============================================================
   FIT MY BIKE
   ============================================================ */
.fitbike { background: var(--black); color: #fff; padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; overflow: hidden; }
.fitbike::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(80% 60% at 12% 0%, rgba(225,6,0,.22) 0%, transparent 60%);
}
.fitbike__grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.fitbike__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3.8vw, 2.7rem); line-height: 1.04; margin-bottom: 1.1rem; }
.fitbike__text { color: #b7b7be; max-width: 42ch; margin-bottom: 1.8rem; }
.fitbike__text strong { color: #fff; }
.fitbike__form { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.fitbike__form label { display: flex; flex-direction: column; gap: .4rem; font-family: var(--head); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #8b8b93; }
.fitbike__form select {
    background: #161619; color: #fff; border: 1px solid #2a2a30; border-radius: 10px;
    padding: .8rem .9rem; font-weight: 500; letter-spacing: 0; text-transform: none;
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .9rem center;
}
.fitbike__form select:focus { outline: none; border-color: var(--red); }
.fitbike__form .btn { grid-column: 1 / -1; justify-content: center; margin-top: .3rem; }

.fitbike__results { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.3rem; }
.fitbike__results-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-family: var(--head); font-weight: 700; font-size: .85rem; color: #e7e7ea; }
.dot-live, .dot-demo { display: inline-flex; align-items: center; gap: .45rem; font-size: .72rem; font-weight: 600; letter-spacing: .03em; color: #9a9aa2; text-transform: none; }
.dot-live::before, .dot-demo::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.dot-live::before { background: #38d39f; box-shadow: 0 0 0 4px rgba(56,211,159,.18); }
.dot-demo::before { background: #ffb020; box-shadow: 0 0 0 4px rgba(255,176,32,.16); }

.card-acc {
    display: flex; flex-direction: column; gap: .35rem;
    background: #fff; border-radius: var(--radius-sm); padding: .7rem .7rem 1rem;
    transition: transform .25s var(--ease);
}
.card-acc:hover { transform: translateY(-4px); }
.card-acc__media { aspect-ratio: 1; margin-bottom: .5rem; }
.card-acc--ph { pointer-events: none; }
.card-acc__brand { font-family: var(--head); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.card-acc__name { font-weight: 600; font-size: .9rem; color: var(--ink); line-height: 1.3; min-height: 2.3em; }
.card-acc__price { font-family: var(--head); font-weight: 800; color: var(--ink); }
.fitbike__empty { grid-column: 1 / -1; color: #b7b7be; font-size: .95rem; padding: 1.5rem .2rem; }
.skeleton-line { display: block; height: .8em; border-radius: 4px; background: linear-gradient(90deg, #ececef 0%, #f6f6f7 50%, #ececef 100%); background-size: 200% 100%; animation: sk 1.3s linear infinite; }
.skeleton-line--sm { width: 40%; height: 1em; }
@keyframes sk { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ============================================================
   TEST RIDE BAND
   ============================================================ */
.ride { padding-block: clamp(3rem, 6vw, 5rem); }
.ride__inner {
    background: var(--surface); border-radius: 24px; padding: clamp(2rem, 5vw, 3.5rem);
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.ride__inner::after {
    content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(225,6,0,.10), transparent 70%);
}
.ride__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.05; margin-bottom: .7rem; }
.ride__text { color: var(--muted); max-width: 44ch; }
.ride .kicker--light { color: var(--red); }

/* ============================================================
   EDITORIAL
   ============================================================ */
.card-art { cursor: pointer; }
.card-art__media { aspect-ratio: 16 / 10; border-radius: var(--radius-sm); margin-bottom: 1rem; transition: transform .35s var(--ease); }
.card-art:hover .card-art__media { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.card-art__cat { font-family: var(--head); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.card-art__title { font-family: var(--head); font-weight: 700; font-size: 1.2rem; line-height: 1.25; margin-top: .4rem; }
.card-art:hover .card-art__title { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: #c7c7cd; padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; }
.wordmark { font-family: var(--display); font-weight: 900; font-size: 1.8rem; letter-spacing: .01em; color: #fff; }
.wordmark__accent { color: var(--red); }
.site-footer__logo { display: block; width: 150px; height: auto; margin-top: 1rem; }
.site-footer__tag { margin: 1rem 0 1.4rem; max-width: 38ch; color: #8b8b93; }
.site-footer__social { display: flex; gap: 1.2rem; }
.site-footer__social a { font-family: var(--head); font-weight: 600; font-size: .85rem; color: #c7c7cd; transition: color .2s var(--ease); }
.site-footer__social a:hover { color: var(--red); }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.fcol h4 { font-family: var(--head); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.fcol a, .fcol__text { display: block; color: #9a9aa2; font-size: .92rem; padding: .25rem 0; transition: color .2s var(--ease); }
.fcol a:hover { color: #fff; }
.fcol__text { line-height: 1.8; }
/* Dual Motors: o singură linie orizontală, lățime completă sub coloanele de categorii. */
.fcol--inline { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem .9rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.1rem; }
.fcol--inline h4 { margin: 0 .6rem 0 0; }
.fcol--inline a { display: inline-block; padding: 0; }
.fcol--inline a:not(:last-child)::after { content: "|"; margin-left: .9rem; color: #4a4a52; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.4rem; font-size: .82rem; color: #7c7c84; }
.site-footer__legal { display: flex; gap: 1.4rem; }
.site-footer__legal a:hover { color: #fff; }

/* ============================================================
   SKIP LINK / SMALL BUTTON / HEADER CTA
   ============================================================ */
.skip-link {
    position: absolute; left: 1rem; top: -3rem; z-index: 200;
    background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 8px;
    font-family: var(--head); font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }
.btn--sm { padding: .6rem 1.05rem; font-size: .85rem; }
.header-cta { margin-left: .5rem; }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow-md);
    animation: searchIn .25s var(--ease);
}
.search[hidden] { display: none; }
@keyframes searchIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.search__inner { padding-block: 1.4rem 1.6rem; }
.search__form { display: flex; align-items: center; gap: .8rem; border-bottom: 2px solid var(--ink); padding-bottom: .8rem; }
.search__icon { color: var(--muted); flex: 0 0 auto; }
.search__input {
    flex: 1; border: 0; outline: none; background: none;
    font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 2.6vw, 1.7rem);
    color: var(--ink);
}
.search__input::placeholder { color: #b6b6bc; }
.search__close { flex: 0 0 auto; }
.search__hints { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-top: 1rem; font-size: .85rem; color: var(--muted); }
.search__hints span { font-weight: 600; }
.search__hints a { padding: .35rem .75rem; border-radius: 999px; background: var(--surface); font-weight: 600; color: var(--ink-2); transition: background .2s var(--ease), color .2s var(--ease); }
.search__hints a:hover { background: var(--red-soft); color: var(--red-dark); }

/* search results page (/cauta) */
.search-page__form { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; max-width: 720px; border: 1px solid var(--line); border-radius: 999px; padding: .5rem .5rem .5rem 1.1rem; }
.search-page__form svg { color: var(--muted); flex: 0 0 auto; }
.search-page__form input { flex: 1; min-width: 0; border: 0; outline: none; background: none; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.search-page__form input::placeholder { color: #b6b6bc; }
.search-page__form .btn { flex: 0 0 auto; }
.search-group__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 1.2rem; display: flex; align-items: baseline; gap: .6rem; }
.search-group__title small { font-size: .8rem; font-weight: 600; color: var(--muted); }
.empty-state__hint { font-size: .9rem; }

/* ============================================================
   VIRTUAL TOUR
   ============================================================ */
.tour { padding-block: clamp(2rem, 5vw, 4rem); }
.tour__frame { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 7.5; box-shadow: var(--shadow-md); }
.tour__poster { width: 100%; height: 100%; object-fit: cover; }
.tour__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,10,.78) 0%, rgba(8,8,10,.35) 50%, transparent 80%); }
.tour__overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: .4rem; padding: clamp(1.5rem, 5vw, 3.5rem); color: #fff; }
.tour__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.05; max-width: 16ch; margin-bottom: 1.3rem; }
.tour__play { display: inline-grid; place-items: center; font-size: .7rem; }
.tour__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.tour--playing .tour__overlay, .tour--playing .tour__frame::after { display: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* No-JS safe: content is visible by default; only the .js class (set inline in
   <head>) opts into the hidden-then-revealed entrance. */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.hero[data-reveal-root] [data-reveal]:nth-child(1) { transition-delay: .05s; }
.hero[data-reveal-root] [data-reveal]:nth-child(2) { transition-delay: .12s; }
.hero[data-reveal-root] [data-reveal]:nth-child(3) { transition-delay: .19s; }
.hero[data-reveal-root] [data-reveal]:nth-child(4) { transition-delay: .26s; }
.hero[data-reveal-root] [data-reveal]:nth-child(5) { transition-delay: .33s; }
.hero__stage[data-reveal] { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid--models { grid-template-columns: repeat(2, 1fr); }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__stage { order: -1; aspect-ratio: 16/10; }
    .hero__ghost { display: none; }
    .fitbike__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .nav { display: none; }
    .burger { display: flex; }
    .mega { display: none; }
    .site-footer__top { grid-template-columns: 1fr; }
    .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
    .grid--articles { grid-template-columns: 1fr; }
    .grid--acc { grid-template-columns: repeat(2, 1fr); }
    .ride__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
    .grid--models { grid-template-columns: 1fr; }
    .hero__stats { gap: 1.3rem; }
    .hero__stats dt { font-size: 1.7rem; }
    .site-header__inner { height: 70px; }
    .brand__logo { height: 38px; }
}

/* ---------- mobile drawer (toggled by JS) ---------- */
.mobile-open .nav {
    display: flex; position: fixed; inset: 70px 0 0; z-index: 99;
    flex-direction: column; align-items: flex-start; gap: .25rem;
    background: #fff; padding: 1.5rem var(--pad); overflow-y: auto;
}
.mobile-open .nav__link { font-size: 1.4rem; font-family: var(--display); font-weight: 800; padding: .6rem 0; }
.mobile-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-open .burger span:nth-child(2) { opacity: 0; }
.mobile-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   CATALOG — breadcrumb, category & product pages
   ============================================================ */

/* breadcrumb */
.breadcrumb { border-bottom: 1px solid var(--line); background: #fff; }
.breadcrumb__list { display: flex; flex-wrap: wrap; gap: .4rem; padding-block: .9rem; font-size: .8rem; color: var(--muted); }
.breadcrumb__list li { display: flex; align-items: center; gap: .4rem; }
.breadcrumb__list li:not(:last-child)::after { content: "/"; color: var(--line); }
.breadcrumb__list a:hover { color: var(--red); }
.breadcrumb__list [aria-current] { color: var(--ink); font-weight: 600; }

/* category head */
.catalog-head { padding-block: clamp(2rem, 5vw, 3.5rem) 1rem; }
.catalog-head__title { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.02; margin-top: .4rem; }
.catalog-head__lead { color: var(--muted); max-width: 60ch; margin-top: .9rem; }
.catalog-head__lead p { margin-bottom: .6rem; }
.section--tight { padding-block: 1rem clamp(3.5rem, 8vw, 6rem); }
.catalog-count { color: var(--muted); font-size: .85rem; margin-bottom: 1.1rem; }

/* subcategory chips */
.subcat-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.subcat-chips .chip { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .85rem; font-size: .82rem; transition: background .25s var(--ease), color .25s var(--ease); }
.subcat-chips a.chip:hover { background: var(--ink); color: #fff; }
.subcat-chips .chip--active { background: var(--red); color: #fff; }
.subcat-chips .chip small { opacity: .6; font-weight: 600; }

/* product card link wrapper (cards are <a> here) */
a.card-moto { display: block; color: inherit; }
.price__old { color: var(--muted); font-weight: 500; font-size: .8em; margin-right: .35rem; text-decoration: line-through; }

/* category cards (brand landing) */
.grid--cats { grid-template-columns: repeat(3, 1fr); }
.card-cat {
    display: flex; flex-direction: column; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-cat__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface); }
.card-cat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card-cat:hover .card-cat__media img { transform: scale(1.04); }
.card-cat__body { display: flex; flex-direction: column; gap: .35rem; padding: 1.4rem 1.5rem; }
.card-cat__name { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.card-cat__count { color: var(--muted); font-size: .85rem; }
.card-cat .link-arrow { margin-top: .4rem; }

/* empty state */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); display: grid; gap: 1.2rem; justify-items: center; }

/* ---------- product page ---------- */
.product__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3rem); padding-block: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.product__summary { position: sticky; top: 90px; }
.product__title { font-family: var(--display); font-weight: 900; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.02; margin: .3rem 0 1rem; }
.product__meta { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.3rem; }
.product__price { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.3rem; }
.product__price .price__now { font-family: var(--display); font-weight: 800; font-size: 1.8rem; }
.badge--sale { position: static; background: var(--red); }
.product__price-note { flex-basis: 100%; color: var(--muted); font-size: .75rem; }
.product__excerpt { color: var(--ink-2); margin-bottom: 1.6rem; }
.product__excerpt p { margin-bottom: .7rem; }
.product__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.2rem; }
.product__colors-note { color: var(--muted); font-size: .82rem; }

/* gallery */
.gallery__stage { position: relative; aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.gallery__main { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: .55rem; margin-top: .7rem; }
.gallery__thumb { aspect-ratio: 3 / 2; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; background: var(--surface); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--red); }

/* product sections */
.product-section { padding-block: clamp(2.2rem, 5vw, 4rem); border-top: 1px solid var(--line); }
.product-section__lead { color: var(--muted); margin: -0.4rem 0 1.4rem; }
/* Product tabs: presentation vs accessories. Progressive enhancement — without JS
   the bar is hidden and both panels stack (content stays accessible). */
.ptabs { display: none; }
.js .ptabs { display: block; position: sticky; top: 84px; z-index: 90; margin-top: 1.5rem;
    background: #0c0c0e; }
@media (max-width: 520px) { .js .ptabs { top: 70px; } }
.ptabs__nav { display: flex; gap: .4rem; padding: .5rem 0; flex-wrap: wrap; }
.ptabs__btn { font-family: var(--head); font-weight: 700; font-size: 1rem; padding: .7rem 1.5rem;
    border: 0; background: transparent; color: rgba(255,255,255,.62); cursor: pointer; border-radius: 999px;
    transition: background .2s, color .2s; white-space: nowrap; }
.ptabs__btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.ptabs__btn.is-active { color: #0c0c0e; background: #fff; }
.ptabs__count { display: inline-grid; place-items: center; min-width: 1.5em; height: 1.5em; padding: 0 .35em; margin-left: .4rem;
    font-size: .72em; border-radius: 999px; background: var(--red); color: #fff; vertical-align: middle; }
.ptabs__btn.is-active .ptabs__count { background: var(--red); color: #fff; }
.js .ptabs__panel { display: none; }
.js .ptabs__panel.is-active { display: block; }
/* The first content section in a panel sits right under the tab bar — trim its top border/padding. */
.js .ptabs__panel > .product-section:first-child { border-top: 0; }
/* OEM vs aftermarket distinction */
.tag-oem { display: inline-block; background: var(--ink, #0c0c0e); color: #fff; font-family: var(--head); font-weight: 800; font-size: .58rem; letter-spacing: .12em; padding: .12em .42em; border-radius: 4px; vertical-align: middle; }
.kicker--oem .tag-oem { margin-right: .35rem; }
.product-section--oem { background: linear-gradient(180deg, rgba(12,12,14,.035), transparent 60%); }
.card-acc--oem .card-acc__brand { color: var(--ink, #0c0c0e); display: inline-flex; align-items: center; gap: .35rem; }
.card-acc--oem .card-acc__brand .tag-oem { background: var(--red); }

/* ---- My Garage (auth + profile) ---- */
.auth { display: flex; justify-content: center; }
.auth__box { max-width: 460px; }
.auth__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: .3rem 0 .6rem; }
.auth__lead { color: var(--muted); margin-bottom: 1.4rem; }
.auth__form { display: flex; flex-direction: column; gap: 1rem; }
.auth__form label { display: flex; flex-direction: column; gap: .4rem; font-weight: 600; font-size: .9rem; }
.auth__form input, .auth__form select, .auth__form textarea {
    font: inherit; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: #fff; width: 100%;
}
.auth__form input:focus, .auth__form select:focus, .auth__form textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.auth__code { letter-spacing: .5em; text-align: center; font-size: 1.4rem; font-weight: 700; }
.auth__error { background: #fdecec; color: var(--red-dark, #b00); padding: .7rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-size: .9rem; }
.auth__note { color: var(--muted); font-size: .85rem; margin-top: 1.2rem; }
.auth__dev { background: #eef7ee; border: 1px dashed #7bb37b; color: #2c662c; padding: .6rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-size: .9rem; letter-spacing: .04em; }
.garage-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.garage-head__actions { display: flex; gap: .6rem; }
.moto-profile { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.moto-profile__media { border-radius: 18px; overflow: hidden; aspect-ratio: 3/2; }
.moto-profile__media img { width: 100%; height: 100%; object-fit: cover; }
.moto-profile__data .spec-table { width: 100%; margin-bottom: 1rem; }
.history { width: 100%; }
.history th { text-align: left; }
@media (max-width: 720px) { .moto-profile { grid-template-columns: 1fr; } }
.product-prose { max-width: 75ch; }
.product-prose p { margin-bottom: 1rem; }
.product-prose img { border-radius: var(--radius-sm); margin: 1rem 0; }
.product-prose h2, .product-prose h3 { font-family: var(--head); margin: 1.5rem 0 .6rem; }
/* Tab titles must look identical across all tabs — the `.product-prose h2` rule above
   would otherwise give Descriere/Caracteristici a different font + extra top margin. */
.product-section .section__title { font-family: var(--display); margin: 0 0 1.2rem; }

/* spec tabs + tables */
.tabs__nav { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.tabs__btn { font-family: var(--head); font-weight: 700; font-size: .9rem; padding: .7rem 1.1rem; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs__btn.is-active { color: var(--ink); border-bottom-color: var(--red); }
.js .spec-panel { display: none; }
.js .spec-panel.is-active { display: block; }
.spec-table table { width: 100%; border-collapse: collapse; max-width: 760px; }
.spec-table td { padding: .7rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .92rem; }
.spec-table tr td:first-child { color: var(--muted); width: 45%; }
.spec-table p { margin: 0; }

/* video */
.product-video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--black); display: grid; place-items: center; cursor: pointer; }
.product-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.product-video__cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-video::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,10,.30); transition: background .3s var(--ease); z-index: 1; }
.product-video:hover::after { background: rgba(8,8,10,.14); }
.product-video__play { position: relative; z-index: 2; display: grid; place-items: center; width: 76px; height: 76px; padding-left: 5px;
    color: #fff; font-size: 1.5rem; border-radius: 50%; background: var(--red); box-shadow: 0 8px 30px rgba(0,0,0,.35); transition: transform .2s var(--ease); }
.product-video:hover .product-video__play { transform: scale(1.08); }

/* detail shots gallery */
.detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
/* Separator between the cover video and the image gallery in the Galerie tab. */
.product-video + .detail-gallery { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.detail-item {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
}
.detail-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.detail-item__zoom {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(8,8,10,.38);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease);
}
.detail-item:hover img { transform: scale(1.06); }
.detail-item:hover .detail-item__zoom { opacity: 1; }

/* ---------- catalog responsive ---------- */
@media (max-width: 980px) {
    .product__grid { grid-template-columns: 1fr; }
    .product__summary { position: static; }
    .grid--cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .grid--models { grid-template-columns: repeat(2, 1fr); }
    .detail-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
    .grid--cats { grid-template-columns: 1fr; }
}

/* dual-currency prices */
.price__ron { display: block; font-weight: 600; font-size: .78rem; color: var(--muted); letter-spacing: 0; text-transform: none; }
.price__ron s { color: var(--muted); }
.badge--tr { left: auto; right: .8rem; background: var(--red); }
.price__main { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.price__now-ron { font-family: var(--head); font-weight: 700; font-size: 1.05rem; color: var(--muted); }
.product__price .price__old { flex-basis: 100%; }

/* admin */
.admin { max-width: 560px; }
.admin__form { display: grid; gap: 1.4rem; margin-top: 1.8rem; }
.admin__field { display: grid; gap: .4rem; }
.admin__field > span { font-family: var(--head); font-weight: 700; font-size: .9rem; }
.admin__field input { padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 1.05rem; }
.admin__field small { color: var(--muted); font-size: .8rem; }
.admin__check { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.admin__hint { color: var(--muted); font-size: .82rem; margin-top: -.8rem; }
.admin__example { background: var(--surface); border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: .95rem; }
.admin__flash { background: var(--red-soft); color: var(--red-dark); padding: .8rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; margin-top: 1rem; }

/* ============================================================
   MOBILE-FIRST FIXES (catalog) — prevent overflow, improve phones
   ============================================================ */

/* grid/flex children must be allowed to shrink below content size */
a.card-moto, .card-moto, .card-moto__body, .card-cat { min-width: 0; }
.card-moto__name, .card-cat__name { overflow-wrap: anywhere; }
.catalog-head__title, .product__title { overflow-wrap: anywhere; }
.price, .price__ron { min-width: 0; overflow-wrap: anywhere; }
.card-moto__foot { flex-wrap: wrap; gap: .5rem .8rem; }

/* long spec tables: scroll inside their box instead of widening the page */
.spec-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spec-table td { overflow-wrap: anywhere; }

@media (max-width: 600px) {
    .grid { gap: 1rem; }
    .grid--models { grid-template-columns: 1fr; }      /* one clear column on phones */
    .detail-gallery { grid-template-columns: repeat(2, 1fr); }
    .catalog-head { padding-block: 1.6rem .6rem; }
    .product__grid { padding-block: 1rem 1.5rem; gap: 1.4rem; }
    .product__cta { flex-direction: column; align-items: stretch; }
    .product__cta .btn { width: 100%; justify-content: center; }
    .tabs__nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .tabs__btn { white-space: nowrap; }
    .breadcrumb__list { font-size: .72rem; }
}

/* product grid: let columns shrink below intrinsic media width (no h-scroll) */
.product__grid > * { min-width: 0; }
.product__media, .product__summary, .gallery, .gallery__stage { max-width: 100%; min-width: 0; }
.product-prose, .spec-table, .product-video { max-width: 100%; }

/* ============================================================
   LIGHTBOX — image zoom overlay with prev/next navigation
   ============================================================ */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(8,8,10,.93);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; visibility: hidden;
    transition: opacity .22s var(--ease), visibility .22s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
    max-width: calc(100% - 8rem); max-height: calc(100vh - 3rem);
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    transform: scale(.97);
    transition: transform .25s var(--ease);
    user-select: none;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close,
.lightbox__nav {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.13);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .15s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__close {
    top: 1rem; right: 1rem;
    width: 2.5rem; height: 2.5rem;
    font-size: 1.35rem;
}
.lightbox__nav {
    top: 50%; transform: translateY(-50%);
    width: 3rem; height: 3rem;
    font-size: 1.4rem;
}
.lightbox__nav--prev { left: .75rem; }
.lightbox__nav--next { right: .75rem; }
.lightbox__counter {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.65);
    font-size: .78rem; font-family: var(--head);
    background: rgba(0,0,0,.45);
    padding: .2rem .65rem;
    border-radius: 1rem;
    pointer-events: none;
}
@media (max-width: 600px) {
    .lightbox__nav { width: 2.25rem; height: 2.25rem; font-size: 1.1rem; }
    .lightbox__nav--prev { left: .25rem; }
    .lightbox__nav--next { right: .25rem; }
    .lightbox__img { max-width: 100%; }
}

/* cursor hint on zoomable images */
.gallery__main { cursor: zoom-in; }

/* ============================================================
   CATALOG GRID — smooth column steps (defined last so they win)
   4 cols (desktop) -> 3 (laptop/tablet) -> 2 -> 1 (phone)
   ============================================================ */
@media (max-width: 1100px) { .grid--models { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid--models, .grid--cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .grid--models { grid-template-columns: 1fr; } .grid--cats { grid-template-columns: 1fr; } }

/* search results: tighter 5-up grid with smaller cards (placed last so it wins) */
.grid--5 { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.grid--5 .card-moto__name, .grid--5 .card-art__title { font-size: 1rem; }
.grid--5 .card-moto__body { padding: .9rem; }
.grid--5 .price { font-size: .92rem; }
@media (max-width: 1280px) { .grid--5 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1000px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .grid--5 { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   BLOG cards — real images in the editorial cards
   ============================================================ */
.card-art__media { position: relative; overflow: hidden; }
.card-art__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.card-art:hover .card-art__media img { transform: scale(1.04); }
a.card-art { display: block; color: inherit; }

/* Wide article layout: main + right sidebar */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; max-width: 1240px; margin-inline: auto; }
.article { min-width: 0; }
.article__crumbs { font-size: .85rem; margin-bottom: 1rem; }
.article__crumbs a { color: var(--muted); }
.article__crumbs a:hover { color: var(--red); }
.article__title { font-family: var(--head); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.1; margin: .4rem 0 1.4rem; }
.article__cover { margin: 0 0 1.8rem; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.article__cover img { width: 100%; height: auto; display: block; }
.article__body { font-size: 1.04rem; line-height: 1.7; }
.article__body img { max-width: 100%; height: auto; border-radius: var(--radius-sm, 10px); }
.article__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.article__gallery-item { padding: 0; border: 0; background: var(--surface); aspect-ratio: 4 / 3; border-radius: var(--radius-sm, 10px); overflow: hidden; cursor: zoom-in; }
.article__gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s var(--ease); }
.article__gallery-item:hover img { transform: scale(1.05); }

/* Article sidebar */
.article-side { position: sticky; top: 90px; }
.article-side__box { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; background: #fff; }
.article-side__title { font-family: var(--head); font-weight: 800; font-size: 1.05rem; margin-bottom: 1rem; }
.article-side__list { list-style: none; display: grid; gap: 1rem; margin: 0 0 1rem; padding: 0; }
.side-art { display: grid; grid-template-columns: 84px 1fr; gap: .7rem; align-items: center; color: inherit; }
.side-art__media { position: relative; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; background: var(--surface); }
.side-art__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.side-art__date { display: block; font-family: var(--head); font-weight: 700; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; color: var(--red); margin-bottom: .2rem; }
.side-art__title { font-weight: 600; font-size: .86rem; line-height: 1.3; }
.side-art:hover .side-art__title { color: var(--red); }

@media (max-width: 980px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-side { position: static; }
    .article { max-width: 760px; margin-inline: auto; }
}
@media (max-width: 600px) { .article__gallery { grid-template-columns: repeat(2, 1fr); } }

/* Pager (blog listing) */
.pager { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem; margin-top: 3rem; }
.pager__link { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 .7rem; border: 1px solid var(--line); border-radius: 10px; font-family: var(--head); font-weight: 700; font-size: .9rem; color: var(--ink); background: #fff; transition: border-color .2s var(--ease), color .2s var(--ease); }
.pager__link:hover { border-color: var(--red); color: var(--red); }
.pager__link.is-current { background: var(--ink); color: #fff; border-color: var(--ink); pointer-events: none; }
.pager__nav { font-size: .82rem; }
.pager__gap { padding: 0 .3rem; color: var(--muted); }

/* ============================================================
   CATALOG FILTERS (permis / an)
   ============================================================ */
.catalog-filters { display: flex; flex-wrap: wrap; align-items: end; gap: 1rem; margin-bottom: 1.4rem; }
.catalog-filters__field { display: grid; gap: .35rem; }
.catalog-filters__field > span { font-family: var(--head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.catalog-filters__field select {
    appearance: none; -webkit-appearance: none;
    font: inherit; font-weight: 600; color: var(--ink);
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: .6rem 2.2rem .6rem .9rem; min-width: 8rem; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%236B6B72' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .8rem center;
}
.catalog-filters__field select:focus { outline: none; border-color: var(--red); }
.catalog-filters__reset { align-self: end; padding-block: .6rem; font-size: .85rem; color: var(--red); font-weight: 600; }
.catalog-count__total { color: var(--muted); }

/* ============================================================
   COMPARE — per-card toggle + sticky tray + table
   ============================================================ */
.card-compare {
    position: absolute; right: .6rem; bottom: .6rem; z-index: 3;
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 999px;
    padding: .32rem .6rem .32rem .5rem; cursor: pointer;
    font-family: var(--head); font-weight: 700; font-size: .68rem; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ink); backdrop-filter: blur(4px);
    transition: background .2s var(--ease), border-color .2s var(--ease);
}
.card-compare:hover { border-color: var(--red); }
.card-compare input { accent-color: var(--red); width: 15px; height: 15px; cursor: pointer; margin: 0; }
.card-compare input:disabled { cursor: not-allowed; }

.cmp-tray {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--ink); color: #fff; box-shadow: 0 -8px 30px rgba(0,0,0,.2);
}
.cmp-tray[hidden] { display: none; }
.cmp-tray__inner { display: flex; align-items: center; gap: 1rem; padding-block: .85rem; flex-wrap: wrap; }
.cmp-tray__count { font-size: .9rem; opacity: .9; }
.cmp-tray__count small { opacity: .6; }
.cmp-tray__items { display: flex; flex-wrap: wrap; gap: .4rem; flex: 1; min-width: 0; }
.cmp-tray__chip { background: rgba(255,255,255,.12); border-radius: 999px; padding: .3rem .7rem; font-size: .8rem; white-space: nowrap; }
.cmp-tray__actions { display: flex; gap: .6rem; margin-left: auto; }
.cmp-tray .btn.is-disabled { opacity: .45; pointer-events: none; }

.compare-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { border: 1px solid var(--line); padding: 1rem; vertical-align: top; text-align: left; }
.compare__rowhead { width: 9rem; background: var(--surface); font-family: var(--head); font-weight: 700; font-size: .85rem; color: var(--muted); white-space: nowrap; }
.compare__col { width: auto; }
.compare__card { display: block; color: inherit; }
.compare__media { position: relative; display: block; aspect-ratio: 3 / 2; border-radius: var(--radius-sm, 10px); overflow: hidden; margin-bottom: .6rem; background: var(--surface); }
.compare__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__name { font-family: var(--head); font-weight: 700; line-height: 1.2; }
.compare__card:hover .compare__name { color: var(--red); }
.compare__spec .spec-table { font-size: .85rem; }
.compare__spec td { font-size: .9rem; }

/* ============================================================
   ACCESSORY GRID — 5-up compact variant (product page)
   ============================================================ */
.grid--acc--5 { grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.card-acc--sm .card-acc__name { font-size: .8rem; min-height: 2.4em; }
.card-acc--sm .card-acc__brand { font-size: .6rem; }
.card-acc--sm .card-acc__price { font-size: .88rem; }
@media (max-width: 1200px) { .grid--acc--5 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .grid--acc--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .grid--acc--5 { grid-template-columns: repeat(2, 1fr); } }
.card-acc[hidden] { display: none; } /* altfel display:flex de mai sus suprascrie [hidden] */
.acc-more { display: flex; justify-content: center; margin-top: 1.4rem; }
.fitbike__all { margin-top: 1.2rem; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.fitbike__all:hover { box-shadow: inset 0 0 0 1.5px #fff; background: transparent; }
.fitbike__all[hidden] { display: none; } /* .btn e inline-flex → suprascrie [hidden] fără asta */

@media (max-width: 600px) {
    .cmp-tray__actions { width: 100%; }
    .cmp-tray__actions .btn { flex: 1; text-align: center; }
    .compare__rowhead { width: 6rem; }
}

/* ===== Product-page features: calculator, modals, contact, related band ===== */

/* Modele similare — subtle grey band */
.product-related { background: var(--surface); padding-top: 3rem; padding-bottom: 3rem; }
.blog-home { background: var(--surface); }

/* Action buttons: test ride / ofertă / WhatsApp / telefon — compact, one line on desktop */
.product__actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; margin: 1rem 0 1.2rem; }
.btn--sm { padding: .55rem .9rem; font-size: .85rem; }
.product__actions .btn { white-space: nowrap; }
.btn--wa { background: #25D366; color: #fff; display: inline-flex; align-items: center; gap: .4rem; }
.btn--wa:hover { background: #1ebe5b; color: #fff; }
.btn--wa svg { width: 16px; height: 16px; }
.btn--call { background: var(--surface); color: var(--ink, #111); }
.btn--call:hover { background: #ececee; }

/* Price + rate calculator side by side: 50/50 on desktop, stacked on mobile. */
.product__price-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: stretch; margin-bottom: 1.2rem; }
.product__price-row > * { flex: 1 1 240px; min-width: 0; margin: 0; }
@media (max-width: 600px) { .product__price-row > * { flex-basis: 100%; } }
/* Price framed like the calculator card, but without a background fill. */
.product__price-row .product__price { padding: .7rem .85rem; border: 1px solid #ececee; border-radius: 10px; align-content: center; }

/* Rate calculator — compact card */
.finance-calc { padding: .7rem .85rem; background: var(--surface); border-radius: 10px; border: 1px solid #ececee; }
.finance-calc__head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.finance-calc__brand { font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted, #666); }
.finance-calc__term { padding: .35rem .5rem; border: 1px solid #d8d8db; border-radius: 7px; background: #fff; font-size: .82rem; }
.finance-calc__result { display: flex; align-items: baseline; gap: .3rem; margin-top: .4rem; }
.finance-calc__rate { font-size: 1.3rem; font-weight: 700; color: var(--red); line-height: 1.1; }
.finance-calc__per { color: var(--muted, #666); font-size: .8rem; }
.finance-calc__foot { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin-top: .35rem; font-size: .72rem; color: var(--muted, #666); }

/* Modals */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(17,17,17,.55); }
.modal__dialog { position: relative; z-index: 1; width: 100%; max-width: 460px; max-height: 92vh; overflow: auto; background: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.modal__dialog--wide { max-width: 680px; }
.modal__x { position: absolute; top: .6rem; right: .8rem; border: 0; background: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--muted, #666); }
.modal__title { margin: 0 0 .2rem; }
.modal__sub { color: var(--muted, #666); margin: 0 0 1rem; font-size: .9rem; }
.modal__thanks { text-align: center; padding: 1rem 0; }
.modal__check { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: #25D366; color: #fff; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; }

/* Pop-up announcement */
.modal--announce .modal__dialog { max-width: 520px; }
.announce__title { font-family: var(--display); font-weight: 900; font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: .8rem; padding-right: 1.5rem; }
.announce__body { color: var(--ink); }
.announce__body :where(p, ul, ol) { margin: 0 0 .7rem; }
.announce__foot { margin-top: 1.4rem; display: flex; justify-content: flex-end; }

/* Lead form */
.lead-form { display: flex; flex-direction: column; gap: .8rem; }
.lead-form .field { display: flex; flex-direction: column; gap: .3rem; }
.lead-form .field > span { font-size: .85rem; color: var(--muted, #555); }
.lead-form input, .lead-form select, .lead-form textarea { padding: .6rem .7rem; border: 1px solid #d8d8db; border-radius: 8px; font: inherit; background: #fff; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.lead-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form__err { color: var(--red); font-size: .85rem; margin: 0; }

/* Financing page */
.container--narrow { max-width: 820px; }
.page-head { margin-bottom: 1.5rem; }
.page-title { margin: .2rem 0 0; }
.prose { line-height: 1.7; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin: .3rem 0; }
.finance-prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.finance-prose th, .finance-prose td { text-align: left; padding: .5rem .7rem; border-bottom: 1px solid #ececee; vertical-align: top; }
.finance-prose h2, .finance-prose h3 { margin-top: 1.6rem; }

/* ============================================================
   PAGE HERO — full-bleed banner for content pages
   (Despre / Service / Blog)
   ============================================================ */
.page-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    min-height: clamp(300px, 44vh, 460px);
    overflow: hidden;
    background: var(--black);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    animation: heroZoom 18s var(--ease) both;
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.page-hero__overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(102deg, rgba(8,8,10,.86) 0%, rgba(8,8,10,.55) 38%, rgba(8,8,10,.12) 70%, rgba(8,8,10,.34) 100%),
        linear-gradient(to top, rgba(8,8,10,.80) 0%, rgba(8,8,10,.08) 55%);
}
.page-hero__inner { width: 100%; }
.page-hero__content { max-width: 760px; padding-block: clamp(2rem, 5vw, 3.6rem); }
.page-hero__kicker { margin-bottom: .85rem; }
.page-hero__title {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.0;
    letter-spacing: -.015em; color: #fff;
    text-shadow: 0 2px 34px rgba(0,0,0,.45);
}
.page-hero__title strong { color: var(--red); font-weight: 900; }
.page-hero__lead {
    margin-top: 1rem; max-width: 54ch;
    color: rgba(255,255,255,.86);
    font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.55;
    text-shadow: 0 1px 18px rgba(0,0,0,.4);
}
/* thin red signature rule at the base of the hero */
.page-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 4px; background: var(--red); z-index: 1;
}
/* staggered entrance (CSS-only → also works without JS) */
.page-hero__kicker, .page-hero__title, .page-hero__lead {
    animation: heroRise .8s var(--ease) both;
}
.page-hero__title { animation-delay: .08s; }
.page-hero__lead { animation-delay: .16s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
    .page-hero__media img,
    .page-hero__kicker, .page-hero__title, .page-hero__lead { animation: none; }
}
@media (max-width: 720px) {
    .page-hero { min-height: clamp(240px, 52vh, 360px); }
}
/* Despre: keep the team in frame (not the balloons). On wide screens the
   banner is much wider, so the same anchor reveals the legs — raise the crop. */
.page-hero--despre .page-hero__media img { object-position: 50% 88%; }
@media (min-width: 1500px) {
    .page-hero--despre .page-hero__media img { object-position: 50% 70%; }
}
@media (min-width: 1800px) {
    .page-hero--despre .page-hero__media img { object-position: 50% 62%; }
}

/* ============================================================
   DESPRE NOI  (intro + gallery, team, history timeline)
   ============================================================ */
.section--alt { background: var(--surface); }
.service-block__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); margin: 2.5rem 0 1.3rem; }

/* Intro */
.about-intro__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.about-intro__text { font-size: 1.05rem; }
/* Showroom carousel (fade auto-rotate) */
.about-carousel { position: relative; min-width: 0; }
.about-carousel__viewport { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface); aspect-ratio: 3 / 2; }
.about-carousel__slide { display: block; cursor: zoom-in; }
.about-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.js .about-carousel__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); pointer-events: none; }
.js .about-carousel__slide.is-active { opacity: 1; pointer-events: auto; }
/* no-JS fallback: stack the images so they all remain reachable */
html:not(.js) .about-carousel__viewport { aspect-ratio: auto; }
html:not(.js) .about-carousel__slide + .about-carousel__slide { margin-top: .5rem; }
.about-carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(8,8,10,.55); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease); }
.about-carousel__nav:hover { background: var(--red); }
.about-carousel__nav--prev { left: .6rem; }
.about-carousel__nav--next { right: .6rem; }
.about-carousel__dots { display: flex; justify-content: center; gap: .45rem; margin-top: .9rem; }
.about-carousel__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer; transition: background .2s var(--ease); }
.about-carousel__dot.is-active { background: var(--red); }

/* Lightbox (click-to-zoom) */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(8,8,10,.93); display: flex; align-items: center; justify-content: center; padding: 4vmin; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 6px; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.lightbox__close { position: absolute; top: 1rem; right: 1.3rem; width: 44px; height: 44px; border: 0; background: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; opacity: .85; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .2s var(--ease); }
.lightbox__nav:hover { background: var(--red); }
.lightbox__nav--prev { left: 2vmin; }
.lightbox__nav--next { right: 2vmin; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.team-card { min-width: 0; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__photo { aspect-ratio: 1 / 1; background: var(--surface); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__photo .media-ph { width: 100%; height: 100%; }
.team-card__body { padding: 1rem 1.1rem 1.2rem; text-align: center; }
.team-card__name { font-family: var(--display); font-weight: 800; font-size: 1.1rem; line-height: 1.1; }
.team-card__role { color: var(--muted); font-size: .85rem; margin-top: .35rem; min-height: 2.4em; }
.team-card__contact { display: flex; justify-content: center; gap: 1rem; margin-top: .8rem; flex-wrap: wrap; }
.team-card__contact a { font-family: var(--head); font-weight: 700; font-size: .82rem; color: var(--ink); border-bottom: 2px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
.team-card__contact a:hover { color: var(--red); border-color: var(--red); }

/* History timeline */
.timeline { list-style: none; padding: 0; position: relative; max-width: 980px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 0; top: .4rem; bottom: 0; width: 2px; background: var(--line); }
.timeline__item { position: relative; padding-left: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.timeline__item::before { content: ""; position: absolute; left: -5px; top: .5rem; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.timeline__year { display: inline-block; font-family: var(--display); font-weight: 900; font-size: 1.5rem; color: var(--red); margin-bottom: .6rem; }
.timeline__card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.1rem, 2.5vw, 1.8rem); box-shadow: var(--shadow-sm); }
.timeline__title { font-family: var(--display); font-weight: 800; font-size: 1.25rem; line-height: 1.15; margin-bottom: .6rem; }
.timeline__gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .5rem; margin-top: 1rem; }
.timeline__shot { display: block; min-width: 0; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); cursor: zoom-in; }
.timeline__shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.timeline__shot:hover img { transform: scale(1.06); }

/* ============================================================
   SERVICE
   ============================================================ */
.service-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.service-desc { min-width: 0; }
.service-prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }
.price-card { min-width: 0; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.price-card__title { font-family: var(--head); font-weight: 800; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; color: var(--red); margin-bottom: .8rem; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table td { padding: .5rem .2rem; border-bottom: 1px solid var(--line); font-size: .92rem; vertical-align: top; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table__val { text-align: right; white-space: nowrap; font-family: var(--head); font-weight: 700; color: var(--ink); padding-left: .8rem; }
.service-note { margin-top: 1.4rem; background: var(--red-soft); border: 1px solid #ffd9d6; border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.service-note p { margin: .2rem 0; }

/* Booking form */
.service-booking { position: sticky; top: 90px; min-width: 0; }
.booking-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.8rem); box-shadow: var(--shadow-md); }
.booking-card__title { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.booking-card__lead { color: var(--muted); font-size: .9rem; margin: .5rem 0 1.2rem; }
.booking-form { display: flex; flex-direction: column; gap: .8rem; }
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.booking-form label { display: flex; flex-direction: column; gap: .3rem; font-family: var(--head); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); min-width: 0; }
.booking-form input, .booking-form textarea { font-family: var(--body); font-size: .95rem; padding: .6rem .7rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); width: 100%; }
.booking-form input:focus, .booking-form textarea:focus { outline: none; border-color: var(--red); }
.booking-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.booking-form__submit { justify-content: center; margin-top: .4rem; }
.booking-form__err { color: var(--red); font-size: .85rem; font-weight: 600; }
.booking-thanks { text-align: center; padding: 1.5rem .5rem; }
.booking-thanks__title { font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-bottom: .4rem; }
.booking-card__call { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.booking-card__call a { font-family: var(--head); font-weight: 700; color: var(--ink); }
.booking-card__call a:hover { color: var(--red); }
.booking-card__call a.wa { color: #25D366; }

/* Parts diagrams */
.parts-diagrams { margin-top: clamp(2rem, 5vw, 3.5rem); }
.parts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.parts-card { position: relative; display: block; min-width: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.parts-card img { width: 100%; height: 100%; max-height: 280px; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.parts-card:hover img { transform: scale(1.04); }
.parts-card__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem; background: linear-gradient(to top, rgba(8,8,10,.85), rgba(8,8,10,0)); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.1rem; }
.parts-card__arrow { color: var(--red); }

/* ============================================================
   FOOTER — contact line below menus
   ============================================================ */
.site-footer__address { color: #8b8b93; font-size: .92rem; line-height: 1.7; margin-bottom: 1.3rem; }
.site-footer__contact { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; border-top: 1px solid rgba(255,255,255,.08); padding: 1.6rem 0; }
.fcontact { font-size: .9rem; color: #9a9aa2; }
.fcontact__label { display: block; font-family: var(--head); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: .25rem; }
.fcontact a { color: #c7c7cd; transition: color .2s var(--ease); }
.fcontact a:hover { color: var(--red); }

/* ============================================================
   RESPONSIVE — Despre / Service / Footer
   ============================================================ */
@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
    .about-intro__grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .service-booking { position: static; }
    .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .service-prices { grid-template-columns: 1fr; }
    .parts-grid { grid-template-columns: 1fr; }
    .booking-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ACCESORII (shop page)
   ============================================================ */
.acc-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.acc-sidebar { min-width: 0; position: sticky; top: 90px; display: grid; gap: 1.6rem; }
.acc-filter { display: grid; gap: .5rem; }
.acc-filter__label { font-family: var(--head); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.acc-filter select { width: 100%; padding: .6rem .7rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); font: inherit; }
.acc-reset { justify-self: start; }
.acc-cats__title { font-family: var(--head); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--red); margin-bottom: .6rem; }
.acc-cats ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.acc-cats a { display: flex; justify-content: space-between; gap: .5rem; align-items: center; padding: .45rem .6rem; border-radius: 10px; color: var(--ink); text-decoration: none; font-size: .92rem; }
.acc-cats a:hover { background: var(--bg-alt, #f5f5f5); }
.acc-cats a.is-active { background: var(--red); color: #fff; font-weight: 700; }
.acc-cats__count { font-size: .78rem; opacity: .7; }
.acc-cats a.is-active .acc-cats__count { opacity: .9; }
.acc-main { min-width: 0; }
.acc-main__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: 1.2rem; }
.acc-main__title { font-family: var(--head); font-weight: 800; font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
.acc-main__count { color: var(--muted); font-size: .9rem; }
.acc-pager { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.acc-pager__info { color: var(--muted); font-size: .9rem; }

@media (max-width: 820px) {
    .acc-layout { grid-template-columns: 1fr; }
    .acc-sidebar { position: static; }
}
