:root{
  --brand-dark:#0b0f14;
  --brand-mid:#1f2937;
  --brand-500:#374151;
  --muted:#6b7280;

  --heat-1:#3f0202;
  --heat-2:#6e0a04;
  --heat-3:#cc0808;
  --heat-grad: linear-gradient(135deg,var(--heat-1),var(--heat-2),var(--heat-3));

  --bg:#f7f8fa;
  --white:#ffffff;
  --line:#e5e7eb;

  --radius:18px;
  --shadow:0 14px 40px rgba(0,0,0,.12);
  --shadow-strong:0 18px 48px rgba(0,0,0,.18);
  --max:1120px;
}

/* =========================
   RESET / BASE
   ========================= */
*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--brand-dark);
  background:
    linear-gradient(180deg, rgba(247,248,250,.82), rgba(255,255,255,.88) 400px),
    url("../img/bg/tire-pattern.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
  white-space:nowrap;
  cursor:pointer;
}

.btn-primary{
  background:var(--heat-grad);
  color:#fff;
  box-shadow:0 10px 24px rgba(239,68,68,.3);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-ghost{
  border:1px solid var(--line);
  background:#fff;
  color:var(--brand-mid);
}

/* =========================
   HEADER / NAV
   ========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
}

.brand-name{font-size:18px}

.navlinks{
  display:flex;
  gap:16px;
  font-weight:750;
  color:var(--brand-mid);
  flex-wrap:wrap;
}

.navlinks a:hover{color:var(--brand-dark)}
.navcta{display:flex;gap:10px;flex-wrap:wrap}

/* =========================
   LOGO – ZOOM EFFECT
   ========================= */
.logo-wrap{
  width:86px;
  height:86px;
  border-radius:16px;
  background:var(--heat-grad);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 14px 28px rgba(239,68,68,.35);
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease;
  transform-origin:center;
}

.logo-wrap:hover{
  transform:scale(1.15);
  box-shadow:0 18px 36px rgba(239,68,68,.45);
}

.logo-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
  transition:transform .35s ease;
}

.logo-wrap:hover img{
  transform:scale(1.05);
}

/* =========================
   HERO
   ========================= */
.hero{padding:60px 0}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}

.card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-main{padding:32px}
.hero-side{padding:18px}

.kicker{
  font-size:12px;
  letter-spacing:.12em;
  font-weight:800;
  text-transform:uppercase;
  color:var(--muted);
}

.h1{
  font-size:44px;
  line-height:1.05;
  margin:12px 0;
}

.h2{
  font-size:28px;
  line-height:1.15;
  margin:0;
}

.lead{
  font-size:18px;
  line-height:1.6;
  color:var(--muted);
  margin:10px 0 0;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}

/* =========================
   HERO – SINGLE USE CASE
   ========================= */
.hero-single{
  display:flex;
  flex-direction:column;
  height:100%;
}

.hero-single-img{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  min-height:220px;
}

.hero-single-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
}

.hero-single-badge{
  position:absolute;
  left:14px;
  bottom:14px;
  background:rgba(11,15,20,.82);
  color:#fff;
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
}

.hero-single-body{
  padding:16px 4px 0;
}

.hero-single-body p{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:var(--muted);
}

/* =========================
   SECTIONS
   ========================= */
.section{padding:72px 0}

.section .head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.section .sub{
  color:var(--muted);
  max-width:62ch;
  line-height:1.6;
  margin:10px 0 0;
}

/* =========================
   REVIEWS
   ========================= */
.reviews{padding-top:36px}

.carousel{
  display:flex;
  gap:14px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
}

.review{
  flex:0 0 360px;
  scroll-snap-align:start;
  padding:18px;
}

.stars{letter-spacing:.10em}

.review p{
  margin:10px 0 0;
  line-height:1.65;
  color:var(--brand-mid);
}

.who{margin-top:12px;font-weight:850}

.src{
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  margin-top:3px;
}

/* =========================
   FEATURES
   ========================= */
