/* ============================================================
   HotRod Traders – Foto & Video Onlineshop
   Stylesheet
   ============================================================ */

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

:root {
  --red:       #e2001a;
  --red-dark:  #b5001a;
  --dark:      #1a1a2e;
  --mid:       #2d2d44;
  --gray:      #f5f5f5;
  --gray2:     #e8e8e8;
  --text:      #333;
  --muted:     #666;
  --white:     #fff;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.18);
  --trans:     .22s ease;
  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--gray2); border-radius: 3px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 12.5px;
  overflow: hidden;
  position: relative;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 38px;
}
.topbar-track {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.topbar-track span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
}
.topbar-track span::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  overflow: visible;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: 68px;
  overflow: visible;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.logo-img-footer {
  height: 64px;
  max-width: 240px;
  filter: brightness(0) invert(1);
}
.header .logo {
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
}
.logo-text span {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Search */
.search-wrap,
.mob-search-inner {
  position: relative;
  max-width: 520px;
  width: 100%;
  justify-self: center;
  overflow: visible;
  z-index: 1100;
}
.mob-search-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.search-wrap input {
  width: 100%;
  padding: 10px 48px 10px 16px;
  border: 2px solid var(--gray2);
  border-radius: 24px;
  font-size: 14px;
  outline: none;
  transition: border-color var(--trans);
  background: var(--gray);
}
.search-wrap input:focus { border-color: var(--red); background: var(--white); }
.search-wrap button {
  position: absolute;
  right: 5px; top: 50%;
  transform: translateY(-50%);
  background: var(--red);
  color: var(--white);
  border: none;
  width: 34px; height: 34px;
  border-radius: 20px;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.search-wrap button:hover { background: var(--red-dark); }

/* Search autocomplete */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}
.search-suggestions:not([hidden]) { display: block; }
.search-suggestions-empty {
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}
.search-suggestion {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 68px;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid var(--gray2);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background var(--trans);
}
.search-suggestion:last-of-type { border-bottom: none; }
.search-suggestion:hover,
.search-suggestion.active {
  background: var(--gray);
}
.search-suggestion-thumb {
  width: 58px;
  height: 48px;
  border-radius: 6px;
  background: var(--gray);
  border: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.search-suggestion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  display: block;
}
.search-suggestion-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.search-suggestion-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--muted);
  line-height: 1.2;
}
.search-suggestion-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-suggestion-name mark {
  background: rgba(226, 0, 26, .12);
  color: var(--red);
  font-weight: 700;
  padding: 0 1px;
  border-radius: 2px;
}
.search-suggestion-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  text-align: right;
  line-height: 1.2;
}
.search-suggestion-go {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  transition: color var(--trans), transform var(--trans);
}
.search-suggestion:hover .search-suggestion-go,
.search-suggestion.active .search-suggestion-go {
  color: var(--red);
  transform: translateX(2px);
}
.search-suggestions-footer {
  padding: 9px 14px;
  border-top: 1px solid var(--gray2);
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  background: var(--gray);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hdr-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
  position: relative;
}
.hdr-btn:hover { background: var(--gray); color: var(--red); }
.hdr-btn .icon { font-size: 20px; }
.cart-count {
  position: absolute;
  top: 2px; right: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   MAIN NAV
   ============================================================ */
.main-nav {
  background: var(--dark);
  position: relative;
  z-index: 800;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 15px;
  color: rgba(255,255,255,.88);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--trans), background var(--trans);
  border-bottom: 3px solid transparent;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-bottom-color: var(--red);
}
.nav-link .arrow { font-size: 10px; opacity: .7; transition: transform var(--trans); }
.nav-item:hover > .nav-link .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 680px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 999;
  border-top: 3px solid var(--red);
}
.dropdown.dropdown-wide { min-width: 900px; }
.nav-item:hover > .dropdown { display: flex; gap: 24px; }

.dd-col { flex: 1; min-width: 150px; }
.dd-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray2);
}
.dd-col ul li a {
  display: block;
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--text);
  transition: color var(--trans), padding var(--trans);
}
.dd-col ul li a:hover { color: var(--red); padding-left: 5px; }

