/* NT Sport — Stylesheet
   Modernes, responsives Design für Sportartikel-Shop
   ----------------------------------------------------- */

:root {
  --color-primary: #ff6b1a;        /* Energisches Orange */
  --color-primary-dark: #e85a0e;
  --color-secondary: #1a1a2e;       /* Dunkles Marineblau */
  --color-accent: #ffd60a;          /* Gelb-Akzent */
  --color-text: #1a1a2e;
  --color-text-muted: #6c757d;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-border: #e1e4e8;
  --color-success: #28a745;
  --color-error: #dc3545;
  --color-kempa: #d4002a;           /* Kempa-Rot */
  --color-uhlsport: #003478;        /* Uhlsport-Blau */
  --color-baden: #ff8800;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
  --container-max: 1280px;
  --header-height: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ===== HEADER (2 Reihen: Logo+Aktionen / Nav) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-row-top {
  display: flex;
  align-items: center;
  min-height: 96px;
}
@media (min-width: 1024px) {
  .header-row-top { min-height: 120px; }
}

.header-row-nav {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
}

@media (min-width: 1024px) {
  .logo-img { height: 160px; }
  .site-header { height: 176px; }
}

.logo-footer {
  display: inline-block;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.logo-footer .logo-img {
  height: 110px;
  /* kein filter: Original-Farben werden gezeigt */
  opacity: 1;
  display: block;
}

.mobile-menu-header .logo-img {
  height: 72px;
}

.main-nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .main-nav a { font-size: 1.1rem; }
  .main-nav { gap: 1.4rem; }
}

.main-nav .nav-divider {
  color: var(--color-border);
  font-weight: 300;
}

.main-nav .nav-sale {
  color: var(--color-error);
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav a.active {
  color: var(--color-primary);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Search-Box im Header (zwischen Logo und Cart) */
.header-search {
  flex: 1;
  max-width: 640px;
  margin: 0 1.5rem;
  display: none;
  position: relative;
  background: white;
  border: 2px solid var(--color-border);
  border-radius: 100px;
  align-items: center;
  height: 48px;
  padding-right: 4px;
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--color-primary); }
@media (min-width: 768px) {
  .header-search { display: flex; }
}
.header-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 1rem 0 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  height: 100%;
  outline: none;
  color: var(--color-text);
}
.header-search input::placeholder { color: var(--color-text-muted); }
.header-search button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.header-search button:hover { background: var(--color-primary-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-toggle, .cart-toggle, .menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--color-text);
  transition: background var(--transition);
  position: relative;
}

.search-toggle:hover, .cart-toggle:hover, .menu-toggle:hover {
  background: var(--color-bg-alt);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 5px;
}

.cart-count[data-count="0"] {
  display: none;
}

.menu-toggle {
  display: flex;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--color-bg);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
  font-size: 1.5rem;
  color: var(--color-text);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-menu nav a {
  padding: 0.875rem 1.25rem;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-alt);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2d3561 100%);
  color: white;
  padding: 4rem 0 5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide.hero-slide-bg.active { z-index: 2; }
a.hero-slide:hover { color: white; }
.hero-slide::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
}

/* Layout: Text links, Produktbild-Collage rechts */
.hero-slide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-slide-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }
}

/* Produkt-Collage rechts im Slider */
.hero-collage {
  display: none;
  position: relative;
  height: 320px;
}
@media (min-width: 900px) {
  .hero-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.hero-collage-tile {
  background-color: rgba(255,255,255,0.92);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius);
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero-collage-tile:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 3;
}

/* Slayt mit Background-Image (Lifestyle-Foto) */
.hero-slide-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  text-decoration: none;
  color: white;
}
/* Dunkler Verlaufs-Overlay für Textlesbarkeit (links dunkler) */
.hero-slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(15,15,30,0.85) 0%,
    rgba(15,15,30,0.55) 40%,
    rgba(15,15,30,0.0) 70%);
  z-index: 1;
  border-radius: 0;
}

/* Heller Text mit Schatten für Bild-Slaytlar */
.hero-content-on-image h1,
.hero-content-on-image p {
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-content-on-image h1 span {
  color: var(--color-accent);
}

/* Bei sehr hellem Hintergrundbild (z.B. Kourtfly weiß) -> dunkler Text */
.hero-content-dark h1.text-dark { color: var(--color-secondary); text-shadow: none; }
.hero-content-dark p.text-dark-muted { color: rgba(26,26,46,0.85); text-shadow: none; }
.hero-tag-dark {
  background: rgba(26,26,46,0.92) !important;
  color: white !important;
  border-color: var(--color-secondary) !important;
}
/* Bei dunklem Text auch Overlay heller machen */
.hero-slide-schuhe::before {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.0) 70%) !important;
}

