/* ============================================
   2RAD NEUBERG – PREMIUM THEME CSS
   Design: Luxury Editorial for 30+ E-Bike buyers
   Typography: Playfair Display + Outfit
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --red: #C8222A;
  --red-light: #E8353D;
  --dark: #0F0F0F;
  --dark-alt: #181818;
  --cream: #FAF8F5;
  --warm-gray: #F0EDE8;
  --text: #2A2522;
  --text-muted: #8A8279;
  --gold: #C9A96E;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* Override Astra defaults */
body .ast-container,
.site-content .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}

.entry-content {
  margin: 0 !important;
}

/* Kill any Astra/Elementor/plugin ghost elements */
.elementor-widget-wrap,
.elementor-section-wrap,
.elementor-element,
.e-con,
.ast-scroll-to-top-right,
#ast-scroll-top {
  display: none !important;
}

/* Kill any pseudo-element artifacts on cards */
.product-card *::before,
.product-card *::after,
.review-card *::before,
.review-card *::after,
.reason-card *::before,
.reason-card *::after {
  display: none !important;
  content: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

/* --- GRAIN OVERLAY --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.05s; }
.reveal.delay-2 { transition-delay: 0.1s; }
.reveal.delay-3 { transition-delay: 0.15s; }
.reveal.delay-4 { transition-delay: 0.2s; }
.reveal.delay-5 { transition-delay: 0.25s; }
.reveal.delay-6 { transition-delay: 0.3s; }
.reveal.delay-7 { transition-delay: 0.35s; }
.reveal.delay-8 { transition-delay: 0.4s; }

/* --- SECTION LABEL --- */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-label span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* --- SVG ICONS --- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  display: block;
}

/* --- STARS --- */
.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  fill: var(--gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: transparent;
  transition: all 0.5s var(--ease);
}

.site-nav.scrolled {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s;
}

.site-nav.scrolled .nav-logo-img {
  height: 38px;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-logo .logo-text .accent {
  color: var(--red);
}

.nav-logo .divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
}

.nav-logo .location {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--red-light);
}

/* Cart icon in nav */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-left: 4px;
  transition: opacity 0.3s;
}

.nav-cart:hover {
  opacity: 0.7;
}

.nav-cart-count {
  position: absolute;
  top: 0;
  right: -4px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cart-mobile {
  display: none;
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(24px);
  padding: 24px 32px;
  display: none;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-atmosphere-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 34, 42, 0.03) 0%, transparent 70%);
}

.hero-atmosphere-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200, 155, 110, 0.03) 0%, transparent 60%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 2;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Trust badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-trust-badge span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Hero headline */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -2px;
  margin: 0 0 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero h1 .subtle {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65em;
  letter-spacing: -1px;
}

/* Hero text */
.hero-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 440px;
  margin: 0 0 44px;
  font-weight: 400;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s var(--ease);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 34, 42, 0.2);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.6);
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 64px;
}

.hero-stat .value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
}

.hero-stat .label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(165deg, #222 0%, #181818 100%);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--dark) 100%);
  z-index: 2;
}

/* Placeholder */
.hero-image .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200, 34, 42, 0.06);
  border: 1px solid rgba(200, 34, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-text {
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-body);
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

.placeholder-text small {
  font-size: 11px;
  opacity: 0.6;
  display: block;
  margin-top: 2px;
}

/* Floating card */
.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  color: var(--text);
  padding: 16px 22px;
  border-radius: 12px;
  font-family: var(--font-body);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}