.grid{display:grid;gap:18px}
.features{grid-template-columns:repeat(3,1fr)}
.features-4{grid-template-columns:repeat(4,1fr)}

.feature{padding:18px}

.feature .icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(249,115,22,.12);
  border:1px solid rgba(239,68,68,.20);
  font-weight:900;
}

.feature h3{margin:12px 0 0;font-size:16px}

.feature p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
}

/* =========================
   HIGHLIGHTS
   ========================= */
.highlights{grid-template-columns:repeat(3,1fr)}
.hl{overflow:hidden}

.hl .img{
  height:150px;
  background:
    radial-gradient(900px 220px at 30% 20%, rgba(239,68,68,.18), transparent 55%),
    radial-gradient(900px 220px at 70% 30%, rgba(249,115,22,.14), transparent 60%),
    linear-gradient(135deg, rgba(17,24,39,.08), #fff);
}

.hl .body{padding:18px}
.hl .body h3{margin:0;font-size:17px}

.hl .body p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
}

/* =========================
   HIGHLIGHTS – IMAGE EFFECTS
   ========================= */
.hl-link{
  text-decoration:none;
  color:inherit;
}

.hl .img{
  position:relative;
  overflow:hidden;
}

.hl .img.img-fallback{
  background:
    radial-gradient(800px 220px at 30% 20%, rgba(239,68,68,.18), transparent 55%),
    radial-gradient(800px 220px at 70% 30%, rgba(249,115,22,.14), transparent 60%),
    linear-gradient(135deg, #f3f5f9, #ffffff);
}

.hl .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s cubic-bezier(.2,.8,.2,1);
}

.hl-link:hover .img img{
  transform:scale(1.08);
}

.hl-link:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-strong);
}

/* =========================
   FINANCING
   ========================= */
.finance-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.finance-card{padding:22px}

.jobrad-widget-wrap{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(249,115,22,.08), #fff);
}

.finance-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
}

/* =========================
   CONTACT
   ========================= */
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form{padding:18px}

label{
  display:block;
  font-weight:800;
  font-size:13px;
  margin:12px 0 6px;
}

input,textarea,select{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px;
  font:inherit;
  background:#fff;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.form-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.sideinfo{padding:18px}

.sideinfo .box{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  margin-top:12px;
}

.kv{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:8px;
  font-size:14px;
}

.kv div:nth-child(odd){
  color:var(--muted);
  font-weight:700;
}

/* =========================
   MAP
   ========================= */
.map-embed{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  aspect-ratio:16/10;
}

.map-embed iframe{
  width:100%;
  height:100%;
  border:0;
}

/* =========================
   FOOTER
   ========================= */
footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  margin-top:60px;
  color:var(--muted);
}

.foot{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.foot-left{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footlinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.foot-partner{
  display:flex;
  flex-direction:column;
  gap:8px;
  text-align:right;
}

.partner-title{
  font-weight:900;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.partner-list{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.partner-list span{
  font-size:13px;
  font-weight:750;
  padding:6px 10px;
  border-radius:999px;
  background:#f3f4f6;
  border:1px solid var(--line);
  color:var(--brand-mid);
}

/* =========================
   BIKE GALLERY
   ========================= */
.bike-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.bike-card{
  display:block;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}

.bike-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 48px rgba(0,0,0,.14);
}

.bike-thumb{
  position:relative;
  height:180px;
  background:#f3f4f6;
  border-radius:18px 18px 0 0;
  overflow:hidden;
}

.bike-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bike-badge{
  position:absolute;
  left:12px;
  bottom:12px;
  background:rgba(11,15,20,.82);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}

.bike-body{padding:16px 18px 18px}
.bike-title{font-weight:900;color:var(--brand-dark);font-size:16px}
.bike-meta{margin-top:6px;color:var(--muted);font-size:13px}
.bike-price{margin-top:12px;font-weight:900;color:var(--brand-dark)}
.bike-cta{margin-top:10px;font-weight:800;color:var(--brand-mid);font-size:13px}

/* =========================
   BIKE DETAIL
   ========================= */
.bike-detail-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:start;
}

.bike-detail-media{
  overflow:hidden;
}

.bike-detail-media img{
  width:100%;
  height:auto;
  min-height:320px;
  object-fit:cover;
  border-radius:18px;
  display:block;
}

.bike-detail-summary{
  padding:22px;
}

.price-box{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
}

.price-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px dashed var(--line);
}

.price-row:last-child{border-bottom:none}

.price-label{
  color:var(--muted);
  font-weight:750;
  font-size:13px;
}

.price-val{font-weight:900}
.price-strong{font-size:18px}

.btn-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Spec table */
.spec-table-wrap{overflow:auto}

.spec-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
}

