/* ============================
   BUZZARD – Main Stylesheet
   ============================ */

:root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #161616;
    --surface: #1a1a1a;
    --gold: #c9a840;
    --gold-light: #e6c050;
    --gold-dim: rgba(201,168,64,0.15);
    --text: #f0f0f0;
    --muted: #888;
    --border: rgba(255,255,255,0.08);
    --border-gold: rgba(201,168,64,0.25);
    --radius: 6px;
    --header-h: 72px;
    --nav-h: 44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
select, input, button { font-family: inherit; }

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
    background: #1a1500;
    border-bottom: 1px solid rgba(201,168,64,0.3);
    padding: 7px 0;
}
.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar span {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.tb-icon { flex-shrink: 0; }
.tp-stars { color: #00b67a; }
.tp-stars strong { color: #00b67a; }

/* ===========================
   HEADER
   =========================== */
.site-header {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 4px;
}
.brand-name {
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gold);
}

/* Search */
.search-wrap { flex: 1; min-width: 0; max-width: 580px; }
.search-bar {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--gold); }
.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    padding: 10px 14px;
    font-size: 0.875rem;
    min-width: 0;
}
.search-bar input::placeholder { color: var(--muted); }
.search-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}
.search-bar select {
    background: transparent;
    border: none;
    outline: none;
    color: var(--muted);
    padding: 10px 10px 10px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
}
.search-bar select option { background: #222; }
.search-btn {
    background: var(--gold);
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    color: #111;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.search-btn:hover { background: var(--gold-light); }

/* VIN button */
.vin-btn-header {
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.vin-btn-header:hover { border-color: var(--gold); background: var(--gold-dim); }
.vin-tag {
    background: var(--gold);
    color: #111;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 3px;
    letter-spacing: 0.06em;
}
.vin-text { text-align: left; font-weight: 600; text-transform: uppercase; }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.hdr-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--text);
    transition: background 0.2s;
    white-space: nowrap;
}
.hdr-action:hover { background: var(--surface); }
.hdr-action svg { flex-shrink: 0; }
.hdr-action small { color: var(--muted); font-size: 0.7rem; }
.cart-action {
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
}
.cart-action:hover { background: rgba(201,168,64,0.25); }
.cart-price { color: var(--gold); font-weight: 600; }

/* ===========================
   MAIN NAVIGATION
   =========================== */
.main-nav {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    position: sticky;
    top: var(--header-h);
    z-index: 99;
}
.main-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}
.main-nav ul {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}
.main-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    height: 100%;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ccc;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.main-nav li a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.main-nav .arrow { opacity: 0.6; }
.angebote-link a { color: var(--gold) !important; }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,64,0.06) 0%, transparent 60%), var(--bg);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 36px;
    display: grid;
    grid-template-columns: minmax(0,420px) 1fr minmax(0,260px);
    gap: 28px;
    align-items: center;
    min-height: 500px;
}

/* Hero Left */
.hero-headline {
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
}
.hero-headline-gold { color: var(--gold); }
.hero-sub {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.hero-checks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero-checks span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ccc;
}

/* Vehicle Finder */
.vehicle-finder {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}
.vf-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.vf-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}
.vf-row2 {
    grid-template-columns: 1fr auto;
}
.vf-row select,
.vf-row2 select {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted);
    padding: 8px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.vf-row select:focus,
.vf-row2 select:focus { border-color: var(--gold); color: var(--text); }
.vf-row select option,
.vf-row2 select option { background: #222; }
.vf-search-btn {
    background: var(--gold);
    color: #111;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.2s;
}
.vf-search-btn:hover { background: var(--gold-light); }
.vf-vin {
    margin-top: 8px;
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.vin-pill {
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    cursor: pointer;
    letter-spacing: 0.06em;
    transition: background 0.2s;
}
.vin-pill:hover { background: rgba(201,168,64,0.3); }

/* Hero Center */
.hero-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-glow-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    overflow: hidden;
    border-radius: 12px;
    background: radial-gradient(ellipse at 50% 40%, rgba(201,168,64,0.12) 0%, rgba(201,168,64,0.04) 50%, transparent 75%);
}
/* Fade out the bottom BUZZARD text from logo.png */
.hero-glow-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52%;
    background: linear-gradient(to top, #0a0a0a 45%, rgba(10,10,10,0.7) 70%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}
.hero-glow-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201,168,64,0.18) 0%, transparent 65%),
        radial-gradient(ellipse at 50% 85%, rgba(180,120,0,0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}
.hero-eagle {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transform: scale(1.12) translateY(-8%);
    transform-origin: top center;
    filter:
        drop-shadow(0 0 30px rgba(201,168,64,0.65))
        drop-shadow(0 0 80px rgba(201,168,64,0.3))
        brightness(1.08) saturate(1.1);
}

/* Hero Right – Trust badges */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 12px;
    transition: border-color 0.2s;
}
.trust-item:hover { border-color: var(--border-gold); }
.trust-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--gold-dim);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.2;
}
.trust-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ===========================
   BENEFITS STRIP
   =========================== */