.hero-floating-card .fcard-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(200, 34, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floating-card .fcard-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.hero-floating-card .fcard-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-bar {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ============================================
   SECTIONS – Light/Dark backgrounds
   ============================================ */
.section-light {
  background: var(--cream);
  padding: 110px 32px;
}

.section-dark {
  background: var(--dark);
  padding: 110px 32px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section headings */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin: 0 0 56px;
}

.section-heading em {
  font-style: italic;
  color: var(--red);
}

.section-light .section-heading {
  color: var(--text);
}

.section-dark .section-heading {
  color: #fff;
}

.section-subtext {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 56px;
}

.section-light .section-subtext {
  color: var(--text-muted);
}

.section-dark .section-subtext {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CATEGORIES GRID
   ============================================ */
/* --- CATEGORIES: 3x3 TYPE GRID --- */
.categories-section {
  background: var(--dark);
  padding: 110px 32px;
}

.type-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.type-grid-3x3 > .reveal {
  height: 100%;
}

.type-card-simple {
  display: flex;
  flex-direction: column;
  background: var(--dark-alt);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s var(--ease);
  height: 100%;
}

.type-card-simple:hover {
  border-color: rgba(200,34,42,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.type-card-img {
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.type-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.type-card-simple:hover .type-card-img img {
  transform: scale(1.08);
}

.type-card-info {
  padding: 20px 22px 24px;
  text-align: center;
}

.type-card-info h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.2);
  transition: text-decoration-color 0.3s;
}

.type-card-simple:hover .type-card-info h3 {
  text-decoration-color: var(--red);
}

.type-card-info p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-weight: 300;
  line-height: 1.4;
}

/* ============================================
   BESTSELLER
   ============================================ */
.bestseller-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.bestseller-all {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.bestseller-all:hover {
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  height: 100%;
}

.product-card:hover {
  border-color: rgba(200, 34, 42, 0.18);
  transform: translateY(-4px);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-info {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
  flex: 1;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price .current {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.product-price .old {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: line-through;
}

/* ============================================
   WHY US / SERVICE
   ============================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 14px;
}

.reason-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease);
}

.reason-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 34, 42, 0.04);
  border: 1px solid rgba(200, 34, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.reason-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-glow {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(200, 34, 42, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.reviews-header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.review-quote-icon {
  opacity: 0.15;
}

.review-text {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 16px 0 0;
  font-style: italic;
  font-weight: 400;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.review-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   LEASING
   ============================================ */
.leasing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.leasing-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
}

.leasing-heading em {
  font-style: italic;
  color: var(--red);
}

.leasing-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Steps */
.leasing-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.leasing-step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: rgba(200, 34, 42, 0.12);
  min-width: 40px;
  line-height: 1;
}

.leasing-step-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.leasing-step-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Partners box */
.leasing-partners-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.partners-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-pill {
  background: var(--warm-gray);
  border-radius: 6px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  cursor: default;
}

.partner-pill:hover {
  background: rgba(200, 34, 42, 0.06);
  color: var(--red);
}

/* easyCredit box */
.easycredit-box {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(201, 169, 110, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.easycredit-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.easycredit-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.easycredit-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================
   STORE / LADEN
   ============================================ */
.store-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  margin-bottom: 56px;
}

.store-gallery-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
  overflow: hidden;
}

.store-gallery-item:hover {
  border-color: rgba(200, 34, 42, 0.12);
}

.store-gallery-item.main {
  grid-row: 1 / 3;
}

.store-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 34, 42, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  font-weight: 400;
}

/* Community box */
.community-box {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.community-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 34, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.community-content {
  flex: 1;
  min-width: 240px;
}

.community-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.community-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--red);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 48px 48px;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.cta-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--red);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.zweirad-footer {
  background: var(--dark);
  padding: 64px 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo-link {
  display: block;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-credit {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
}

.footer-credit a {
  color: var(--red);
  display: inline;
  margin-bottom: 0;
}

/* ============================================
   WOOCOMMERCE: SHOP & PRODUCT PAGES
   ============================================ */

/* --- Main Wrapper --- */
.wc-main {
  background: var(--cream);
  min-height: 60vh;
}

/* Eliminate white borders: body background matches on WC pages */
body.woocommerce,
body.woocommerce-page,
body.single-product,
body.woocommerce-cart,
body.woocommerce-checkout {
  background: var(--cream) !important;
}

/* WC Notices: styled as toast notifications on homepage */
.zweirad-frontpage .woocommerce-message,
.zweirad-frontpage .woocommerce-info {
  position: fixed !important;
  top: 84px !important;
  right: 20px !important;
  left: auto !important;
  z-index: 9995 !important;
  max-width: 400px !important;
  padding: 16px 24px !important;
  border-radius: 10px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
  background: #1a1a1a !important;
  color: #fff !important;
  border: none !important;
  border-left: 4px solid #22c55e !important;
  margin: 0 !important;
}

.zweirad-frontpage .woocommerce-message a.button,
.zweirad-frontpage .woocommerce-info a.button {
  display: none !important;
}

.woocommerce-error {
  border-left-color: var(--red) !important;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.zweirad-shop .site-nav,
.single-product .site-nav,
.post-type-archive-product .site-nav,
.tax-product_cat .site-nav,
.woocommerce-cart .site-nav,
.woocommerce-checkout .site-nav {
  position: relative;
  background: #0F0F0F !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

/* --- Shop Hero (Category Banner) --- */
.shop-hero {
  background: var(--dark);
  padding: 120px 32px 56px;
}

.shop-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  margin-bottom: 20px;
}

.shop-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.shop-breadcrumb a:hover {
  color: #fff;
}

.bc-sep {
  color: rgba(255,255,255,0.2);
  margin: 0 8px;
}

.bc-current {
  color: rgba(255,255,255,0.7);
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -1px;
}

.shop-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 24px;
  max-width: 600px;
  line-height: 1.6;
}

.shop-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.shop-count {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.shop-trust-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-pill {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* --- Shop Toolbar --- */
.shop-products {
  padding: 40px 0 80px;
  background: #fff;
}

.shop-products-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* WC add-to-cart notice - style and center */
.woocommerce-notices-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Fix: Astra flex container pushing article right because notices-wrapper takes space */
.single-product .ast-container,
.post-type-archive-product .ast-container,
.tax-product_cat .ast-container,
.woocommerce-cart .ast-container,
.woocommerce-checkout .ast-container {
  display: block !important;
  position: relative;
}

.single-product .ast-container > .woocommerce-notices-wrapper,
.post-type-archive-product .ast-container > .woocommerce-notices-wrapper,
.tax-product_cat .ast-container > .woocommerce-notices-wrapper {
  position: absolute;
  width: 100%;
  z-index: 100;
  left: 0;
  box-sizing: border-box;
}

.woocommerce-message,
.woocommerce-info {
  background: #f0fdf4 !important;
  border-left: 4px solid #22c55e !important;
  border-top: none !important;
  padding: 16px 24px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  margin: 16px 0 !important;
  border-radius: 8px !important;
}

.woocommerce-message a.button {
  float: right;
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.woocommerce-message::before {
  color: #22c55e !important;
}

.woocommerce-error {
  background: #fef2f2 !important;
  border-left: 4px solid var(--red) !important;
  border-top: none !important;
  padding: 16px 24px !important;
  font-family: var(--font-body) !important;
  max-width: 1440px !important;
  margin: 16px auto !important;
  border-radius: 8px !important;
}

/* Body background for WC pages */
body.woocommerce,
body.woocommerce-cart,
body.woocommerce-checkout,
body.single-product {
  background: #fff;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.shop-toolbar .woocommerce-ordering select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.shop-toolbar .woocommerce-result-count {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* --- Product Grid --- */
.wc-main ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Product Card --- */
.zr-product-card {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zr-product-link:hover {
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.zr-product-img-wrap {
  position: relative;
  background: #f5f5f5;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.zr-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.zr-product-link:hover .zr-product-img {
  transform: scale(1.06);
}

.zr-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}

.zr-product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.zr-product-cat {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.zr-product-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.35;
}

.zr-product-price {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.zr-product-price del {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 6px;
}

.zr-product-price ins {
  text-decoration: none;
  color: var(--red);
  font-weight: 700;
}

.zr-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.zr-product-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  transition: transform 0.3s;
}

.zr-product-link:hover .zr-product-cta {
  transform: translateX(4px);
}

.zr-product-ship {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
}

/* --- Shop Bottom CTA --- */
.shop-bottom-cta {
  background: var(--dark);
  padding: 64px 32px;
  text-align: center;
}

.shop-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.shop-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  margin: 0 0 8px;
}

.shop-cta-inner p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 28px;
}

.shop-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-empty {
  text-align: center;
  padding: 80px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
}

/* --- WC Pagination --- */
.woocommerce-pagination {
  margin-top: 48px;
  text-align: center;
}

.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  transition: all 0.3s;
}

.woocommerce-pagination ul li a:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.woocommerce-pagination ul li span.current {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ============================================
   WOOCOMMERCE: SINGLE PRODUCT PAGE
   ============================================ */

.zr-single-product {
  background: #fff;
}

.zr-sp-breadcrumb-wrap {
  background: var(--dark);
  padding: 100px 32px 24px;
}

.zr-sp-breadcrumb-wrap .shop-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Product Layout */
.zr-sp-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
}

/* Gallery */
.zr-sp-gallery {
  position: relative;
}

.zr-sp-sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 3;
}

.zr-sp-main-image {
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 24px;
}

.zr-sp-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zr-sp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.zr-sp-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
  transition: border-color 0.2s;
}

.zr-sp-thumb.active,
.zr-sp-thumb:hover {
  border-color: var(--red);
}

.zr-sp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product Info */
.zr-sp-info {
  padding-top: 8px;
}

.zr-sp-cat {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.zr-sp-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.zr-sp-price-block {
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.zr-sp-price {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.zr-sp-price del {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 8px;
}

.zr-sp-price ins {
  text-decoration: none;
  color: var(--red);
}

.zr-sp-leasing {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.zr-sp-leasing strong {
  color: var(--text);
}

.zr-sp-tax {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

.zr-sp-short-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* CTA Actions */
.zr-sp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.zr-sp-actions .single_add_to_cart_button {
  background: var(--red) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 16px 20px !important;
  border-radius: 10px !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s !important;
  text-align: center;
  line-height: 1.2 !important;
}

.zr-sp-actions .single_add_to_cart_button:hover {
  background: #a81c23 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,34,42,0.3);
}

.zr-sp-actions .quantity {
  display: none;
}

.zr-sp-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 16px 20px;
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.12);
  background: #fff;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

.zr-sp-btn-call:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,34,42,0.04);
}

.zr-sp-btn-wa {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #128C7E;
  padding: 16px 20px;
  border-radius: 10px;
  border: 2px solid rgba(37, 211, 102, 0.25);
  background: #fff;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
  line-height: 1.2;
}

.zr-sp-btn-wa:hover {
  background: rgba(37, 211, 102, 0.06);
  border-color: #25D366;
  color: #128C7E;
}

/* Product card link: ensure full clickability on touch */
.zr-product-link {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease);
  height: 100%;
  -webkit-tap-highlight-color: rgba(200,34,42,0.1);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* Kill any Astra product image borders */
.woocommerce ul.products li.product img,
.woocommerce ul.products li.product a img,
.astra-shop-thumbnail-wrap img {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Trust Signals */
.zr-sp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.zr-sp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.04);
}

.zr-trust-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.zr-sp-trust-item strong {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.zr-sp-trust-item span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* Description & Specs Tabs */
.zr-sp-details {
  background: #fff;
  padding: 48px 32px;
}

.zr-sp-details-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zr-sp-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 0;
}

.zr-sp-tab {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}

.zr-sp-tab.active {
  color: var(--text);
  border-bottom-color: var(--red);
}

.zr-sp-tab:hover {
  color: var(--text);
}

.zr-sp-tab-content {
  display: none;
}

.zr-sp-tab-content.active {
  display: block;
}

.zr-sp-desc-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
}

.zr-sp-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 32px;
}

.zr-sp-specs ul li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  break-inside: avoid;
}

/* Related Products */
.zr-sp-related {
  background: var(--cream);
  padding: 64px 32px;
}

.zr-sp-related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zr-sp-related h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 32px;
}

.zr-sp-related ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .leasing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 32px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .type-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Ensure reveal wrappers in grids stretch to full height */
.reviews-grid > .reveal,
.products-grid > .reveal,
.type-grid-3x3 > .reveal,
.reasons-grid > .reveal {
  height: 100%;
}

.reviews-grid > .reveal > .review-card,
.products-grid > .reveal > .product-card,
.reasons-grid > .reveal > .reason-card {
  height: 100%;
}

/* Tablet: 3 column grid */
@media (max-width: 1100px) {
  .wc-main ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-right-mobile {
    display: flex;
  }

  .nav-cart-mobile {
    display: inline-flex;
  }

  .hero-inner {
    padding: 100px 20px 48px;
  }

  .section-light,
  .section-dark {
    padding: 56px 20px;
  }

  .section-heading {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 42px);
    letter-spacing: -1px;
  }

  .hero-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    max-width: none;
  }

  /* Marquee slower on mobile */
  .marquee-track {
    animation-duration: 15s !important;
    gap: 24px;
  }

  .store-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .store-gallery-item.main {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 200px;
  }

  .store-gallery-item {
    min-height: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  /* Reviews: 1 column on mobile for readability */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  /* Products: 2 columns on tablet, will go 1 on small phone */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Categories: 2 columns on mobile */
  .type-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .type-card-info {
    padding: 14px 16px 18px;
  }

  .type-card-info h3 {
    font-size: 14px;
  }

  .type-card-info p {
    font-size: 12px;
  }

  /* Reason cards: bigger tap targets, more padding */
  .reason-card {
    padding: 28px 24px;
  }

  /* WooCommerce responsive */
  .wc-main ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .shop-products-inner {
    padding: 0 16px;
  }

  .zr-sp-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px;
  }

  .shop-hero { padding: 100px 20px 40px; }
  .shop-products { padding: 28px 0 60px; }

  .shop-trust-pills { display: none; }

  .zr-sp-trust { grid-template-columns: 1fr; }

  .zr-sp-actions {
    grid-template-columns: 1fr;
  }

  .zr-sp-actions .single_add_to_cart_button,
  .zr-sp-btn-call,
  .zr-sp-btn-wa {
    width: 100% !important;
    text-align: center;
    justify-content: center;
    padding: 16px 20px !important;
    font-size: 15px !important;
  }

  .zr-sp-specs ul { columns: 1; }

  .zr-sp-related ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .shop-toolbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Product cards: ensure clickability on mobile */
  .zr-product-card {
    min-height: 280px;
  }

  .zr-product-link {
    -webkit-tap-highlight-color: rgba(200,34,42,0.15);
    touch-action: manipulation;
  }

  .zr-product-name {
    font-size: 14px;
  }

  .zr-product-price {
    font-size: 16px;
  }

  /* Hero grid pattern: hide on mobile (the diagonal lines) */
  .hero-grid-pattern {
    display: none;
  }

  /* Leasing partner logos smaller */
  .leasing-logos {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 90px 16px 40px;
  }

  .section-light,
  .section-dark {
    padding: 48px 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .value {
    font-size: 24px;
  }

  .hero h1 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Products: 1 column on very small screens */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Buttons: full width on mobile for easier tapping */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 18px 24px;
    font-size: 16px;
  }

  /* CTA section buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* WooCommerce small screen */
  .wc-main ul.products {
    grid-template-columns: 1fr !important;
  }

  .zr-sp-related ul.products {
    grid-template-columns: 1fr !important;
  }

  /* Nav logo smaller on tiny screens */
  .nav-logo-img {
    height: 36px;
  }

  /* Contact cards stack */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Cart, Checkout, Thank You – Premium Styled
   ========================================================================== */

/* --- Checkout Progress Bar --- */
.zr-checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding-top: 100px;
}

