@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* =========================================================================
   Bavaria Garage STYLE — BMW-inspired automotive design system
   ========================================================================= */

:root {
    --bg:            #e8eaed;
    --bg-wash:       #d1d5db;
    --surface:       #ffffff;
    --border:        #c5cad0;
    --border-strong: #9aa3ad;

    --ink:           #0a0a0a;
    --ink-soft:      #262626;
    --muted:         #5c6670;
    --muted-light:   #8a939c;

    --accent:        #1c69d4;
    --accent-deep:   #0653b6;
    --accent-soft:   #d6e4f7;
    --accent-wash:   #eef4fc;

    --bmw-silver:    #bbbdbf;
    --bmw-dark:      #121212;

    --success:       #1a7f4e;
    --danger:        #c41e3a;

    --shadow-sm:     0 1px 3px rgba(10, 10, 10, 0.06);
    --shadow-md:     0 8px 24px rgba(10, 10, 10, 0.10);
    --shadow-lg:     0 24px 56px rgba(10, 10, 10, 0.16);

    --radius-sm:     4px;
    --radius-md:     8px;
    --radius-lg:     12px;

    --display:       'Barlow Condensed', 'Arial Narrow', sans-serif;
    --sans:          'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

    --container:     1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; color: var(--ink); letter-spacing: 0.02em; text-transform: uppercase; margin: 0; }