.benefits-strip {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.benefits-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefit strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
}
.benefit span {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
}
.tp-logo-sm {
    font-size: 1.1rem;
    color: #00b67a;
    letter-spacing: 0.02em;
}

/* ===========================
   CATEGORIES
   =========================== */
.categories {
    padding: 48px 0;
    background: var(--bg);
}
.categories-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}
.cat-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}
.cat-img {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #141414;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.cat-img::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.cat-card:hover .cat-img::before { opacity: 0.8; }
.cat-img-reifen { background: #0d0d0d; }
.cat-img-reifen::before { background: radial-gradient(ellipse at bottom, rgba(60,60,60,0.6), transparent 70%); }
.cat-img-oel { background: #0a0c08; }
.cat-img-oel::before { background: radial-gradient(ellipse at bottom, rgba(80,60,0,0.5), transparent 70%); }
.cat-img-bremse { background: #0d0a0a; }
.cat-img-bremse::before { background: radial-gradient(ellipse at bottom, rgba(80,20,20,0.5), transparent 70%); }
.cat-img-batterie { background: #080a0d; }
.cat-img-batterie::before { background: radial-gradient(ellipse at bottom, rgba(10,40,80,0.5), transparent 70%); }
.cat-img-filter { background: #0c0a06; }
.cat-img-filter::before { background: radial-gradient(ellipse at bottom, rgba(100,60,0,0.4), transparent 70%); }
.cat-img-zuendung { background: #0d0c08; }
.cat-img-zuendung::before { background: radial-gradient(ellipse at bottom, rgba(201,168,64,0.15), transparent 70%); }
.cat-img-wischer { background: #080c0d; }
.cat-img-wischer::before { background: radial-gradient(ellipse at bottom, rgba(20,60,80,0.4), transparent 70%); }
.cat-img-pflege { background: #080d0a; }
.cat-img-pflege::before { background: radial-gradient(ellipse at bottom, rgba(20,80,40,0.3), transparent 70%); }
.cat-img svg { position: relative; z-index: 1; width: 52px; height: 52px; }
.cat-label {
    padding: 10px 8px;
    text-align: center;
    border-top: 1px solid var(--border);
    width: 100%;
}
.cat-label span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.3;
}
.cat-label small {
    display: block;
    font-size: 0.62rem;
    color: var(--gold);
    margin-top: 2px;
    letter-spacing: 0.04em;
}

/* ===========================
   BRANDS
   =========================== */
.brands {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.brands-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.brands-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}
.brands-header h2 {
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}
.brands-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 6px 14px;
    white-space: nowrap;
    transition: background 0.2s;
}
.brands-link:hover { background: var(--gold-dim); }
.brands-logos {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 12px;
}
.brand-logo {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ccc;
    line-height: 1.3;
    transition: border-color 0.2s, color 0.2s;
}
.brand-logo:hover { border-color: var(--border-gold); color: var(--text); }
.brand-logo small { font-size: 0.65rem; font-weight: 600; display: block; }

/* ===========================
   TRUSTPILOT BAR
   =========================== */
.trustpilot-bar {
    background: #0d0d0d;
    border-top: 1px solid var(--border);
    padding: 14px 0;
}
.tp-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--muted);
    flex-wrap: wrap;
}
.tp-stars-green { color: #00b67a; font-size: 1rem; }
.tp-brand { font-weight: 700; color: #00b67a; font-size: 0.9rem; }

/* ===========================
   AI WIDGET
   =========================== */
.ai-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    background: var(--bg2);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,64,0.1);
    max-width: 240px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ai-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,64,0.2);
}
.ai-widget-inner { display: flex; align-items: flex-start; gap: 10px; }
.ai-avatar {
    position: relative;
    flex-shrink: 0;
}
.ai-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    background: #1a1a1a;
}
.ai-online {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--bg2);
}
.ai-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 3px;
}
.ai-text p {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 28px 0;
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
}
.footer-brand span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gold);
}
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.82rem;
    color: var(--muted);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
    font-size: 0.78rem;
    color: #555;
}