.zr-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.zr-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  background: #e5e5e5;
  color: #999;
  transition: all 0.3s;
}

.zr-progress-step.active .zr-step-num {
  background: var(--red);
  color: #fff;
}

.zr-progress-step.done .zr-step-num {
  background: #22c55e;
  color: #fff;
}

.zr-step-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zr-progress-step.active .zr-step-label,
.zr-progress-step.done .zr-step-label {
  color: var(--text);
}

.zr-progress-line {
  width: 80px;
  height: 2px;
  background: #e5e5e5;
  margin: 0 12px;
  margin-bottom: 28px;
}

.zr-progress-line.active {
  background: #22c55e;
}

/* --- Cart --- */
.zr-cart-wrap {
  min-height: 70vh;
  padding: 0 32px 80px;
}

.zr-cart-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.zr-cart-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
}

.zr-cart-count {
  color: #999;
  font-weight: 400;
}

.zr-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Cart Items */
.zr-cart-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}

.zr-cart-item:first-child {
  padding-top: 0;
}

.zr-cart-item-img {
  width: 120px;
  min-width: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
}

.zr-cart-item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.zr-cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.zr-cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.zr-cart-item-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.zr-cart-item-name:hover { color: var(--red); }

.zr-cart-item-price-single {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.zr-cart-item-subtotal {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.zr-cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.zr-cart-qty input[type="number"] {
  width: 64px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.zr-cart-remove {
  font-family: var(--font-body);
  font-size: 13px;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.zr-cart-remove:hover { color: var(--red); }

.zr-cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
}

/* Cart Summary Sidebar */
.zr-cart-summary {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eee;
  position: sticky;
  top: 100px;
}

.zr-summary-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.zr-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: #555;
}

.zr-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 8px;
  margin-top: 12px;
  border-top: 2px solid var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.zr-total-price {
  font-size: 22px;
  color: var(--red);
}

.zr-summary-tax-note {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.zr-free-shipping {
  color: #22c55e;
  font-weight: 600;
}

/* Buttons */
.zr-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

.zr-btn-primary:hover {
  background: #a81c23;
  transform: translateY(-1px);
}

.zr-btn-checkout {
  width: 100%;
  font-size: 17px;
  padding: 20px 32px;
}

.zr-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.zr-btn-secondary:hover { background: #333; }

.zr-btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #ddd;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.zr-btn-ghost-dark:hover { border-color: var(--red); color: var(--red); }

/* Cart Trust */
.zr-cart-trust {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zr-cart-trust-item {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* Empty Cart */
.zr-cart-empty {
  text-align: center;
  padding: 60px 20px 80px;
}

.zr-cart-empty-icon { margin-bottom: 24px; opacity: 0.5; }

.zr-cart-empty h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.zr-cart-empty p {
  color: #666;
  margin-bottom: 28px;
  font-size: 16px;
}

/* --- Checkout --- */
.zr-checkout-wrap {
  min-height: 70vh;
  padding: 0 32px 80px;
}

.zr-checkout-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.zr-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.zr-checkout-section {
  margin-bottom: 32px;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #f0f0f0;
}

.zr-section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

/* Checkout form fields - force full width */
.zr-checkout-fields .woocommerce-billing-fields__field-wrapper,
.zr-checkout-fields .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.zr-checkout-fields .form-row-wide {
  grid-column: 1 / -1;
}

.zr-checkout-fields .form-row-first {
  grid-column: 1;
}

.zr-checkout-fields .form-row-last {
  grid-column: 2;
}

.zr-checkout-fields .form-row {
  margin-bottom: 0;
}

.zr-checkout-fields label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.zr-checkout-fields input[type="text"],
.zr-checkout-fields input[type="email"],
.zr-checkout-fields input[type="tel"],
.zr-checkout-fields input[type="number"],
.zr-checkout-fields input[type="password"],
.zr-checkout-fields select,
.zr-checkout-fields textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s;
}

.zr-checkout-fields input:focus,
.zr-checkout-fields select:focus,
.zr-checkout-fields textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,34,42,0.08);
}

/* Order Review Box */
.zr-order-review-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eee;
  position: sticky;
  top: 100px;
}

.zr-order-items {
  margin-bottom: 20px;
}

.zr-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.zr-order-item-img {
  width: 56px;
  min-width: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.zr-order-item-img img { width: 100%; height: auto; }

.zr-order-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.zr-order-item-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

.zr-order-item-qty {
  font-size: 12px;
  color: #999;
}

.zr-order-item-price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

/* Payment section in checkout */
.zr-payment-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.zr-payment-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* WC payment methods styling */
.wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wc_payment_method {
  padding: 12px 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.wc_payment_method:hover,
.wc_payment_method.active {
  border-color: var(--red);
}

.wc_payment_method label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.payment_box {
  padding: 12px 0 0;
  font-size: 13px;
  color: #666;
}

/* Place order button */
#place_order {
  background: var(--red) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  padding: 20px 32px !important;
  border-radius: 10px !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: all 0.3s !important;
  margin-top: 16px;
}

#place_order:hover {
  background: #a81c23 !important;
  transform: translateY(-1px);
}

/* --- Thank You Page --- */
.zr-thankyou-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.zr-order-success {
  text-align: center;
  padding: 20px 0 40px;
}

.zr-success-icon { margin-bottom: 20px; }

.zr-order-success h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 12px;
}

.zr-order-number {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

.zr-order-confirm-text {
  font-size: 15px;
  color: #888;
  max-width: 500px;
  margin: 0 auto;
}

.zr-order-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.zr-order-details-box,
.zr-customer-info-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eee;
}

.zr-order-details-box h2,
.zr-customer-info-box h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.zr-order-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.zr-detail-img { width: 48px; min-width: 48px; border-radius: 6px; overflow: hidden; }
.zr-detail-img img { width: 100%; }
.zr-detail-name { font-weight: 600; font-size: 14px; }
.zr-detail-qty { font-size: 12px; color: #999; }
.zr-detail-info { flex: 1; display: flex; flex-direction: column; }
.zr-detail-price { font-weight: 700; font-size: 15px; }

.zr-order-summary-rows { margin-top: 16px; }

.zr-info-section { margin-bottom: 20px; }
.zr-info-section h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #888;
}

.zr-info-section address {
  font-style: normal;
  line-height: 1.6;
  font-size: 15px;
}

.zr-next-steps { margin-top: 24px; }
.zr-next-steps h3 { margin-bottom: 12px; }

.zr-next-step-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.zr-thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.zr-order-failed {
  text-align: center;
  padding: 40px 0;
}

.zr-order-failed h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--red);
}