.dd-featured {
  flex: 0 0 220px;
  background: var(--gray);
  border-radius: var(--radius);
  padding: 16px;
}
.dd-featured h4 { color: var(--dark); border-color: var(--gray2); }
.dd-prod-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray2);
}
.dd-prod-mini:last-child { border: none; }
.dd-prod-mini img {
  width: 50px; height: 40px;
  object-fit: contain;
  background: var(--white);
  border-radius: 4px;
  padding: 2px;
}
.dd-prod-mini span { font-size: 12.5px; color: var(--text); line-height: 1.3; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-bar {
  background: linear-gradient(135deg, var(--red) 0%, #ff4444 100%);
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
}
.promo-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
}
.hero-slides { display: flex; height: 100%; transition: transform .6s ease; }
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 540px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 12px 26px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(226,0,26,.35); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  padding: 12px 26px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-1px); }

/* Hero nav dots */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.32); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--gray);
  border-bottom: 1px solid var(--gray2);
}
.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--gray2);
}
.trust-item:last-child { border: none; }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--dark); }
.trust-text span { font-size: 12px; color: var(--muted); }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-title span { color: var(--red); }
.section-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--red);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: gap var(--trans);
}
.see-all:hover { gap: 8px; }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  padding: 18px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  text-align: center;
}
.cat-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-icon { font-size: 34px; }
.cat-name { font-size: 12.5px; font-weight: 600; color: var(--dark); line-height: 1.2; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.products-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

.prod-card {
  background: var(--white);
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
  position: relative;
  cursor: pointer;
}
.prod-card:hover { box-shadow: var(--shadow-lg); border-color: #ccc; transform: translateY(-3px); }

.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.badge-red   { background: var(--red);   color: var(--white); }
.badge-dark  { background: var(--dark);  color: var(--white); }
.badge-green { background: #00a854;      color: var(--white); }
.badge-gray  { background: #888;         color: var(--white); }

.prod-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--gray2);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--trans), background var(--trans);
  z-index: 2;
  opacity: 0;
}
.prod-card:hover .prod-wishlist { opacity: 1; }
.prod-wishlist:hover { color: var(--red); background: var(--white); }

.prod-img-wrap {
  position: relative;
  padding: 20px;
  background: var(--gray);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }

.prod-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.prod-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
}
.prod-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}
.prod-status {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.green { background: #00a854; }
.status-dot.orange { background: #f5a623; }
.status-dot.red    { background: var(--red); }

.prod-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.price-now {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}
.price-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-tax { font-size: 11px; color: var(--muted); margin-top: 2px; }

.prod-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.offer-tag {
  font-size: 11px;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffd966;
  border-radius: 4px;
  padding: 2px 7px;
}

.prod-footer {
  padding: 0 14px 14px;
  display: flex;
  gap: 8px;
}
.btn-cart {
  flex: 1;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--trans), transform var(--trans);
}
.btn-cart:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-cart.added { background: #00a854; }

/* ============================================================
   BRAND LOGOS
   ============================================================ */
.brands-bg { background: var(--gray); border-top: 1px solid var(--gray2); border-bottom: 1px solid var(--gray2); }
.brands-row {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.brands-row::-webkit-scrollbar { display: none; }
.brand-logo {
  flex: 0 0 auto;
  padding: 18px 28px;
  border-right: 1px solid var(--gray2);
  opacity: .55;
  filter: grayscale(1);
  transition: opacity var(--trans), filter var(--trans);
  display: flex;
  align-items: center;
  cursor: pointer;
}
.brand-logo:hover { opacity: 1; filter: grayscale(0); }
.brand-logo:last-child { border: none; }
.brand-logo span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.3px;
  text-transform: uppercase;
  color: var(--dark);
}

/* ============================================================
   AKTIONEN / PROMOTIONS
   ============================================================ */
.aktionen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aktion-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.aktion-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.aktion-card:hover .aktion-card-bg { transform: scale(1.06); }
.aktion-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, transparent 60%);
}
.aktion-body {
  position: relative;
  z-index: 2;
  padding: 16px;
  color: var(--white);
}
.aktion-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--red);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 5px;
}
.aktion-name { font-size: 14px; font-weight: 700; line-height: 1.2; }
.aktion-discount { font-size: 20px; font-weight: 900; color: #ffd700; }

/* ============================================================
   INFO CARDS (Filialen, Kurse, Über uns)
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.info-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.info-card:hover .info-card-bg { transform: scale(1.05); }
.info-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 65%, transparent 100%);
}
.info-body {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--white);
}
.info-body h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.info-body p { font-size: 13px; opacity: .88; margin-bottom: 14px; line-height: 1.45; }
.btn-sm-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background var(--trans);
}
.btn-sm-white:hover { background: rgba(255,255,255,.32); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--gray2);
  cursor: pointer;
  transition: box-shadow var(--trans), transform var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-img {
  height: 170px;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 16px; }
.blog-tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--red);
  margin-bottom: 7px;
}
.blog-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-read {
  font-size: 12.5px;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   LOCATIONS STRIP
   ============================================================ */
.locations-bg { background: var(--dark); padding: 28px 20px; }
.locations-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.locations-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.locations-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.loc-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
}
.loc-chip:hover { background: rgba(255,255,255,.2); color: var(--white); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-bg {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  padding: 60px 20px;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.newsletter-inner h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.newsletter-inner p { font-size: 15px; opacity: .82; margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: 24px 0 0 24px;
  font-size: 14px;
  outline: none;
}
.newsletter-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px 24px;
  border-radius: 0 24px 24px 0;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--trans);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--red-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111; color: rgba(255,255,255,.75); }