/* ===========================
   SKIP LINK (ACCESSIBILITY)
   =========================== */
.skip-link {
    position: absolute;
    left: -999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: var(--gold);
    color: #111;
    border-radius: 4px;
    z-index: 9999;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
    .hero-inner { grid-template-columns: 1fr 380px 240px; }
    .categories-inner { grid-template-columns: repeat(4, 1fr); }
    .brands-logos { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 320px; grid-template-rows: auto auto; }
    .hero-right { display: none; }
    .vin-btn-header { display: none; }
    .header-actions .hdr-action span { display: none; }
}

@media (max-width: 768px) {
    .top-bar-inner { justify-content: center; }
    .top-bar span:nth-child(3), .top-bar span:nth-child(2) { display: none; }
    .brand-name { display: none; }
    .search-wrap { order: 3; max-width: 100%; flex-basis: 100%; }
    .header-inner { flex-wrap: wrap; height: auto; padding: 12px; gap: 10px; }
    .site-header { height: auto; }
    .main-nav { top: 0; position: static; overflow-x: auto; }
    .main-nav ul { flex-wrap: nowrap; overflow-x: auto; }
    .main-nav li a { padding: 0 10px; font-size: 0.72rem; }
    .hero-inner { grid-template-columns: 1fr; padding: 24px 16px; }
    .hero-center { order: -1; }
    .hero-eagle { max-width: 280px; }
    .categories-inner { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .brands-logos { grid-template-columns: repeat(3, 1fr); }
    .benefits-inner { gap: 10px; justify-content: flex-start; }
    .ai-widget { bottom: 12px; right: 12px; }
}

@media (max-width: 480px) {
    .categories-inner { grid-template-columns: repeat(2, 1fr); }
    .brands-logos { grid-template-columns: repeat(2, 1fr); }
    .vf-row { grid-template-columns: 1fr; }
}

/* ===========================
   SUB-PAGE LAYOUT
   =========================== */
.page-hero {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    padding: 36px 24px;
}
.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
}
.page-hero p { color: var(--muted); font-size: 0.9rem; }
.page-hero-breadcrumb {
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 10px;
    display: flex;
    gap: 6px;
    align-items: center;
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb a:hover { text-decoration: underline; }

.subpage-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.subpage-content h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.subpage-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 28px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.subpage-content p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.9rem;
}
.subpage-content section { margin-bottom: 36px; }
.subpage-content a { color: var(--gold); }
.subpage-content a:hover { text-decoration: underline; }
.subpage-content strong { color: var(--text); }

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    padding: 56px 0;
}
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-section-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
    grid-column: 1 / -1;
}
.contact-section-title span { color: var(--gold); }
.contact-section-sub {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    grid-column: 1 / -1;
    margin-top: -4px;
    margin-bottom: 8px;
}
.contact-form label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
    margin-top: 14px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    padding: 10px 12px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form-btn {
    margin-top: 16px;
    background: var(--gold);
    color: #111;
    border: none;
    border-radius: var(--radius);
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.contact-form-btn:hover { background: var(--gold-light); }
.contact-form-msg { margin-top: 10px; font-size: 0.82rem; color: var(--muted); }
.contact-info h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}
.contact-info-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-dim);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 2px;
}
.contact-info-item span {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
}
.contact-info-item a { color: var(--gold); }

/* ===========================
   PRODUCTS PAGE
   =========================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}
.product-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.product-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.product-card-body { padding: 14px; }
.product-card-category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.product-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}
.product-card-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}
.product-card-btn {
    margin-top: 10px;
    width: 100%;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    border-radius: 4px;
    padding: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.product-card-btn:hover { background: rgba(201,168,64,0.25); }
.products-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.filter-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* 404 page */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    min-height: 50vh;
}
.error-page h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}
.error-page h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 12px;
}
.error-page p { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.error-page-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
    background: var(--gold);
    color: #111;
    border: none;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 24px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--text); }

@media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { gap: 28px; }
}

/* ===========================
   BRAND LOGO IDENTITIES
   =========================== */
.brand-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.brand-logo span { font-weight: 900; letter-spacing: 0.04em; line-height: 1.1; }
.brand-logo small { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; opacity: 0.8; }