/* --- Cart/Checkout Responsive --- */
@media (max-width: 768px) {
  .zr-cart-layout,
  .zr-checkout-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .zr-cart-summary,
  .zr-order-review-box {
    position: static;
  }

  .zr-cart-item { gap: 12px; }
  .zr-cart-item-img { width: 80px; min-width: 80px; }
  .zr-cart-item-name { font-size: 14px; }
  .zr-cart-item-subtotal { font-size: 16px; }

  .zr-cart-actions { flex-direction: column; }

  .zr-checkout-progress { gap: 0; }
  .zr-progress-line { width: 40px; }
  .zr-step-label { font-size: 10px; }
  .zr-step-num { width: 32px; height: 32px; font-size: 12px; }

  .zr-checkout-section { padding: 20px; }
  .zr-order-review-box { padding: 20px; }
  .zr-cart-summary { padding: 20px; }

  .zr-cart-wrap,
  .zr-checkout-wrap {
    padding: 0 16px 60px;
  }

  /* Checkout form fields stack on mobile */
  .zr-checkout-fields .woocommerce-billing-fields__field-wrapper,
  .zr-checkout-fields .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .zr-checkout-fields .form-row-first,
  .zr-checkout-fields .form-row-last {
    grid-column: 1;
  }

  .zr-order-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zr-thankyou-actions { flex-direction: column; align-items: center; }
}


