/* =========================================================
   BikeStation Las Palmas 24 – main.css
   Hausfarbe: #cc6601 | Nav/Footer dunkel: #8a4200
   Hintergrund: warme Grautöne | Erdton-Sparten
   ========================================================= */

/* --- TOKENS -------------------------------------------- */
:root {
    --c-brand:      #cc6601;
    --c-brand-dark: #8a4200;
    --c-brand-deep: #5c2c00;
    --c-accent:     #ffa040;

    --c-bg:         #f5f2ee;
    --c-bg-card:    #ffffff;
    --c-bg-sidebar: #ede8e0;
    --c-border:     #c8bfb0;
    --c-border-lt:  #e8e3db;

    --c-text:       #2a1f10;
    --c-text-mid:   #5c5046;
    --c-text-muted: #7a7268;

    /* Erdton-Sparten */
    --scooter-bg:   #f5e6d0;
    --scooter-fg:   #8a4200;
    --scooter-btn:  #b5651d;

    --moto-bg:      #ede0d0;
    --moto-fg:      #5c3210;
    --moto-btn:     #7a4f2e;

    --ebike-bg:     #dde8d5;
    --ebike-fg:     #3a5c28;
    --ebike-btn:    #4e7a36;

    --mtb-bg:       #e5ddd0;
    --mtb-fg:       #5c4a28;
    --mtb-btn:      #7a6040;

    --road-bg:      #d5e0e8;
    --road-fg:      #2a4a6a;
    --road-btn:     #2a4a6a;

    --city-bg:      #e8e2d8;
    --city-fg:      #5c5036;
    --city-btn:     #7a6a48;

    --radius:       8px;
    --radius-lg:    12px;
    --shadow-sm:    0 1px 3px rgba(90,40,0,0.08);
}

/* --- RESET --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; font-size: 16px; line-height: 1.7;
       color: var(--c-text); background: var(--c-bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* --- NAVIGATION ---------------------------------------- */