h1 { font-size: 28px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
p  { margin: 0; }
a  { color: var(--accent-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

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

/* Material Icons defaults */
.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    vertical-align: middle;
    font-size: 20px;
}

/* =========================================================================
   SITE HEADER
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header--scrolled {
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.site-header__accent {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent) 45%, var(--bmw-silver) 100%);
}
.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px 32px;
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: 72px;
}
.site-header__start {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.site-header__brand {
    margin: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.site-header__admin-badge {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 4px 10px;
    border: 1px solid rgba(28, 105, 212, 0.5);
    border-radius: var(--radius-sm);
    background: rgba(28, 105, 212, 0.12);
}
.header-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    min-width: 0;
}
.header-logo-link:hover { color: var(--accent-soft); }
.header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}
.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    gap: 2px;
    min-width: 0;
}
.brand-main {
    font-size: 17px;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.brand-style {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: var(--accent);
}
.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}
.site-header__toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header--open .site-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header--open .site-header__toggle-bar:nth-child(2) { opacity: 0; }
.site-header--open .site-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px 8px;
    flex-wrap: wrap;
}
.site-header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}
.site-header__link::after { display: none !important; }
.site-header__link:hover,
.site-header__link.is-active {
    color: #fff;
    background: rgba(28, 105, 212, 0.18);
}
.site-header__link.is-active {
    box-shadow: inset 0 0 0 1px rgba(28, 105, 212, 0.45);
}
.site-header__link--phone .material-icons-outlined {
    font-size: 18px !important;
    color: var(--accent);
}
.site-header__end {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.site-header__call {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.site-header__call:hover {
    background: rgba(28, 105, 212, 0.2);
    border-color: var(--accent);
    color: #fff;
}
.site-header__call .material-icons-outlined { font-size: 22px !important; }
.site-header__cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(28, 105, 212, 0.35);
}
.site-header__cart:hover {
    background: var(--accent-deep);
    color: #fff;
    transform: translateY(-1px);
}
.site-header__cart.is-active {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.site-header__cart .material-icons-outlined { font-size: 22px !important; }
.site-header__cart-label { display: inline; }
.site-header__cart-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--radius-sm);
    background: var(--bmw-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}
.site-header__ghost {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 12px;
}
.site-header__ghost:hover { color: #fff; }
.site-header__btn {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.site-header__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.site-header__btn--outline:hover {
    background: var(--danger);
    border-color: var(--danger);
}
.site-header__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 199;
}
.site-header__backdrop[hidden] { display: none !important; }
body.site-nav-open { overflow: hidden; }

@media (max-width: 1020px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }
    .site-header__nav {
        display: none;
    }
    .site-header__call { display: inline-flex; }
    .site-header__cart-label { display: none; }
}
@media (max-width: 520px) {
    .brand-main { font-size: 14px; letter-spacing: 0.06em; }
    .brand-style { font-size: 9px; letter-spacing: 0.22em; }
    .header-logo { width: 38px; height: 38px; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero-section {
    position: relative;
    padding: 72px 0 88px;
    background: #06080c;
    overflow: hidden;
    border-bottom: 1px solid rgba(28, 105, 212, 0.2);
}
.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent) 45%, var(--bmw-silver) 70%, #e60026 100%);
    z-index: 2;
}
.hero-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-section__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, #000 0%, #000 40%, transparent 85%);
    opacity: 0.5;
}
.hero-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.hero-section__orb--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: 8%;
    background: rgba(28, 105, 212, 0.22);
}
.hero-section__orb--2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: 35%;
    background: rgba(6, 83, 182, 0.15);
}
.hero-section__m-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hero-section__m-stripes span:nth-child(1) { flex: 1; background: #1c69d4; }
.hero-section__m-stripes span:nth-child(2) { flex: 1; background: #0653b6; }
.hero-section__m-stripes span:nth-child(3) { flex: 1; background: #e60026; opacity: 0.85; }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px 64px;
    align-items: center;
}
.hero-content { max-width: 560px; }

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(28, 105, 212, 0.45);
    background: rgba(28, 105, 212, 0.1);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-soft);
}
.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 22px;
    font-family: var(--display);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.92;
}
.hero-title-line {
    font-size: clamp(36px, 5.5vw, 58px);
    letter-spacing: 0.03em;
    color: #fff;
}
.hero-title-accent {
    font-size: clamp(40px, 6.2vw, 72px);
    letter-spacing: 0.04em;
    color: var(--accent);
    text-shadow: 0 0 40px rgba(28, 105, 212, 0.35);
}

.hero-subtitle {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    text-transform: none;
    letter-spacing: 0;
}

.hero-perks {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.hero-perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bmw-silver);
}
.hero-perks .material-icons-outlined {
    font-size: 18px !important;
    color: var(--accent);
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 8px 28px rgba(28, 105, 212, 0.4);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta:hover {
    background: var(--accent-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(28, 105, 212, 0.45);
}
.hero-cta .material-icons-outlined {
    font-size: 20px;
    transition: transform 0.2s ease;
}
.hero-cta:hover .material-icons-outlined { transform: translateX(4px); }

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-cta-secondary:hover {
    border-color: var(--accent);
    background: rgba(28, 105, 212, 0.12);
    color: #fff;
}
.hero-cta-secondary .material-icons-outlined { font-size: 18px !important; color: var(--accent); }

/* Hero showcase (right column) */
.hero-showcase {
    position: relative;
    min-height: 380px;
}
.hero-showcase__frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(28, 105, 212, 0.35);
    background: linear-gradient(145deg, #141a22 0%, #0a0e14 100%);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-showcase__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(28, 105, 212, 0.2) 0%, transparent 45%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-showcase__media {
    aspect-ratio: 5 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 80%, rgba(28, 105, 212, 0.15) 0%, transparent 60%);
}
.hero-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}
.hero-showcase__img--art {
    object-fit: contain;
    padding: 24px 16px 8px;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}
.hero-showcase__frame:hover .hero-showcase__img {
    transform: scale(1.03);
}
.hero-showcase__tags {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-showcase__tags span {
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.hero-showcase__card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(12, 14, 18, 0.92);
    border: 1px solid rgba(28, 105, 212, 0.35);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.hero-showcase__card .material-icons-outlined {
    font-size: 28px !important;
    color: var(--accent);
}
.hero-showcase__card strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-showcase__card span {
    font-size: 11px;
    color: var(--bmw-silver);
}
.hero-showcase__card--tl {
    top: -12px;
    left: -16px;
}
.hero-showcase__card--br {
    bottom: 28px;
    right: -12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 16px 18px;
}
.hero-showcase__card-num {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 0.02em;
}
.hero-showcase__card-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bmw-silver);
}

/* =========================================================================
   MAIN / SECTION TITLE
   ========================================================================= */
main {
    flex-grow: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 44px;
    line-height: 1.1;
    text-align: center;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.section-kicker {
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 14px;
}
.section-lead {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    max-width: 540px;
    margin: 16px auto 0;
}
.section-head { margin-bottom: 56px; }

/* Decorated title — clean hairline with dot */
.section-title.decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 36px;
}
.section-title-text { white-space: nowrap; }
.section-title-ornament {
    flex: 0 0 72px;
    height: 1px;
    background: var(--border-strong);
    position: relative;
}
.section-title-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}
.section-title-ornament.left::after  { right: 0; }
.section-title-ornament.right::after { left: 0; }