/* ==========================================================================
   Mini Cart Slide-in Panel
   ========================================================================== */
.zr-minicart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.zr-minicart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.zr-minicart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}

.zr-minicart.active {
  right: 0;
}

.zr-minicart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.zr-minicart-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.zr-minicart-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  padding: 4px;
  transition: color 0.2s;
}

.zr-minicart-close:hover { color: var(--red); }

.zr-minicart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.zr-minicart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
}

.zr-minicart-item-img {
  width: 64px;
  min-width: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.zr-minicart-item-img img {
  width: 100%;
  height: auto;
  display: block;
}

.zr-minicart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.zr-minicart-item-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.zr-minicart-item-meta {
  font-size: 13px;
  color: #888;
}

.zr-minicart-item-remove {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  padding: 4px;
  transition: color 0.2s;
}

.zr-minicart-item-remove:hover { color: var(--red); }

.zr-minicart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  text-align: center;
}

.zr-minicart-empty p {
  color: #999;
  font-size: 15px;
}

.zr-minicart-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zr-minicart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.zr-minicart-total span:first-child {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.zr-minicart-total-price {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.zr-minicart-btn-cart {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 14px;
  border: 2px solid #eee;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.zr-minicart-btn-cart:hover {
  border-color: var(--red);
  color: var(--red);
}

.zr-minicart-btn-checkout {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  padding: 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.zr-minicart-btn-checkout:hover {
  background: #a81c23;
}

/* Mobile line break helper */
.mobile-br { display: none; }
@media (max-width: 768px) {
  .mobile-br { display: block; }
}

/* Bank details on thank you page */
.zr-thankyou-wrap .woocommerce-bacs-bank-details {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  border: 1px solid #eee;
}

.zr-thankyou-wrap .wc-bacs-bank-details-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 12px;
}

.zr-thankyou-wrap .wc-bacs-bank-details-account-name {
  font-weight: 700;
  margin-bottom: 8px;
}

.zr-thankyou-wrap .woocommerce-bacs-bank-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zr-thankyou-wrap .woocommerce-bacs-bank-details li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-body);
  font-size: 14px;
}