.site-nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--c-brand-dark);
    box-shadow: 0 2px 8px rgba(90,40,0,0.25);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px; height: 56px;
    display: flex; align-items: center; gap: 20px;
}
.nav-logo {
    color: #fff; text-decoration: none; font-family: Georgia, serif;
    font-size: 15px; display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.nav-logo svg { color: var(--c-accent); flex-shrink: 0; }
.nav-logo strong { color: var(--c-accent); font-weight: normal; }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-link { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px;
            padding: 6px 12px; border-radius: var(--radius); transition: background 0.15s; }
.nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-lang { display: flex; gap: 4px; }
.lang-link { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 12px;
             padding: 4px 6px; border-radius: 4px; }
.lang-link.active { color: var(--c-accent); font-weight: bold; }
.lang-link:hover { color: #fff; }
.nav-cta { background: var(--c-brand); color: #fff; text-decoration: none;
           font-size: 13px; font-weight: bold; padding: 8px 16px;
           border-radius: var(--radius); white-space: nowrap; transition: background 0.15s; }
.nav-cta:hover { background: #e07200; }
.nav-burger { display: none; background: none; border: none;
              flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; }
.mobile-menu { display: none; background: var(--c-brand-deep); padding: 16px 24px; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); text-decoration: none;
                 padding: 10px 0; border-bottom: 0.5px solid rgba(255,255,255,0.1); font-size: 15px; }
.mobile-lang { display: flex; gap: 12px; padding-top: 12px; }
.mobile-lang a { color: rgba(255,255,255,0.5); font-size: 13px; }
.mobile-lang a.active { color: var(--c-accent); }

/* --- HERO ---------------------------------------------- */
.hero { position: relative; min-height: 400px; display: flex; align-items: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { height: 400px; }
.hero-slide-bg { height: 100%; background-size: cover; background-position: center; }
.hero-slide-bg::after { content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(60,20,0,0.75) 0%, rgba(60,20,0,0.3) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
                padding: 48px 24px; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 5px;
              background: rgba(204,102,1,0.25); color: var(--c-accent);
              border: 0.5px solid rgba(255,160,64,0.4);
              font-size: 12px; padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; }
.hero h1 { color: #fff; font-size: clamp(24px,4vw,40px); font-weight: normal;
           font-family: Georgia, serif; line-height: 1.25; margin-bottom: 12px; max-width: 580px; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 480px;
            margin-bottom: 24px; font-family: sans-serif; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- USP STRIP ----------------------------------------- */
.usp-strip { background: #fff; border-bottom: 0.5px solid var(--c-border);
             display: flex; }
.usp-item { flex: 1; padding: 14px 16px; display: flex; align-items: center; gap: 12px;
            border-right: 0.5px solid var(--c-border); }
.usp-item:last-child { border-right: none; }
.usp-item svg { color: var(--c-brand); flex-shrink: 0; }
.usp-item strong { display: block; font-size: 13px; font-weight: bold; color: var(--c-text);
                   font-family: sans-serif; }
.usp-item span { font-size: 11px; color: var(--c-text-muted); font-family: sans-serif; }

/* --- LAYOUT -------------------------------------------- */
.layout-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px;
                  display: grid; grid-template-columns: 1fr 260px; gap: 0; }
.layout-content { padding: 28px 28px 28px 0; border-right: 0.5px solid var(--c-border); }
.layout-sidebar { padding: 24px 0 24px 24px; }

/* --- BUTTONS ------------------------------------------- */
.btn-primary { background: var(--c-brand); color: #fff; text-decoration: none;
               display: inline-block; padding: 10px 22px; border-radius: var(--radius);
               font-family: sans-serif; font-size: 14px; font-weight: bold;
               transition: background 0.15s; border: none; cursor: pointer; }
.btn-primary:hover { background: #e07200; }
.btn-outline { background: transparent; color: #fff; text-decoration: none;
               display: inline-block; padding: 10px 22px; border-radius: var(--radius);
               border: 1px solid rgba(255,255,255,0.4); font-family: sans-serif;
               font-size: 14px; transition: border-color 0.15s; cursor: pointer; }
.btn-outline:hover { border-color: rgba(255,255,255,0.8); }
.btn-block { display: block; text-align: center; width: 100%; margin-bottom: 8px; }

/* --- SECTION TITLES ------------------------------------ */
.section-title { font-size: 20px; font-weight: normal; font-family: Georgia, serif;
                 color: var(--c-text); margin-bottom: 20px;
                 border-bottom: 2px solid var(--c-brand); padding-bottom: 8px; display: inline-block; }

/* --- PRODUCT GRID -------------------------------------- */
.products-section { margin-bottom: 32px; }
.sparte-group { margin-bottom: 28px; }
.sparte-title { font-size: 15px; font-weight: bold; font-family: sans-serif;
                margin-bottom: 12px; color: var(--c-text-mid); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; }

.product-card { background: var(--c-bg-card); border: 0.5px solid var(--c-border);
                border-radius: var(--radius-lg); overflow: hidden;
                transition: box-shadow 0.2s; }
.product-card:hover { box-shadow: 0 4px 16px rgba(90,40,0,0.12); }

.product-img { width: 100%; height: 160px; object-fit: cover; }
.product-img-placeholder { height: 160px; }
.product-img-link { display: block; }

/* Sparten-Farben für Placeholder / Akzente */
.sparte-scooter .product-img-placeholder { background: var(--scooter-bg); }
.sparte-scooter .product-cat { color: var(--scooter-fg); }
.sparte-scooter .btn-card { background: var(--scooter-btn); }

.sparte-moto .product-img-placeholder { background: var(--moto-bg); }
.sparte-moto .product-cat { color: var(--moto-fg); }
.sparte-moto .btn-card { background: var(--moto-btn); }

.sparte-ebike .product-img-placeholder { background: var(--ebike-bg); }
.sparte-ebike .product-cat { color: var(--ebike-fg); }
.sparte-ebike .btn-card { background: var(--ebike-btn); }

.sparte-mtb .product-img-placeholder { background: var(--mtb-bg); }
.sparte-mtb .product-cat { color: var(--mtb-fg); }
.sparte-mtb .btn-card { background: var(--mtb-btn); }

.sparte-road .product-img-placeholder { background: var(--road-bg); }
.sparte-road .product-cat { color: var(--road-fg); }
.sparte-road .btn-card { background: var(--road-btn); }

.sparte-city .product-img-placeholder { background: var(--city-bg); }
.sparte-city .product-cat { color: var(--city-fg); }
.sparte-city .btn-card { background: var(--city-btn); }

.product-body { padding: 12px 14px; font-family: sans-serif; }
.product-cat { font-size: 11px; font-weight: bold; text-transform: uppercase;
               letter-spacing: 0.05em; margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: bold; color: var(--c-text); margin-bottom: 6px; }
.product-name a { text-decoration: none; }
.product-name a:hover { color: var(--c-brand); }
.product-price { font-size: 13px; color: var(--c-text-muted); margin-bottom: 10px; }
.product-price strong { font-size: 16px; color: var(--c-text); }
.btn-card { display: block; text-align: center; color: #fff; border-radius: 6px;
            padding: 7px; font-size: 13px; text-decoration: none; font-weight: bold; }

/* --- SIDEBAR ------------------------------------------- */
.sidebar-reserve { margin-bottom: 16px; }
.btn-reserve { display: block; background: var(--c-brand); color: #fff; text-decoration: none;
               text-align: center; border-radius: var(--radius); padding: 12px;
               font-family: sans-serif; font-size: 14px; font-weight: bold;
               display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-reserve:hover { background: #e07200; }
.sidebar-box { background: #fff; border: 0.5px solid var(--c-border);
               border-radius: var(--radius-lg); padding: 14px; margin-bottom: 12px; }
.sidebar-box-title { font-family: sans-serif; font-size: 13px; font-weight: bold;
                     color: var(--c-text); margin-bottom: 10px; color: var(--c-brand-dark); }
.sidebar-links { list-style: none; }
.sidebar-link { display: flex; align-items: center; gap: 8px; padding: 6px 0;
                border-bottom: 0.5px solid var(--c-border-lt); font-family: sans-serif;
                font-size: 13px; color: var(--c-text-muted); text-decoration: none; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--c-brand); }

/* --- FAHRZEUG DETAIL ----------------------------------- */
.breadcrumb { font-family: sans-serif; font-size: 12px; color: var(--c-text-muted);
              margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--c-brand); }
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 8px; }
.gallery-img { width: 100%; height: 320px; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.gallery-thumbs img { width: 100%; height: 70px; object-fit: cover;
                      border-radius: 6px; border: 2px solid transparent; cursor: pointer; }
.gallery-thumbs .swiper-slide-thumb-active img { border-color: var(--c-brand); }
.avail { display: inline-flex; align-items: center; gap: 6px; font-family: sans-serif;
         font-size: 12px; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.avail--yes { background: #dde8d5; color: #2a5c18; }
.avail--no  { background: #f5e0d8; color: #8a2800; }
.detail-info h1 { font-size: 22px; font-family: Georgia, serif; font-weight: normal;
                  margin-bottom: 8px; line-height: 1.3; }
.specs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 16px 0; }
.spec-item { background: var(--c-bg-sidebar); border-radius: var(--radius);
             padding: 10px; text-align: center; border: 0.5px solid var(--c-border); }
.spec-label { display: block; font-size: 11px; color: var(--c-text-muted);
              font-family: sans-serif; margin-bottom: 2px; }
.spec-item strong { font-size: 13px; color: var(--c-text); font-family: sans-serif; }
.detail-desc { font-size: 14px; color: var(--c-text-mid); line-height: 1.7; margin-bottom: 16px; }

/* Preisbox */
.price-box { background: #fff; border: 0.5px solid var(--c-border); border-radius: var(--radius-lg);
             padding: 20px; margin-bottom: 24px; font-family: sans-serif; }
.price-box-title { font-size: 16px; font-weight: bold; margin-bottom: 12px; color: var(--c-brand-dark); }
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14px; }
.price-table th { text-align: left; font-size: 12px; color: var(--c-text-muted);
                  padding: 4px 0 8px; border-bottom: 1px solid var(--c-border); }
.price-table td { padding: 8px 0; border-bottom: 0.5px solid var(--c-border-lt); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr.highlight td { color: var(--c-brand-dark); }
.price-table tr.highlight strong { font-size: 18px; }
.price-live-note { font-size: 11px; color: var(--c-text-muted); display: flex;
                   align-items: center; gap: 5px; margin-top: 12px;
                   background: #fdefd8; padding: 7px 10px; border-radius: 6px; }

/* --- FOOTER -------------------------------------------- */
.site-footer { background: var(--c-brand-dark); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 36px 24px;
                display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.footer-brand-col .footer-logo { color: #fff; font-size: 16px; font-family: Georgia, serif;
                                  margin-bottom: 12px; }
.footer-logo strong { color: var(--c-accent); font-weight: normal; }
.footer-address { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.8;
                  font-style: normal; font-family: sans-serif; }
.footer-address a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-address a:hover { color: var(--c-accent); }
.footer-col-title { color: var(--c-accent); font-size: 11px; text-transform: uppercase;
                    letter-spacing: 0.06em; font-family: sans-serif; font-weight: bold; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links a { display: block; color: rgba(255,255,255,0.5); text-decoration: none;
                  font-size: 13px; font-family: sans-serif; line-height: 2; }
.footer-links a:hover { color: var(--c-accent); }
.footer-bottom { background: var(--c-brand-deep); padding: 12px 24px;
                 display: flex; justify-content: space-between; align-items: center;
                 flex-wrap: wrap; gap: 8px; }
.footer-bottom span, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.35);
                                         font-family: sans-serif; text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-lang, .footer-bottom-links { display: flex; gap: 12px; }
.footer-bottom-lang a.active { color: var(--c-accent); }

/* --- RESPONSIVE ---------------------------------------- */
@media (max-width: 900px) {
    .layout-wrapper { grid-template-columns: 1fr; }
    .layout-content { border-right: none; padding-right: 0;
                      border-bottom: 0.5px solid var(--c-border); padding-bottom: 24px; }
    .layout-sidebar { padding-left: 0; padding-top: 20px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: repeat(2,1fr); }
    .usp-strip { flex-wrap: wrap; }
    .usp-item { min-width: 50%; }
}

@media (max-width: 640px) {
    .nav-links, .nav-lang { display: none; }
    .nav-burger { display: flex; }
    .mobile-menu[aria-expanded="true"] { display: block; }
    .hero { min-height: 300px; }
    .hero-slide { height: 300px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .usp-item { min-width: 100%; }
}

/* Fix: Product Grid Spalten */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
}
@media (min-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* HERO SLIDER */
.hero-section{position:relative;width:100%;overflow:hidden}
.hero-swiper{width:100%;height:480px}
@media(max-width:768px){.hero-swiper{height:320px}}
.hero-slide{position:relative;width:100%;height:100%}
.hero-slide-img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.hero-slide-placeholder{width:100%;height:100%}
.hero-slide-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(60,20,0,.78) 0%,rgba(60,20,0,.45) 55%,rgba(60,20,0,.15) 100%)}
.hero-slide-content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;padding:0 10% 0 5%;max-width:680px}
.hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(204,102,1,.25);color:#ffa040;border:.5px solid rgba(255,160,64,.4);font-size:12px;font-family:sans-serif;padding:5px 14px;border-radius:20px;margin-bottom:18px;width:fit-content}
.hero-titel{color:#fff;font-size:clamp(22px,3.5vw,38px);font-weight:normal;font-family:Georgia,serif;line-height:1.25;margin-bottom:14px;text-shadow:0 2px 8px rgba(0,0,0,.3)}
.hero-sub{color:rgba(255,255,255,.75);font-size:clamp(13px,1.5vw,16px);font-family:sans-serif;line-height:1.65;margin-bottom:28px;max-width:480px}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.hero-prev,.hero-next{color:#fff!important;background:rgba(204,102,1,.5);width:44px!important;height:44px!important;border-radius:50%;transition:background .2s}
.hero-prev:hover,.hero-next:hover{background:rgba(204,102,1,.85)!important}
.hero-prev::after,.hero-next::after{font-size:18px!important}
.hero-pagination{bottom:16px!important}
.hero-pagination .swiper-pagination-bullet{background:rgba(255,255,255,.5);opacity:1;width:8px;height:8px}
.hero-pagination .swiper-pagination-bullet-active{background:#cc6601;width:24px;border-radius:4px}


/* =========================================================
   FAHRZEUG DETAILSEITE
   ========================================================= */

.breadcrumb-bar {
    background: #fff;
    border-bottom: 0.5px solid var(--c-border);
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: sans-serif;
    font-size: 12px;
    color: var(--c-text-muted);
}
.breadcrumb a {
    color: var(--c-text-muted);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--c-brand); }

/* Galerie */
.detail-gallery {
    margin-bottom: 24px;
}
.gallery-placeholder {
    height: 320px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--c-text-muted);
    font-family: sans-serif;
    font-size: 13px;
    border: 0.5px solid var(--c-border);
}
.gallery-placeholder.sparte-scooter  { background: var(--scooter-bg); color: var(--scooter-fg); }
.gallery-placeholder.sparte-moto     { background: var(--moto-bg);    color: var(--moto-fg); }
.gallery-placeholder.sparte-ebike    { background: var(--ebike-bg);   color: var(--ebike-fg); }
.gallery-placeholder.sparte-mtb      { background: var(--mtb-bg);     color: var(--mtb-fg); }
.gallery-placeholder.sparte-road     { background: var(--road-bg);    color: var(--road-fg); }

.gallery-main { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 8px; }
.gallery-img  { width: 100%; height: 360px; object-fit: cover; display: block; }
.gallery-thumbs { margin-top: 8px; }
.gallery-thumbs .swiper-slide {
    width: 80px !important;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}
.gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--c-brand);
}
.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail Info */
.detail-h1 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: normal;
    font-family: Georgia, serif;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--c-text);
}
.detail-desc {
    font-size: 14px;
    color: var(--c-text-mid);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Features */
.detail-features {
    margin-bottom: 24px;
}
.detail-features h3 {
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    color: var(--c-text);
    margin-bottom: 10px;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.feature-tag {
    font-size: 12px;
    font-family: sans-serif;
    background: var(--c-bg-sidebar);
    border: 0.5px solid var(--c-border);
    border-radius: 4px;
    padding: 5px 12px;
    color: var(--c-text-mid);
}

/* Preisbox auf Detailseite */
.price-box {
    background: #fff;
    border: 0.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 28px;
    font-family: sans-serif;
}
.price-box-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--c-brand-dark);
    margin-bottom: 14px;
    font-family: Georgia, serif;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    font-size: 14px;
}
.price-table th {
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--c-text-muted);
    padding: 4px 0 10px;
    border-bottom: 1px solid var(--c-border);
}
.price-table td {
    padding: 9px 0;
    border-bottom: 0.5px solid var(--c-border-lt);
    color: var(--c-text-mid);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr.highlight td { color: var(--c-brand-dark); font-weight: bold; }
.price-table tr.highlight strong { font-size: 20px; color: var(--c-brand-dark); }
.price-table strong { font-size: 15px; color: var(--c-text); }

.btn-outline-dark {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--c-text-mid);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 10px 22px;
    font-family: sans-serif;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .15s;
}
.btn-outline-dark:hover { border-color: var(--c-brand); color: var(--c-brand); }

.price-live-note {
    font-size: 11px;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: #fdefd8;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: sans-serif;
}

/* Ähnliche Fahrzeuge */
.related-section {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 0.5px solid var(--c-border);
}