/* =========================================================================
   PRODUCT GRID
   ========================================================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 28px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-3px); }

.product-card-single-image,
.product-card-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-wash);
    margin-bottom: 18px;
}
.product-image-single,
.product-card-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.product-image-single,
.product-card-images .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.product-card-images .product-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.product-card-images .product-image.active { opacity: 1; }
.product-card:hover .product-image-single,
.product-card:hover .product-card-images .product-image.active {
    transform: scale(1.04);
}

/* Slider controls inside card */
.product-card-slider-controls {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 3;
}
.product-card:hover .product-card-slider-controls { opacity: 1; }

.product-card-slider-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.product-card-slider-btn:hover { background: var(--bg-wash); }

.product-card-slider-dots { display: flex; gap: 6px; align-items: center; }
.product-card-slider-dots .slider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border-strong);
    cursor: pointer;
    transition: all 0.25s ease;
}
.product-card-slider-dots .slider-dot.active {
    background: var(--ink);
    width: 16px;
    border-radius: 3px;
}

/* Product info */
.product-info {
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}
.product-name {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 44px;
}
.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.product-price-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.product-price {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
}
.btn-add-to-cart {
    padding: 10px 18px;
    background: var(--accent);
    color: var(--surface);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
}
.btn-add-to-cart:hover {
    background: var(--accent-deep);
    box-shadow: 0 4px 14px rgba(28, 105, 212, 0.35);
    transform: translateY(-1px);
}
.btn-add-to-cart.added { background: var(--success); }

/* =========================================================================
   FEATURES STRIP
   ========================================================================= */