.spec-table th,
.spec-table td{
  padding:12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
  font-size:14px;
}

.spec-table th{
  width:220px;
  color:var(--muted);
  font-weight:800;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td{
  border-bottom:0;
}

/* =========================
   STANDARD GALLERY / CARDS
   ========================= */
.gallery-grid,
.related-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.related-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:.2s transform,.2s box-shadow;
}

.related-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-strong);
}

.related-media{
  height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}

.related-media img{
  width:auto;
  height:auto;
  max-width:90%;
  max-height:140px;
  object-fit:contain;
  display:block;
}

.related-body{
  padding:14px 16px;
}

.related-title{
  margin:0;
  font-size:16px;
  font-weight:900;
}

.related-meta{
  margin-top:6px;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  line-height:1.4;
}

.related-price{
  margin-top:10px;
  font-weight:900;
}

/* =========================
   HELMET MEDIA
   ========================= */
.helmet-media{
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  overflow:hidden;
}

.helmet-media img{
  max-width:90%;
  max-height:90%;
  width:auto;
  height:auto;
  object-fit:contain;
}

/* =========================
   ZUBEHÖR – EIGENES GRID (größer)
   ========================= */
.zubehoer-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:18px;
}

.zubehoer-grid .related-card{
  padding:0;
  font-size:14px;
}

/* Bild deutlich größer */
.zubehoer-grid .related-media{
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.zubehoer-grid .related-media img{
  width:auto;
  height:auto;
  max-width:90%;
  max-height:90%;
  object-fit:contain;
}

/* Mehr Luft im Content */
.zubehoer-grid .related-body{
  padding:14px;
}

.zubehoer-grid .related-title{
  font-size:15px;
  line-height:1.3;
}

.zubehoer-grid .related-meta{
  font-size:13px;
  line-height:1.4;
}

.zubehoer-grid .related-price{
  font-size:14px;
  margin-top:8px;
}

/* Button größer */
.zubehoer-grid .btn{
  padding:10px 14px;
  font-size:10px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .zubehoer-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:600px){
  .zubehoer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
/* =========================
   CERTIFICATE GALLERY
   ========================= */
.certificate-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

.certificate-card{
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.certificate-card img{
  width:100%;
  height:auto;
  max-height:120px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.85;
  transition:filter .2s ease, opacity .2s ease, transform .2s ease;
}

.certificate-card:hover img{
  filter:none;
  opacity:1;
  transform:scale(1.05);
}

/* =========================
   PWA INSTALL BANNER
   ========================= */
.pwa-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:9999;
  padding:16px;
  border-radius:18px;
  box-shadow:var(--shadow-strong);
}

.pwa-banner__inner{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.pwa-banner__text{
  min-width:240px;
  flex:1;
}

.pwa-banner__title{
  font-weight:900;
  letter-spacing:-.01em;
}

.pwa-banner__sub{
  margin-top:6px;
  color:var(--muted);
  line-height:1.45;
  font-size:13px;
}

.pwa-banner__ios{
  margin-top:10px;
  color:var(--brand-500);
  font-size:13px;
  line-height:1.45;
}

.pwa-banner__actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* =========================
   COOKIE BANNER
   ========================= */
.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:9999;
}

.cookie-box{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  flex-wrap:wrap;
}

.cookie-text{
  max-width:520px;
}

.cookie-text strong{
  display:block;
  font-size:16px;
}

.cookie-text p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.cookie-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* =========================
   UEBER-UNS: REVIEWS ROW
   ========================= */
.reviews-row{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

.reviews-fallback{
  padding:12px;
}

/* =========================
   TRUSTINDEX: 6 NEUSTE
   ========================= */
#reviews .ti-reviews-container-wrapper{
  display:flex !important;
  gap:14px !important;
  overflow-x:auto !important;
  padding-bottom:10px !important;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

#reviews .ti-review-item{
  flex:0 0 320px !important;
  scroll-snap-align:start;
}

#reviews .ti-review-item:nth-child(n+7){
  display:none !important;
}

#reviews .ti-controls,
#reviews .ti-controls-line{
  display:none !important;
}