.brand-bosch { border-color: rgba(220,30,30,0.4) !important; }
.brand-bosch span { color: #fff; font-size: 1rem; }
.brand-bosch:hover { background: rgba(220,30,30,0.1) !important; border-color: #dc1e1e !important; }

.brand-mann span { color: #f5a623; font-size: 0.9rem; }
.brand-mann small { color: #f5a623; }
.brand-mann:hover { background: rgba(245,166,35,0.1) !important; border-color: rgba(245,166,35,0.5) !important; }

.brand-mahle span { color: #e8e8e8; font-size: 1rem; letter-spacing: 0.1em; }
.brand-mahle:hover { background: rgba(255,255,255,0.06) !important; }

.brand-brembo { border-color: rgba(220,30,30,0.4) !important; }
.brand-brembo span { color: #e2001a; font-size: 1rem; font-style: italic; font-weight: 900; }
.brand-brembo:hover { background: rgba(226,0,26,0.1) !important; border-color: #e2001a !important; }

.brand-castrol { border-color: rgba(0,140,0,0.4) !important; }
.brand-castrol span { color: #00a651; font-size: 0.95rem; font-style: italic; }
.brand-castrol:hover { background: rgba(0,166,81,0.1) !important; border-color: #00a651 !important; }

.brand-liqui { border-color: rgba(255,200,0,0.4) !important; }
.brand-liqui span { color: #ffc800; font-size: 0.9rem; }
.brand-liqui small { color: #ffc800; }
.brand-liqui:hover { background: rgba(255,200,0,0.1) !important; border-color: #ffc800 !important; }

.brand-conti span { color: #ccc; font-size: 0.72rem; }
.brand-conti:hover { background: rgba(255,140,0,0.08) !important; }

.brand-michelin { border-color: rgba(0,100,200,0.4) !important; }
.brand-michelin span { color: #0064c8; font-size: 0.85rem; font-style: italic; }
.brand-michelin:hover { background: rgba(0,100,200,0.1) !important; border-color: #0064c8 !important; }

.brand-bilstein { border-color: rgba(255,210,0,0.4) !important; }
.brand-bilstein span { color: #ffd200; font-size: 0.85rem; letter-spacing: 0.06em; }
.brand-bilstein:hover { background: rgba(255,210,0,0.1) !important; border-color: #ffd200 !important; }

.brand-valeo { border-color: rgba(0,120,200,0.4) !important; }
.brand-valeo span { color: #0078c8; font-size: 0.95rem; font-style: italic; }
.brand-valeo:hover { background: rgba(0,120,200,0.1) !important; border-color: #0078c8 !important; }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes heroPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}
@keyframes eagleFloat {
    0%, 100% { transform: scale(1.12) translateY(-8%); }
    50% { transform: scale(1.12) translateY(-10.5%); }
}
@keyframes glowRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Apply float animation to eagle */
.hero-eagle {
    animation: eagleFloat 4s ease-in-out infinite !important;
}
/* Animated glow bg */
.hero-glow-bg {
    animation: heroPulse 3s ease-in-out infinite !important;
}
/* Pulsing ring behind eagle */
.hero-glow-wrap::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30%;
    background: radial-gradient(ellipse, rgba(201,168,64,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroPulse 2.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Entrance animations for sections - only below-fold elements */
/* Hero left/right: no hide-on-load animation (above the fold) */
.benefits-inner .benefit { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.benefits-inner .benefit:nth-child(1) { animation-delay: 0.1s; }
.benefits-inner .benefit:nth-child(2) { animation-delay: 0.2s; }
.benefits-inner .benefit:nth-child(3) { animation-delay: 0.3s; }
.benefits-inner .benefit:nth-child(4) { animation-delay: 0.4s; }
.benefits-inner .benefit:nth-child(5) { animation-delay: 0.5s; }

/* Category card shine effect on hover */
.cat-card {
    position: relative;
    overflow: hidden;
}
.cat-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    transition: left 0.4s ease;
    pointer-events: none;
}
.cat-card:hover::after { left: 150%; }
.cat-card:hover .cat-img svg { filter: drop-shadow(0 0 8px rgba(201,168,64,0.6)); transform: scale(1.05); transition: all 0.3s ease; }
.cat-img svg { transition: all 0.3s ease; }

/* Brand logo transitions */
.brand-logo { transition: all 0.25s ease; transform: scale(1); }
.brand-logo:hover { transform: scale(1.04); }

/* Smooth scroll behavior is already set */
/* Better focus styles */
:focus-visible { outline: 2px solid rgba(201,168,64,0.8); outline-offset: 3px; }

/* Better product card on products page */
.product-card { transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,64,0.2); }

/* Hero section: better glow ring on platform */
.hero-center::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 4px;
    background: radial-gradient(ellipse, rgba(201,168,64,0.6) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
    animation: heroPulse 2.5s ease-in-out infinite;
}