.features-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 44px 24px;
    margin-top: 80px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    align-items: stretch;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    border-left: 1px solid var(--border);
    min-height: 72px;
}
.feature-item:first-child {
    border-left: none;
}
.feature-icon {
    flex: 0 0 auto;
    color: var(--accent-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px !important;
    line-height: 1;
}
.feature-text { min-width: 0; }
.feature-text strong {
    display: block;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.25;
}
.feature-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* =========================================================================
   SITE FOOTER
   ========================================================================= */
.site-footer {
    margin-top: auto;
    background: #0a0a0a;
    color: #c5cad0;
    position: relative;
}
.site-footer__stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent) 50%, var(--bmw-silver));
}
.site-footer__banner {
    padding: 56px 0 48px;
    background:
        linear-gradient(135deg, rgba(28, 105, 212, 0.14) 0%, transparent 55%),
        #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px 48px;
    flex-wrap: wrap;
}
.site-footer__eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
}
.site-footer__headline {
    margin: 0 0 12px;
    font-family: var(--display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}
.site-footer__headline span { color: var(--accent); }
.site-footer__lead {
    margin: 0;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bmw-silver);
}
.site-footer__banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.site-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.2s ease;
}
.site-footer__cta:hover {
    background: var(--accent-deep);
    color: #fff;
    transform: translateY(-1px);
}
.site-footer__cta--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}
.site-footer__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}
.site-footer__cta .material-icons-outlined { font-size: 20px !important; }

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
    gap: 40px 32px;
    padding: 52px 0 48px;
}
.site-footer__col--brand { padding-right: 16px; }
.site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    margin-bottom: 16px;
}
.site-footer__logo-link:hover { color: var(--accent-soft); }
.site-footer__logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.1;
}
.site-footer__logo-text em {
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-top: 2px;
}
.site-footer__tagline {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--bmw-silver);
    max-width: 300px;
}
.site-footer__title {
    margin: 0 0 18px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
}
.site-footer__title--sub {
    margin-top: 24px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--bmw-silver);
}
.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.site-footer__list a {
    color: #c5cad0;
    font-size: 14px;
    transition: color 0.2s ease;
}
.site-footer__list a:hover { color: #fff; }
.site-footer__list--plain li {
    font-size: 13px;
    line-height: 1.55;
    color: var(--bmw-silver);
}
.site-footer__list--plain strong { color: #fff; font-weight: 600; }
.site-footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.site-footer__list--contact .material-icons-outlined {
    flex-shrink: 0;
    font-size: 20px !important;
    color: var(--accent);
    margin-top: 1px;
}
.site-footer__list--contact a,
.site-footer__list--contact span {
    color: #c5cad0;
    font-size: 13px;
    line-height: 1.5;
}
.site-footer__list--contact a:hover { color: #fff; }

.site-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #080808;
}
.site-footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 0 28px;
}
.site-footer__copy {
    margin: 0;
    font-size: 12px;
    color: #8a939c;
    letter-spacing: 0.04em;
}
.site-footer__payments {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.site-footer__payments-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bmw-silver);
}
.site-footer__pay-badges {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.site-footer__pay-icon {
    display: block;
    height: 32px;
    width: auto;
    max-width: 56px;
    object-fit: contain;
    padding: 6px 10px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.site-footer__pay-icon--visa {
    max-width: 52px;
    padding: 6px 8px;
}
.site-footer__pay-icon--mc {
    max-width: 48px;
    padding: 5px 8px;
}

/* =========================================================================
   PRODUCT MODAL
   ========================================================================= */
.product-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.product-modal.show { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.product-modal-content {
    position: relative;
    display: flex;
    width: min(980px, 100%);
    max-height: 88vh;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}
.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border: 1px solid var(--border);
    transition: background 0.2s ease;
}
.product-modal-close:hover { background: var(--bg-wash); }

.product-image-slider {
    position: relative;
    flex: 1 1 55%;
    min-width: 0;
    background: var(--bg-wash);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-zoom-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    flex: 1 1 auto;
}

@media (hover: hover) and (pointer: fine) {
    .product-modal-zoom-viewport {
        cursor: crosshair;
    }
}

.slider-images {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.slider-images .product-modal-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--bg-wash);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.slider-images .product-modal-image.active { opacity: 1; }

.product-modal-zoom-lens {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    box-shadow:
        0 0 0 1px rgba(10, 10, 10, 0.12),
        0 8px 24px rgba(10, 10, 10, 0.18);
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 4;
}

.product-modal-zoom-panel {
    position: absolute;
    top: 50%;
    right: 58px;
    transform: translateY(-50%);
    width: min(38%, 300px);
    max-height: min(72vh, 420px);
    aspect-ratio: 1;
    z-index: 5;
    pointer-events: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--surface);
}

.product-modal-zoom-result {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: var(--bg-wash);
}

@media (hover: none), (max-width: 900px) {
    .product-modal-zoom-lens,
    .product-modal-zoom-panel {
        display: none !important;
    }
    .product-modal-zoom-viewport {
        cursor: default;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 6;
}
.slider-btn:hover { background: var(--ink); color: var(--surface); }
.slider-btn-prev { left: 16px; }
.slider-btn-next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 7;
}
.slider-dots .slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
}
.slider-dots .slider-dot.active {
    background: var(--ink);
    width: 22px;
    border-radius: 4px;
}

.product-modal-details {
    flex: 1 1 45%;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.product-modal-name {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 14px;
}
.product-modal-price {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    color: var(--accent-deep);
    margin-bottom: 22px;
}
.product-modal-description {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.product-modal-description p { margin-bottom: 10px; }
.product-modal-actions { margin-top: auto; padding-top: 16px; }
.btn-add-to-cart-modal {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--surface);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}
.btn-add-to-cart-modal:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
}
.btn-add-to-cart-modal.added { background: var(--success); }

/* =========================================================================
   CART
   ========================================================================= */
main.container h2 {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 32px;
}

#cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.25s ease;
}
.cart-item:hover { border-color: var(--border-strong); }
.cart-item-image {
    width: 96px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-wash);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}