/* Order details table on thank you */
.zr-thankyou-wrap .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.zr-thankyou-wrap .woocommerce-table--order-details th,
.zr-thankyou-wrap .woocommerce-table--order-details td {
  padding: 12px 8px;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
}

.zr-thankyou-wrap .woocommerce-table--order-details tfoot th {
  font-weight: 600;
}

/* Thankyou page mobile */
@media (max-width: 768px) {
  .zr-thankyou-wrap {
    padding: 0 16px 60px;
  }

  .zr-thankyou-wrap .woocommerce-bacs-bank-details {
    padding: 16px;
  }

  .zr-thankyou-wrap .woocommerce-table--order-details th,
  .zr-thankyou-wrap .woocommerce-table--order-details td {
    padding: 8px 4px;
    font-size: 13px;
  }

  .zr-order-success h1 {
    font-size: 24px;
  }

  /* Customer details grid on thankyou */
  .woocommerce-customer-details .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Ensure all WC pages full width on mobile */
@media (max-width: 768px) {
  .ast-woocommerce-container,
  .site-main,
  .ast-container {
    padding: 0 !important;
  }

  /* Single product mobile padding */
  .zr-sp-main {
    padding: 20px 16px !important;
  }

  .zr-sp-breadcrumb-wrap {
    padding: 80px 16px 16px !important;
  }

  /* Product page single image full width on mobile */
  .zr-sp-main-image {
    border-radius: 8px;
    padding: 12px;
  }
}

/* Clickable progress steps */
a.zr-progress-step {
  transition: opacity 0.2s;
}
a.zr-progress-step:hover {
  opacity: 0.7;
}
a.zr-progress-step:hover .zr-step-label {
  color: var(--red);
}

/* ==========================================================================
   General Page Template (Impressum, Datenschutz, etc.)
   ========================================================================== */
.zr-page-wrap {
  min-height: 70vh;
  padding: 0 32px 80px;
  background: #fff;
}

.zr-page-inner {
  max-width: 860px;
  margin: 0 auto;
}

.zr-page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 40px;
}