/* =========================
   TEAM & SERVICE SLIDESHOW
   ========================= */
.team-service-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:18px;
  align-items:stretch;
}

.team-service-copy{
  padding:24px;
}

.team-service-copy h3{
  margin:10px 0 0;
  font-size:22px;
  line-height:1.25;
}

.team-service-copy p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.7;
}

.store-slider{
  padding:16px;
}

.store-slider-stage{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#f3f4f6;
  min-height:420px;
}

.store-slides{
  position:relative;
  width:100%;
  height:100%;
}

.store-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .45s ease, visibility .45s ease;
}

.store-slide.active{
  opacity:1;
  visibility:visible;
}

.store-slide img{
  width:100%;
  height:420px;
  object-fit:cover;
}

.store-slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:rgba(11,15,20,.72);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.2s ease;
  z-index:2;
}

.store-slider-btn:hover{
  background:rgba(11,15,20,.9);
}

.store-slider-btn.prev{left:14px}
.store-slider-btn.next{right:14px}

.store-slider-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}

.store-slider-dots button{
  width:11px;
  height:11px;
  border:none;
  border-radius:999px;
  background:#d1d5db;
  cursor:pointer;
  transition:.2s ease;
  padding:0;
}

.store-slider-dots button.active{
  width:28px;
  background:var(--heat-2);
}

/* =========================
   RESPONSIVE
   ========================= */
@media(max-width:1100px){
  .bike-grid{grid-template-columns:repeat(2,1fr)}
  .certificate-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:1000px){
  .bike-detail-hero{grid-template-columns:1fr}
  .zubehoer-grid{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:980px){
  .gallery-grid,
  .related-grid{
    grid-template-columns:1fr;
  }

  .team-service-grid{
    grid-template-columns:1fr;
  }

  .store-slider-stage,
  .store-slide img{
    min-height:300px;
    height:300px;
  }
}

@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .features-4{grid-template-columns:1fr}
  .highlights{grid-template-columns:1fr}
  .finance-grid{grid-template-columns:1fr}
  .contact-wrap{grid-template-columns:1fr}
  .foot-partner{text-align:left}
  .partner-list{justify-content:flex-start}
}

@media(max-width:768px){
  .logo-wrap{
    width:44px;
    height:44px;
    border-radius:14px;
  }
}

@media(max-width:650px){
  .bike-grid{grid-template-columns:1fr}
  .spec-table th{width:160px}
}

@media(max-width:600px){
  .certificate-grid{grid-template-columns:repeat(2,1fr)}
  .zubehoer-grid{grid-template-columns:repeat(2,1fr)}
}
/* =========================
   SCROLL TO TOP BUTTON
   ========================= */