.cart-item-price {
    font-family: var(--display);
    font-size: 18px;
    color: var(--accent-deep);
    font-weight: 500;
}
.cart-item-quantity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--ink);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.cart-item-quantity button:hover { background: var(--bg-wash); }
.cart-item-quantity {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.cart-item-total {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    margin-left: auto;
}
.cart-item-remove,
.btn-remove {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cart-item-remove:hover,
.btn-remove:hover {
    color: var(--danger);
    border-color: rgba(180, 75, 75, 0.4);
    background: rgba(180, 75, 75, 0.06);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 72px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}
.empty-cart p {
    font-family: var(--display);
    font-size: 22px;
    color: var(--ink);
    margin: 0;
}
.empty-cart a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--ink) !important;
    color: var(--surface) !important;
    border-radius: 999px !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.empty-cart a:hover {
    background: var(--accent-deep) !important;
    transform: translateY(-1px);
}

/* Acquirer disabled notice */
.acquirer-notice {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    border-bottom: 1px solid #f59e0b;
    color: #78350f;
    font-size: 14px;
    line-height: 1.5;
}
.acquirer-notice__inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}
.acquirer-notice__icon {
    flex-shrink: 0;
    font-size: 22px;
    margin-top: 1px;
    opacity: 0.9;
}
.acquirer-notice__text {
    margin: 0;
    flex: 1;
}
.acquirer-notice--cart {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid #f59e0b;
    background: #fffbeb;
}
#btn-pay:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.btn-pay-modal:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Payment return banners (styled via JS inline - override with important where possible) */
#payment-return-banner {
    border-radius: var(--radius-md) !important;
    padding: 18px 22px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
}

/* UPC payment prepared container */
#upc-payment-container {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 28px !important;
    margin: 28px auto !important;
    max-width: 640px !important;
}
#upc-payment-container h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--ink);
}
#upc-payment-container p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.cart-total {
    margin-top: 24px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.cart-total-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cart-total-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.cart-total-price {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
}
.btn-pay {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--surface);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.btn-pay:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-pay-icon { font-size: 16px; }

/* =========================================================================
   DELIVERY MODAL
   ========================================================================= */
.delivery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.delivery-modal.show { display: flex; animation: fadeIn 0.25s ease; }
.delivery-modal-content {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.delivery-modal-content h2 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 28px;
}
.delivery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-wash);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}
.delivery-modal-close:hover { background: var(--border); }

.delivery-modal-content .form-group { margin-bottom: 18px; }
.delivery-modal-content label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}
.delivery-modal-content input,
.delivery-modal-content textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.delivery-modal-content input:focus,
.delivery-modal-content textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(28, 105, 212, 0.2);
}
.delivery-modal-content textarea { resize: vertical; min-height: 84px; }
.delivery-modal-content .form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted-light);
    line-height: 1.5;
}
.delivery-info {
    background: var(--bg-wash);
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}
.delivery-info p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 6px 0;
}
.delivery-info p:first-child { margin-top: 0; }
.delivery-info p:last-child  { margin-bottom: 0; }
.btn-pay-modal {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--surface);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}
.btn-pay-modal:hover:not(:disabled) {
    background: var(--accent-deep);
    transform: translateY(-1px);
}
.btn-pay-modal:disabled {
    background: var(--border-strong);
    cursor: not-allowed;
}

/* =========================================================================
   FOOTER MODAL
   ========================================================================= */
.footer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.footer-modal.show { display: flex; animation: fadeIn 0.25s ease; }
.footer-modal-content {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    width: min(740px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    color: var(--ink);
}
.footer-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-wash);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}
.footer-modal-close:hover { background: var(--border); }
#footer-modal-body h2 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}
#footer-modal-body h3 {
    font-family: var(--display);
    font-size: 20px;
    color: var(--ink);
    margin: 22px 0 10px;
}
#footer-modal-body p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 14px;
}
#footer-modal-body ul { list-style: none; padding-left: 0; margin: 0 0 14px; }
#footer-modal-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft);
    font-size: 14px;
}
#footer-modal-body ul li:last-child { border-bottom: none; }
#footer-modal-body a { color: var(--accent-deep); }
#footer-modal-body a:hover { color: var(--ink); }

/* =========================================================================
   FLOATING CART BUTTON
   ========================================================================= */
.floating-cart-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 90;
    transition: background 0.25s ease, transform 0.25s ease;
}
.floating-cart-btn:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    color: var(--surface);
}
.cart-icon { font-size: 24px !important; color: var(--surface); }
.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: var(--radius-sm);
    background: var(--bmw-dark);
    color: var(--surface);
    font-size: 11px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    display: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.cart-count-badge.show { display: block; }