/* Slayt-spezifische Hintergründe */
.hero-slide-sale {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 50%, #2d3561 100%);
}
.hero-slide-sale::before {
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.4;
}
.hero-slide-verein {
  background: linear-gradient(135deg, #15803d 0%, #1e3a8a 60%, #2d3561 100%);
}
.hero-slide-verein::before {
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.35;
}

.hero-tag-sale {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--color-error) !important;
  border-color: white !important;
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
  line-height: 1;
}
.hero-nav:hover { background: rgba(255, 255, 255, 0.32); }
.hero-nav-prev { left: 1rem; }
.hero-nav-next { right: 1rem; }
@media (max-width: 767px) {
  .hero-nav { display: none; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: white;
  transform: scale(1.25);
}

/* Legacy: einfaches .hero (Vereinsangebot etc.) */
.hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2d3561 100%);
  color: white;
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--color-primary);
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: white;
  color: var(--color-secondary);
  border-color: white;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

/* ===== SECTION ===== */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

/* ===== SALE COLLAGE BANNER ===== */
.sale-collage-section {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 100%);
}

.sale-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #f97316 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: white;
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.25);
}

.sale-collage:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(220, 38, 38, 0.35);
  color: white;
}

@media (min-width: 768px) {
  .sale-collage {
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    padding: 2.5rem;
    align-items: center;
  }
}

.sale-collage-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.sale-collage-text:hover { color: inherit; }

.sale-collage-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: fit-content;
}

.sale-collage-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.sale-collage-text h2 .hl {
  color: var(--color-accent);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sale-collage-text p {
  opacity: 0.9;
  font-size: 1rem;
  margin: 0;
}

.sale-collage-cta {
  margin-top: 0.5rem;
  background: white;
  color: var(--color-error);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  width: fit-content;
  transition: background var(--transition);
}

.sale-collage:hover .sale-collage-cta {
  background: var(--color-accent);
}

.sale-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
  aspect-ratio: 3 / 2;
}

.sale-collage-tile {
  background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.sale-collage-tile:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 2;
}

.sale-collage-discount {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--color-error);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
}

/* ===== USP / FEATURE BAR ===== */
.usp-bar {
  background: var(--color-bg-alt);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.usp-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.usp-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.usp-text span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== BRAND SHOWCASE ===== */
.brand-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .brand-showcase { grid-template-columns: repeat(3, 1fr); }
}

.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: white;
  text-decoration: none;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition);
}

.brand-card:hover {
  transform: translateY(-4px);
  color: white;
}