.scroll-top{
  position:fixed;
  right:20px;
  bottom:20px;
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:var(--heat-grad);
  color:#fff;
  font-size:20px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;

  box-shadow:0 10px 30px rgba(0,0,0,.2);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s ease;

  z-index:9999;
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.scroll-top:hover{
  transform:translateY(-2px);
}
/* =========================
   BUTTON ROW – CLEAN ALIGNMENT
   ========================= */
.btn-row{
  display:flex;
  justify-content:center;   /* mittig im Kasten */
  align-items:center;       /* vertikal ausrichten */
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
  text-align:center;
}

/* Buttons gleich groß für saubere Linie */
.btn-row .btn{
  min-width:160px;
  justify-content:center;
}

/* Optional: gleiche Höhe */
.btn-row .btn{
  height:42px;
}
/* =========================
   HEADER SOCIAL CTA
   ========================= */
.btn-icon{
  width:42px;
  height:42px;
  padding:0;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  background:#fff;
  color:var(--brand-mid);
  transition:.2s ease;
}

.btn-icon:hover{
  transform:translateY(-2px);
}

/* WhatsApp */
.btn-icon.whatsapp{
  color:#25D366;
}
.btn-icon.whatsapp:hover{
  background:#25D366;
  color:#fff;
}

/* Instagram */
.btn-icon.instagram{
  color:#E1306C;
}
.btn-icon.instagram:hover{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  color:#fff;
}

/* Call Button stärker */
.btn.call{
  font-size:14px;
  padding:10px 16px;
}
@media(max-width:768px){
  .call-btn{
    display:none; 
  }
}
/* =========================
   NEWS TICKER
   ========================= */
.news-ticker{
  position:relative;
  z-index:5;
  padding:10px 0 0;
}

.news-ticker__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:center;
}

.news-ticker__label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:var(--heat-grad);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.news-ticker__track-wrap{
  min-height:40px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
}

.news-ticker__track{
  display:inline-flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
  padding-left:100%;
  animation:newsTickerMove 32s linear infinite;
}

.news-ticker__item{
  font-size:14px;
  font-weight:700;
  color:var(--brand-mid);
}

.news-ticker__sep{
  color:var(--heat-2);
  font-weight:900;
}

.news-ticker__track-wrap:hover .news-ticker__track{
  animation-play-state:paused;
}

@keyframes newsTickerMove{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@media(max-width:768px){
  .news-ticker__inner{
    grid-template-columns:1fr;
    gap:8px;
  }

  .news-ticker__label{
    justify-self:start;
  }

  .news-ticker__item{
    font-size:13px;
  }
}
/* =========================
   BIKE OVERVIEW – HERSTELLER SORTIERT
   DESIGNKOMPATIBEL ZUM BESTAND
   ========================= */

.bike-overview-page{
  padding:72px 0;
}

.bike-overview-hero{
  margin-bottom:28px;
}

.bike-overview-hero .h1,
.bike-overview-hero h1{
  margin:12px 0;
}

.bike-overview-hero p{
  color:var(--muted);
  line-height:1.65;
  max-width:68ch;
}

.bike-brand-wrapper{
  display:flex;
  flex-direction:column;
  gap:42px;
}

.brand-section{
  width:100%;
}

.brand-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:18px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}

.brand-heading h2{
  margin:0;
  font-size:28px;
  color:var(--brand-dark);
}

.brand-heading span{
  font-weight:800;
  color:var(--muted);
  font-size:13px;
}

/* überschreibt nur Bike-Übersicht */
.bike-brand-wrapper .bike-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.bike-brand-wrapper .bike-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
  border:1px solid transparent;
}

.bike-brand-wrapper .bike-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-strong);
  border-color:rgba(204,8,8,.12);
}

.bike-card-image{
  height:190px;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.bike-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s cubic-bezier(.2,.8,.2,1);
}

.bike-brand-wrapper .bike-card:hover .bike-card-image img{
  transform:scale(1.06);
}

.bike-card-content{
  padding:16px 18px 18px;
}

.bike-card-content .bike-brand{
  display:inline-flex;
  margin-bottom:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(239,68,68,.08);
  color:var(--heat-2);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.bike-card-content h3{
  margin:0;
  font-size:18px;
  font-weight:900;
  color:var(--brand-dark);
}

.bike-card-content p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.bike-card-content strong{
  display:block;
  margin-top:12px;
  color:var(--brand-dark);
  font-weight:900;
}

.bike-card-content span{
  display:inline-flex;
  margin-top:12px;
  font-size:13px;
  font-weight:900;
  color:var(--brand-mid);
}

/* =========================
   BIKE DETAIL – FLIPKARTE + ZOOM
   DESIGNKOMPATIBEL ZUM BESTAND
   ========================= */

.bike-detail-page{
  padding:72px 0;
}

.bike-detail-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:start;
}