.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand {}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.footer-contact p { font-size: 13px; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.75); transition: color var(--trans); }
.footer-contact a:hover { color: var(--white); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  text-decoration: none;
}
.social-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color var(--trans), padding var(--trans);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li .footer-link-btn { font-size: 13px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,.45); transition: color var(--trans); }
.footer-bottom-links a:hover { color: var(--white); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 28px 40px;
  margin-top: 8px;
}
.footer-legal h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.footer-legal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: start;
}
.footer-legal-block p,
.footer-legal-meta {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-top: 8px;
}
.footer-legal-block a { color: rgba(255,255,255,.85); }
.footer-legal-block a:hover { color: var(--white); }
.footer-legal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}
a.btn-legal,
a.footer-bottom-link {
  text-decoration: none;
  display: inline-block;
}
.btn-legal,
.footer-link-btn,
.footer-bottom-link {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: background var(--trans), border-color var(--trans);
}
.btn-legal:hover,
.footer-link-btn:hover,
.footer-bottom-link:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.35);
}
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,.65);
  font-weight: 400;
  text-align: left;
}
.footer-link-btn:hover { color: var(--white); background: none; }
.footer-bottom-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  font-weight: 400;
}
.footer-bottom-link:hover { color: var(--white); background: none; }
.inline-legal-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.inline-legal-link:hover { opacity: .85; }

.modal-product { max-width: 760px; }
.modal-legal { max-width: 680px; }
.product-modal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.product-modal-img-wrap {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-modal-img-wrap img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}
.product-modal-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-modal-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin: 6px 0 10px;
  line-height: 1.3;
}
.product-modal-status { margin-bottom: 10px; font-size: 13px; }
.product-modal-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-modal-tax {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.product-modal-offers { margin-bottom: 14px; }
.product-modal-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
}
.btn-cart-full {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.legal-text h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin: 20px 0 8px;
}
.legal-text h3:first-child { margin-top: 0; }
.legal-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
}
.legal-text a { color: var(--red); }
.legal-text a:hover { text-decoration: underline; }

/* ============================================================
   INFO PAGE
   ============================================================ */
.info-page {
  background: var(--gray);
  min-height: 60vh;
  padding: 30px 20px 60px;
}
.info-page-inner {
  max-width: 860px;
  margin: 0 auto;
}
.info-hero {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.info-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.info-breadcrumb a { color: var(--red); }
.info-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--dark);
}
.info-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.info-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.info-toc a {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  transition: border-color .2s, color .2s;
}
.info-toc a:hover {
  border-color: var(--red);
  color: var(--red);
}
.info-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  scroll-margin-top: 90px;
}
.info-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.info-list {
  margin: 0 0 14px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}