.zr-page-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
}

.zr-page-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.zr-page-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--dark);
}

.zr-page-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--dark);
}

.zr-page-content p {
  margin-bottom: 16px;
}

.zr-page-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zr-page-content a:hover {
  color: #a81c23;
}

.zr-page-content ul, .zr-page-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.zr-page-content li {
  margin-bottom: 8px;
}

.zr-page-content strong {
  font-weight: 700;
  color: var(--dark);
}

.zr-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.zr-page-content th,
.zr-page-content td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  font-size: 14px;
}

.zr-page-content th {
  font-weight: 600;
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .zr-page-wrap { padding: 0 16px 60px; }
  .zr-page-title { font-size: 28px; }
  .zr-page-content { font-size: 15px; }
  .zr-page-header { padding: 32px 0 24px; margin-bottom: 28px; }
}

/* ==========================================================================
   Nav Dropdown (Fahrräder)
   ========================================================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  margin-top: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding-left: 24px;
}

/* Mobile menu group */
.mobile-menu-group {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  padding: 12px 24px 8px;
}

.mobile-menu-sub {
  display: block;
  padding: 10px 24px 10px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu-sub:hover {
  color: var(--red);
}

/* ==========================================================================
   Mobile overflow prevention - prevents horizontal scroll/zoom
   ========================================================================== */
@media (max-width: 768px) {
  /* Global overflow prevention */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Single product page overflow fix */
  .zr-single-product,
  .zr-sp-main,
  .zr-sp-gallery,
  .zr-sp-info,
  .zr-sp-breadcrumb-wrap,
  .zr-sp-description {
    max-width: 100vw !important;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* WC images never exceed viewport */
  .zr-sp-main-image img,
  .zr-sp-img,
  .woocommerce-product-gallery img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Product description tables scroll */
  .zr-sp-description table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
  }

  /* Prevent any Astra container overflow */
  .ast-container,
  .site-content,
  #page {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* Mobile phone icon in nav */
.nav-phone-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-phone-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
  }

  .nav-phone-mobile:hover,
  .nav-phone-mobile:active {
    background: var(--red);
  }
}