.bike-detail-image-box{
  position:relative;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
  overflow:hidden;
}

.bike-detail-image{
  width:100%;
  min-height:340px;
  max-height:520px;
  object-fit:cover;
  border-radius:18px;
  cursor:zoom-in;
  transition:transform .35s cubic-bezier(.2,.8,.2,1);
}

.bike-detail-image:hover{
  transform:scale(1.025);
}

.zoom-btn{
  position:absolute;
  right:30px;
  bottom:30px;
  border:none;
  border-radius:12px;
  padding:12px 18px;
  background:var(--heat-grad);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(239,68,68,.3);
  transition:.2s ease;
}

.zoom-btn:hover{
  transform:translateY(-2px);
}

.bike-detail-content{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.back-link{
  display:inline-flex;
  margin-bottom:16px;
  font-weight:900;
  color:var(--brand-mid);
}

.back-link:hover{
  color:var(--brand-dark);
}

.bike-detail-content h1{
  margin:12px 0 0;
  font-size:44px;
  line-height:1.05;
  color:var(--brand-dark);
}

.bike-detail-type{
  margin:10px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
}

.bike-detail-price{
  margin:14px 0 0;
  font-size:22px;
  font-weight:950;
  color:var(--brand-dark);
}

/* Flip Card */
.flip-card{
  width:100%;
  min-height:390px;
  perspective:1200px;
  cursor:pointer;
  margin-top:20px;
}

.flip-inner{
  position:relative;
  width:100%;
  min-height:390px;
  transition:transform .75s cubic-bezier(.2,.8,.2,1);
  transform-style:preserve-3d;
}

.flip-card.active .flip-inner{
  transform:rotateY(180deg);
}

.flip-front,
.flip-back{
  position:absolute;
  inset:0;
  padding:22px;
  border-radius:18px;
  background:
    linear-gradient(135deg, rgba(249,115,22,.06), #fff);
  border:1px solid var(--line);
  backface-visibility:hidden;
  overflow:auto;
}

.flip-front h2,
.flip-back h2{
  margin:0 0 14px;
  font-size:24px;
  color:var(--brand-dark);
}

.flip-back{
  transform:rotateY(180deg);
}

.flip-back p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.detail-list{
  list-style:none;
  margin:0;
  padding:0;
}

.detail-list li{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:14px;
  padding:11px 0;
  border-bottom:1px dashed var(--line);
}

.detail-list li:last-child{
  border-bottom:none;
}

.detail-list span{
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

.detail-list strong{
  color:var(--brand-dark);
  font-weight:900;
}

.flip-hint{
  margin-top:18px;
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(239,68,68,.08);
  color:var(--heat-2);
  font-size:12px;
  font-weight:900;
}

.bike-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Buttons kompatibel mit bestehendem Design */
.bike-actions .primary-btn,
.bike-actions .secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  min-width:160px;
  padding:12px 18px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  transition:.2s ease;
}

.bike-actions .primary-btn{
  background:var(--heat-grad);
  color:#fff;
  box-shadow:0 10px 24px rgba(239,68,68,.3);
}

.bike-actions .secondary-btn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--brand-mid);
}

.bike-actions .primary-btn:hover,
.bike-actions .secondary-btn:hover{
  transform:translateY(-2px);
}

/* =========================
   BIKE IMAGE ZOOM OVERLAY
   ========================= */

.zoom-overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(11,15,20,.88);
  z-index:99999;
  cursor:zoom-out;
}

.zoom-overlay.active{
  display:flex;
}