.cart-count-badge:empty { display: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .features-strip { grid-template-columns: repeat(2, 1fr); padding: 36px 20px; }
    .feature-item { padding: 14px 20px; }
    .feature-item:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
    .feature-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 860px) {
    .container { padding-inline: 24px; }
    .hero-section { padding: 48px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-showcase { min-height: 0; max-width: 480px; margin: 0 auto; width: 100%; }
    .hero-showcase__card--tl { left: 0; top: -8px; }
    .hero-showcase__card--br { right: 0; bottom: 16px; }
    .hero-section__m-stripes { display: none; }

    main { padding-top: 56px; padding-bottom: 56px; }
    .section-title { font-size: 32px; }
    .section-title.decorated { font-size: 26px; gap: 12px; }
    .section-title-ornament { flex: 0 0 40px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .product-name { font-size: 15px; min-height: 0; }
    .product-price { font-size: 18px; }
    .btn-add-to-cart { padding: 8px 12px; font-size: 11px; letter-spacing: 0.1em; }

    .features-strip { grid-template-columns: 1fr; padding: 16px; margin-top: 56px; }
    .feature-item { padding: 16px; border-left: none; border-top: 1px solid var(--border); min-height: 0; }
    .feature-item:first-child { border-top: none; }

    .site-footer__banner-inner { flex-direction: column; align-items: flex-start; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .site-footer__bar-inner { flex-direction: column; text-align: center; }
    .site-footer__payments { justify-content: center; }

    .product-modal-content { flex-direction: column; max-height: 92vh; }
    .product-image-slider { flex: 0 0 auto; height: 320px; }
    .product-modal-details { padding: 28px 24px; }

    .delivery-modal-content { padding: 32px 24px; }
    .footer-modal-content { padding: 32px 24px; }

    .cart-item { flex-wrap: wrap; }
    .cart-item-image { width: 80px; height: 100px; }
    .cart-total-content { flex-direction: column; align-items: stretch; }
    .btn-pay { justify-content: center; }

    .floating-cart-btn { right: 20px; bottom: 20px; width: 50px; height: 50px; }
}

@media (max-width: 520px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-cta { width: 100%; justify-content: center; }
}

/* =========================================================================
   MINI-CART DRAWER
   ========================================================================= */
.floating-cart-btn {
    border: none;
    cursor: pointer;
}

.mini-cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}
.mini-cart-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 420px;
    max-width: 92vw;
    background: var(--surface);
    box-shadow: -20px 0 60px rgba(30, 20, 16, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1001;
}
.mini-cart.show {
    transform: translateX(0);
}

.mini-cart-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 26px;
    border-bottom: 1px solid var(--border);
}
.mini-cart-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
}
.mini-cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-wash);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.mini-cart-close:hover { background: var(--border); }
.mini-cart-close .material-icons-outlined { font-size: 20px; }

.mini-cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 26px;
}
.mini-cart-loading,
.mini-cart-empty {
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 40px 0;
    margin: 0;
}
.mini-cart-empty-title {
    font-family: var(--display);
    color: var(--ink);
    font-size: 20px;
    margin-bottom: 6px;
}

.mini-cart-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mini-cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.mini-cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.mini-cart-item-image {
    width: 72px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-wash);
}
.mini-cart-item-info { min-width: 0; }
.mini-cart-item-name {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mini-cart-item-meta {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.mini-cart-item-price {
    font-family: var(--display);
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    margin-top: 4px;
}
.mini-cart-item-remove {
    align-self: flex-start;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.mini-cart-item-remove:hover {
    color: var(--danger);
    border-color: rgba(180, 75, 75, 0.4);
    background: rgba(180, 75, 75, 0.06);
}
.mini-cart-item-remove .material-icons-outlined { font-size: 16px; }

.mini-cart-footer {
    flex: 0 0 auto;
    padding: 20px 26px 28px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.mini-cart-footer[hidden] { display: none !important; }

.mini-cart-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}
.mini-cart-total > span:first-child {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.mini-cart-total-value {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
}
.mini-cart-checkout {
    width: 100%;
    padding: 14px 20px;
    background: var(--accent);
    color: var(--surface);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
}
.mini-cart-checkout:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
}
.mini-cart-checkout .material-icons-outlined { font-size: 18px; }
.mini-cart-view {
    display: block;
    margin-top: 12px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.mini-cart-view:hover { color: var(--ink); }

@media (max-width: 520px) {
    .mini-cart { width: 100%; max-width: 100%; }
    .mini-cart-header,
    .mini-cart-body,
    .mini-cart-footer { padding-inline: 20px; }
}