.info-list li { margin-bottom: 6px; }
.info-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.info-contact-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.info-contact-card strong { display: block; margin-bottom: 6px; }
.info-cta { display: inline-block; margin-top: 8px; text-decoration: none; }
.info-back {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
.info-back a { color: var(--red); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(20, 20, 36, 0.97);
  color: var(--white);
  z-index: 9999;
  padding: 22px 30px;
  box-shadow: 0 -4px 30px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
  border-top: 3px solid var(--red);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-icon { font-size: 32px; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.5; }
.cookie-text a { color: var(--red); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans);
}
.btn-cookie-accept:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-cookie-select {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.3);
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans);
}
.btn-cookie-select:hover { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 13px;
  cursor: pointer;
  transition: color var(--trans);
}
.btn-cookie-decline:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
#orderOverlay { z-index: 10001; }
.modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { transform: translateY(24px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--gray2);
}
.modal-header h2 { font-size: 20px; font-weight: 800; color: var(--dark); }
.modal-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background var(--trans), color var(--trans);
}
.modal-close:hover { background: var(--red); color: var(--white); }
.modal-body { padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--trans);
  color: var(--text);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group .hint { font-size: 11.5px; color: var(--muted); }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  gap: 12px;
}
.form-success .success-icon { font-size: 52px; }
.form-success h3 { font-size: 20px; font-weight: 800; color: var(--dark); }
.form-success p { font-size: 14px; color: var(--muted); }

/* Floating contact button */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  background: var(--red);
  color: var(--white);
  border: none;
  width: 58px; height: 58px;
  border-radius: 50%;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(226,0,26,.5);
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  animation: pulse 3s infinite;
}
.float-contact:hover { background: var(--red-dark); transform: scale(1.1); box-shadow: 0 6px 28px rgba(226,0,26,.6); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(226,0,26,.5); }
  50% { box-shadow: 0 4px 30px rgba(226,0,26,.8); }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 8800;
  display: none;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px;
  height: 100%;
  background: var(--white);
  z-index: 8900;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { right: 0; }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--gray2);
}
.cart-head h3 { font-size: 18px; font-weight: 800; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
}
.cart-empty .empty-icon { font-size: 52px; }
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray2);
}
.cart-item img {
  width: 64px; height: 56px;
  object-fit: contain;
  background: var(--gray);
  border-radius: var(--radius);
  padding: 4px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; line-height: 1.3; }
.cart-item-price { font-size: 14px; font-weight: 800; color: var(--red); margin-top: 4px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--gray2);
  background: var(--gray);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.qty-btn:hover { background: var(--gray2); }
.qty-val { font-size: 13px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 2px;
  transition: color var(--trans);
  align-self: flex-start;
}
.cart-remove:hover { color: var(--red); }
.cart-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--gray2);
  background: var(--gray);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cart-total span { font-size: 15px; color: var(--muted); }
.cart-total strong { font-size: 22px; font-weight: 900; color: var(--dark); }
.btn-checkout {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-checkout:hover { background: var(--mid); }

/* ============================================================
   COOKIE SETTINGS MODAL
   ============================================================ */
.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-settings-overlay.open { display: flex; }
.cookie-settings-modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.csm-header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.csm-header h2 { font-size: 18px; font-weight: 800; }
.csm-body { padding: 20px 24px; }
.cookie-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray2);
}
.cookie-cat:last-child { border: none; }
.cookie-cat-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cookie-cat-text p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
/* Toggle switch */
.toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray2);
  border-radius: 24px;
  transition: background .2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle input:checked + .toggle-slider { background: var(--red); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: .6; cursor: default; }
.csm-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray2);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .aktionen-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .main-nav { display: none; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 calc(50% - 1px); border-right: none; border-bottom: 1px solid var(--gray2); }
  .info-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
  .hero { height: 380px; }
  .products-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .header-inner { grid-template-columns: auto auto; height: auto; padding: 12px 16px; }
  .search-wrap { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .aktionen-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 24px; }
  .hero { height: 320px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: 24px; }
  .newsletter-form button { border-radius: 24px; }
  .products-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 100%; right: -100%; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MISC UTILS
   ============================================================ */
.divider { height: 1px; background: var(--gray2); margin: 0; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.no-select { user-select: none; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--dark);
  color: var(--white);
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 7000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); background: var(--mid); }

/* Notification toast */
.toast {
  position: fixed;
  top: 90px;
  right: 20px;
  background: #1e7e34;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  z-index: 9995;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.toast.show { transform: translateX(0); }

/* Stars */
.stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }

/* Product description */
.prod-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Order modal product preview */
.order-prod-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--gray);
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1.5px solid var(--gray2);
}
.order-prod-preview img {
  width: 72px; height: 60px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
  flex-shrink: 0;
}
.order-prod-preview-info {}
.order-prod-preview-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.order-prod-preview-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
}