.zoom-overlay img{
  max-width:92vw;
  max-height:88vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 22px 80px rgba(0,0,0,.45);
  background:#fff;
}

.zoom-close{
  position:fixed;
  top:24px;
  right:24px;
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:var(--brand-dark);
  font-size:30px;
  line-height:1;
  cursor:pointer;
  box-shadow:var(--shadow);
}

/* =========================
   ERROR BOX
   ========================= */

.error-box{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
  text-align:center;
  max-width:760px;
  margin:40px auto;
}

.error-box h2{
  margin:0 0 10px;
  color:var(--brand-dark);
}

.error-box p{
  color:var(--muted);
}

/* =========================
   RESPONSIVE BIKE MODULE
   ========================= */

@media(max-width:1100px){
  .bike-brand-wrapper .bike-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .bike-detail-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:650px){
  .bike-brand-wrapper .bike-grid{
    grid-template-columns:1fr;
  }

  .bike-detail-content h1{
    font-size:36px;
  }

  .bike-detail-image{
    min-height:260px;
  }

  .zoom-btn{
    position:static;
    margin-top:14px;
    width:100%;
  }

  .bike-detail-image-box{
    display:flex;
    flex-direction:column;
  }

  .flip-card,
  .flip-inner{
    min-height:460px;
  }

  .detail-list li{
    grid-template-columns:1fr;
    gap:4px;
  }

  .bike-actions .primary-btn,
  .bike-actions .secondary-btn{
    width:100%;
  }
}
/* =========================
   BIKE GALLERY THUMBS
   ========================= */

.bike-gallery-thumbs{
  width:100%;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.bike-gallery-thumb{
  width:76px;
  height:58px;
  padding:4px;
  border-radius:12px;
  border:2px solid transparent;
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.10);
  cursor:pointer;
  overflow:hidden;
  transition:.2s ease;
}

.bike-gallery-thumb:hover{
  transform:translateY(-2px);
}

.bike-gallery-thumb.active{
  border-color:var(--heat-2);
}

.bike-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:8px;
}
/* =========================
   RADLOGE BIKE CENTER
   Übersicht, Detail, Galerie, Zoom, Flip-Card
   ========================= */

/* =========================
   BIKE OVERVIEW PAGE
   ========================= */

.bike-overview-page {
  padding-top: 72px;
  padding-bottom: 72px;
}

.bike-hero,
.bike-overview-hero {
  margin-bottom: 28px;
}

.bike-hero h1,
.bike-overview-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 12px 0;
  color: var(--brand-dark);
}

.bike-hero .lead,
.bike-overview-hero .lead {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.bike-search {
  margin: 26px 0 36px;
}

.bike-search input {
  width: 100%;
  max-width: 560px;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 16px;
  outline: none;
}

.bike-search input:focus {
  border-color: rgba(204, 8, 8, .35);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}

.loading-card {
  padding: 40px;
  text-align: center;
}

.bike-brand-wrapper {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.brand-section {
  width: 100%;
}

.brand-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.brand-heading h2 {
  margin: 0;
  font-size: 28px;
  color: var(--brand-dark);
}

.brand-heading span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.bike-brand-wrapper .bike-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bike-brand-wrapper .bike-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bike-brand-wrapper .bike-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(204,8,8,.15);
}

.bike-card-image {
  height: 210px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bike-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.bike-brand-wrapper .bike-card:hover .bike-card-image img {
  transform: scale(1.06);
}

.bike-card-content {
  padding: 18px;
}

.bike-card-content .bike-brand {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239,68,68,.08);
  color: var(--heat-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bike-card-content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--brand-dark);
}

.bike-card-content p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.bike-card-content strong {
  display: block;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 900;
}

.bike-card-content span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-mid);
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   BIKE DETAIL PAGE
   ========================= */

.bike-detail-page {
  padding-top: 72px;
  padding-bottom: 72px;
}

.bike-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 18px;
  align-items: start;
}