.brand-card.kempa { background: linear-gradient(135deg, var(--color-kempa) 0%, #8b001c 100%); }
.brand-card.uhlsport { background: linear-gradient(135deg, var(--color-uhlsport) 0%, #001a3d 100%); }
.brand-card.baden { background: linear-gradient(135deg, var(--color-baden) 0%, #b35e00 100%); }

.brand-card h3 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-card p {
  margin-top: 0.25rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.brand-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.18);
  transform: translateY(-3px);
}

.product-image {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: filter 0.3s ease;
}

.product-card:hover .product-image img {
  filter: brightness(1.04) contrast(1.02);
}

.product-image-placeholder {
  color: var(--color-text-muted);
  font-size: 3rem;
  opacity: 0.3;
}

.product-badges {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-secondary);
  color: white;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.badge.kempa { background: var(--color-kempa); }
.badge.uhlsport { background: var(--color-uhlsport); }
.badge.baden { background: var(--color-baden); }
.badge.new { background: var(--color-success); }
/* Sale-Ribbon: Schräger Streifen oben rechts */
.badge.sale {
  top: 12px;
  left: auto;
  right: -32px;
  background: var(--color-error);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 36px;
  letter-spacing: 0.04em;
  transform: rotate(35deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  animation: ribbon-pop 0.4s ease;
}
@keyframes ribbon-pop {
  0% { transform: rotate(35deg) scale(0.6); opacity: 0; }
  100% { transform: rotate(35deg) scale(1); opacity: 1; }
}

.product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
  /* kein uppercase: damit "Fußball" nicht zu "FUSSBALL" wird */
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-meta {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-meta span::after {
  content: "·";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.product-meta span:last-child::after {
  content: "";
}

.product-price {
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
}

.price-from {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-right: 0.25rem;
}

.product-price-sale {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.product-price-sale .price-old {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-price-sale .price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-error);
}

.product-card.has-sale {
  border-color: rgba(220,53,69,0.3);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: contents;
}

/* ===== FILTER SIDEBAR ===== */
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 280px 1fr;
  }
}

.filter-sidebar {
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  align-self: start;
  max-height: calc(100vh - var(--header-height) - 2rem);
  overflow-y: auto;
}

@media (max-width: 1023px) {
  .filter-sidebar {
    position: fixed;
    inset: 0;
    z-index: 999;
    border-radius: 0;
    background: var(--color-bg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    max-height: 100vh;
    padding-top: 1rem;
  }
  .filter-sidebar.open {
    transform: translateX(0);
  }
}

.filter-group {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  color: var(--color-text);
  user-select: none;
}

.filter-option input {
  cursor: pointer;
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
}

.filter-option .count {
  margin-left: auto;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.filter-search-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 1rem;
}

.filter-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.filter-toolbar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-toggle-mobile {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .filter-toggle-mobile { display: none; }
}

.results-count {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.sort-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: white;
  cursor: pointer;
  margin-left: auto;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  align-self: start;
}

.product-main-image {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: zoom-in;
}

/* Beim Hover: Container wird zur Zoom-Ansicht */
.product-main-image.zooming {
  background-color: white;
}

/* Lens nicht mehr verwendet, aber leerer Stil bleibt für Fallback */
.zoom-lens { display: none !important; }

@media (max-width: 1023px) {
  /* Auf Touch-Geräten kein Hover-Zoom (nur Lightbox) */
  .product-main-image { background-image: none !important; }
  .product-main-image img { opacity: 1 !important; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 2rem;
}
.lightbox.show {
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: white;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.product-thumbnail {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  padding: 0;
}

.product-thumbnail.active,
.product-thumbnail:hover {
  border-color: var(--color-primary);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.product-info-detail h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.product-info-detail .product-brand {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.product-price-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 1rem 0;
}

.price-vat-info {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 0.5rem;
}

.product-price-sale-detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.price-old-detail {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-current-detail {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-error);
}

.sale-badge-detail {
  background: var(--color-error);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
}

.product-price-sale-detail .price-vat-info {
  flex-basis: 100%;
  margin-left: 0;
}

.variant-selector {
  margin: 1.5rem 0;
}

.variant-selector h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variant-chip {
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: white;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.variant-chip:hover {
  border-color: var(--color-primary);
}

.variant-chip.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.variant-chip.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.color-chip {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  position: relative;
}

.color-chip.active {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.add-to-cart-section {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0;
  align-items: stretch;
}

.qty-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-input button {
  width: 44px;
  height: 100%;
  font-size: 1.25rem;
  background: var(--color-bg-alt);
  font-weight: 700;
  color: var(--color-text);
}

.qty-input button:hover {
  background: var(--color-border);
}

.qty-input input {
  width: 60px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}

.qty-input input:focus {
  outline: none;
}

.stock-info {
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  font-size: 0.92rem;
  border-left: 4px solid var(--color-text-muted);
}
.stock-info:empty { display: none; }
.stock-info .stock-ok      { color: var(--color-success); display: flex; flex-direction: column; gap: 2px; }
.stock-info .stock-partial { color: #b45309; display: flex; flex-direction: column; gap: 2px; }
.stock-info .stock-unknown { color: var(--color-text-muted); }
.stock-info .stock-detail  { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 400; }
.stock-info strong         { color: inherit; }

.product-features {
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.product-features h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.product-features ul {
  list-style: none;
}

.product-features li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--color-text);
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.product-meta-info {
  background: var(--color-bg-alt);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.product-meta-info dt {
  font-weight: 700;
  color: var(--color-text);
  display: inline-block;
  min-width: 140px;
}

.product-meta-info dd {
  display: inline;
  color: var(--color-text-muted);
}

.product-meta-info div {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

.product-meta-info div:last-child {
  border-bottom: none;
}

/* ===== CART ===== */
.cart-page {
  padding: 3rem 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cart-layout { grid-template-columns: 1fr 360px; }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

@media (min-width: 640px) {
  .cart-item {
    grid-template-columns: 100px 1fr auto auto;
    align-items: center;
  }
}

.cart-item-image {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.cart-item-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cart-item-info .cart-item-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.cart-item-info .cart-item-price {
  font-weight: 700;
  color: var(--color-text);
}

.cart-item-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cart-summary {
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.cart-summary h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.cart-summary-row.total {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.cart-empty h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cart-empty p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
  .form-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

/* ===== PAYMENT METHODS (Checkout) ===== */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: white;
}
.payment-option:hover { border-color: var(--color-primary); }
.payment-option.active,
.payment-option:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(255,107,26,0.05);
}
.payment-option-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.payment-option-disabled:hover { border-color: var(--color-border); }
.payment-option input[type="radio"] {
  flex: 0 0 auto;
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}
.payment-icon {
  font-size: 1.6rem;
  width: 96px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  flex: 0 0 auto;
  padding: 4px 6px;
  box-sizing: border-box;
  overflow: hidden;
}
.payment-icon svg { display: block; max-height: 100%; max-width: 100%; }
.payment-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.payment-details strong { font-size: 1rem; color: var(--color-text); }
.payment-details span { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.4; }

/* Account-Toggle (Header) */
.account-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--color-text);
  transition: background 0.2s;
}
.account-toggle:hover { background: var(--color-bg-alt); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span.separator {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--color-secondary);
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page ul, .legal-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  padding: 0.25rem 0;
}

.legal-page strong {
  color: var(--color-text);
}

.legal-page hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
}

.legal-info-box {
  background: var(--color-bg-alt);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
  margin: 1.5rem 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-methods {
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
  opacity: 0.7;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.hidden { display: none !important; }

/* ===== LOADING STATES ===== */
.loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-secondary);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success { background: var(--color-success); }
.toast.error { background: var(--color-error); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-text-muted);
}

.empty-state svg {
  margin: 0 auto 1rem;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

/* ===== PRINT ===== */
@media print {
  .site-header, .site-footer, .breadcrumb, .add-to-cart-section, .cart-summary { display: none; }
  body { font-size: 11pt; }
}