/* ==========================================================================
   Availability Badge
   ========================================================================== */
.zr-sp-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.zr-sp-availability.instock {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
}

.zr-sp-availability.onbackorder {
  color: #d97706;
  background: rgba(217, 119, 6, 0.08);
}

.zr-sp-availability.outofstock {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
}

.zr-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  display: inline-block;
  animation: availPulse 2s ease infinite;
}

.zr-avail-dot.backorder { background: #d97706; }
.zr-avail-dot.outofstock { background: #dc2626; animation: none; }

@keyframes availPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==========================================================================
   WhatsApp Button
   ========================================================================== */
.zr-sp-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #25D366;
  padding: 10px 20px;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 12px;
  width: fit-content;
}

.zr-sp-whatsapp:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: #25D366;
  color: #25D366;
}

/* ==========================================================================
   Specs Table
   ========================================================================== */
.zr-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.zr-specs-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.zr-specs-table tr:last-child {
  border-bottom: none;
}

.zr-specs-table th {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-align: left;
  padding: 14px 16px 14px 0;
  width: 40%;
  vertical-align: top;
}

.zr-specs-table td {
  font-family: var(--font-body);
  font-size: 14px;
  color: #1a1a1a;
  padding: 14px 0;
}

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */
.zr-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .zr-sticky-cta {
    display: block;
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transition: bottom 0.3s ease;
    padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  }

  .zr-sticky-cta.visible {
    bottom: 0;
  }

  .zr-sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 100%;
  }

  .zr-sticky-price {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
  }

  .zr-sticky-amount {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
  }

  .zr-sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
    transition: background 0.2s;
  }

  .zr-sticky-btn:hover, .zr-sticky-btn:active {
    background: #a81c23;
    color: #fff;
  }
}

/* ==========================================================================
   Description section - always show
   ========================================================================== */
.zr-sp-desc-text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .zr-specs-table th,
  .zr-specs-table td {
    padding: 10px 8px 10px 0;
    font-size: 13px;
  }
  
  .zr-specs-table th {
    width: 45%;
  }

  .zr-sp-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Product Card - Leasing Rate & Stock Status
   ========================================================================== */
.zr-product-leasing {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.zr-product-stock {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.zr-product-stock.instock {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.zr-product-stock.backorder {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.zr-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==========================================================================
   Price display - keep on one line, prevent wrapping
   ========================================================================== */
.zr-sp-price del,
.zr-product-price del {
  font-size: 0.75em;
  opacity: 0.5;
}

.zr-sp-price .woocommerce-Price-amount,
.zr-product-price .woocommerce-Price-amount {
  white-space: nowrap;
}

/* Hide "Ursprünglicher Preis war:" / "Aktueller Preis ist:" screen-reader text that WC renders visible */
.zr-sp-price .screen-reader-text,
.zr-product-price .screen-reader-text,
.zr-sticky-cta .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Price block single line layout */
.zr-sp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.zr-product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* WhatsApp icon in mobile nav */
.nav-wa-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-wa-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    transition: background 0.2s;
  }

  .nav-wa-mobile:hover,
  .nav-wa-mobile:active {
    background: rgba(37, 211, 102, 0.3);
  }
}

/* Hero WhatsApp link */
.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-top: 16px;
  transition: color 0.2s;
}

.hero-whatsapp:hover {
  color: #25D366;
}