.bike-detail-image-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.bike-detail-image {
  width: 100%;
  min-height: 360px;
  max-height: 560px;
  object-fit: contain;
  border-radius: 18px;
  background: #f3f4f6;
  cursor: zoom-in;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.bike-detail-image:hover {
  transform: scale(1.015);
}

.zoom-btn {
  margin-top: 14px;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--heat-grad);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(239,68,68,.3);
  transition: .2s ease;
}

.zoom-btn:hover {
  transform: translateY(-2px);
}

.bike-detail-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  font-weight: 900;
  color: var(--brand-mid);
}

.back-link:hover {
  color: var(--brand-dark);
}

.bike-detail-content h1 {
  margin: 12px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
  color: var(--brand-dark);
}

.bike-detail-type {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.bike-detail-price {
  margin: 14px 0 0;
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 950;
}

/* =========================
   GALLERY THUMBS
   ========================= */

.bike-gallery-thumbs {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.bike-gallery-thumb {
  width: 78px;
  height: 62px;
  padding: 4px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.10);
  cursor: pointer;
  overflow: hidden;
  transition: .2s ease;
}

.bike-gallery-thumb:hover {
  transform: translateY(-2px);
}

.bike-gallery-thumb.active {
  border-color: var(--heat-2);
}

.bike-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: #f3f4f6;
}

/* =========================
   FLIP CARD
   ========================= */

.flip-card {
  width: 100%;
  min-height: 390px;
  perspective: 1200px;
  cursor: pointer;
  margin-top: 20px;
}

.flip-inner {
  position: relative;
  width: 100%;
  min-height: 390px;
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
}

.flip-card.active .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249,115,22,.06), #fff);
  border: 1px solid var(--line);
  backface-visibility: hidden;
  overflow: auto;
}

.flip-front h2,
.flip-back h2 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 24px;
}

.flip-back {
  transform: rotateY(180deg);
}

.flip-back p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.detail-list strong {
  color: var(--brand-dark);
  font-weight: 900;
}

.flip-hint {
  margin-top: 18px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239,68,68,.08);
  color: var(--heat-2);
  font-size: 12px;
  font-weight: 900;
}

/* =========================
   ACTIONS
   ========================= */

.bike-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.bike-actions .primary-btn,
.bike-actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 160px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: .2s ease;
}

.bike-actions .primary-btn {
  background: var(--heat-grad);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239,68,68,.3);
}

.bike-actions .secondary-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-mid);
}

.bike-actions .primary-btn:hover,
.bike-actions .secondary-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   ZOOM OVERLAY
   ========================= */

.zoom-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(11,15,20,.90);
  z-index: 99999;
  cursor: zoom-out;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 22px 80px rgba(0,0,0,.45);
  background: #fff;
}

.zoom-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* =========================
   ERROR BOX
   ========================= */

.error-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
  max-width: 840px;
  margin: 40px auto;
}

.error-box h2 {
  margin: 0 0 10px;
  color: var(--brand-dark);
}

.error-box p {
  color: var(--muted);
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:1100px) {
  .bike-brand-wrapper .bike-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bike-detail-layout {
    grid-template-columns: 1fr;
  }

  .bike-detail-image {
    min-height: 320px;
  }
}

@media(max-width:650px) {
  .bike-brand-wrapper .bike-grid {
    grid-template-columns: 1fr;
  }

  .bike-detail-page,
  .bike-overview-page {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bike-detail-content h1 {
    font-size: 34px;
  }

  .bike-detail-image {
    min-height: 240px;
  }

  .bike-gallery-thumb {
    width: 68px;
    height: 54px;
  }

  .flip-card,
  .flip-inner {
    min-height: 470px;
  }

  .detail-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bike-actions .primary-btn,
  .bike-actions .secondary-btn {
    width: 100%;
  }
}
.partner-login{
  font-size:13px;
  font-weight:750;
  padding:6px 10px;
  border-radius:999px;
  background:#f3f4f6;
  border:1px solid var(--line);
  color:var(--brand-mid);
}

.partner-login:hover{
  background:var(--heat-grad);
  color:#fff;
}