/* =============================================
   REPSHARK – style.css
   Alle Styles für Shop, Modal, Admin
   ============================================= */

/* ===== RESET & VARIABLEN ===== */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --red: #E8312A;
  --red-d: #B52420;
  --red-glow: rgba(232, 49, 42, 0.15);
  --bg: #0D0D0D;
  --s1: #161616;
  --s2: #1E1E1E;
  --b1: #2A2A2A;
  --b2: #333;
  --t1: #F0F0F0;
  --t2: #999;
  --t3: #555;
  --wh: #fff;
  --green: #22C55E;
  --wa: #25D366;
  --r: 8px;
  --r-sm: 6px;
  --r-lg: 12px;
  --nav-h: 62px;
  --nav-bg: rgba(13,13,13,0.92);
  --card-shadow: 0 2px 12px rgba(0,0,0,0.4);
  --theme-transition: background .3s, color .3s, border-color .3s, box-shadow .3s;
}

/* ===== LIGHT MODE ===== */
body.light {
  --bg: #F5F5F5;
  --s1: #FFFFFF;
  --s2: #EFEFEF;
  --b1: #DDDDDD;
  --b2: #CCCCCC;
  --t1: #111111;
  --t2: #555555;
  --t3: #AAAAAA;
  --wh: #fff;
  --nav-bg: rgba(255,255,255,0.92);
  --card-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

html { background: var(--bg); scroll-behavior: smooth; transition: var(--theme-transition); }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  background: var(--bg);
  color: var(--t1);
  min-height: 100vh;
  overflow-x: hidden;
  transition: var(--theme-transition);
}

a { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
/* Extra padding-bottom damit der FAB-Button keine Inhalte verdeckt */
.page { max-width: 1100px; margin: 0 auto; padding: 0 14px 100px; }
@media (min-width: 600px) { .page { padding: 0 20px 80px; } }

/* ===== NAV ===== */
/* Volle Breite: zieht sich per negativer Margin aus dem .page-Container
   bis an beide Viewport-Ränder (full-bleed) */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  padding-top: max(8px, env(safe-area-inset-top));
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  border-bottom: 1px solid var(--b1);
  margin-bottom: 1.2rem;
  /* --vw100 = echte Viewportbreite ohne Scrollbar (setzt main.js) */
  margin-left: calc(50% - var(--vw100, 100vw) / 2);
  margin-right: calc(50% - var(--vw100, 100vw) / 2);
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  transition: var(--theme-transition);
  backdrop-filter: blur(12px);
  z-index: 40;
  height: auto;
  min-height: 62px;
}

@media (min-width: 600px) { nav { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); } }

.logo-wrap { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;      /* ← nie kleiner werden */
  filter: drop-shadow(0 0 10px rgba(232,49,42,0.7)) drop-shadow(0 0 20px rgba(232,49,42,0.4));
}
@media (min-width: 600px) { .logo-img { height: 50px; } }
.logo-fallback { font-size: 18px; font-weight: 800; color: var(--red); letter-spacing: 1px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.logo-rep {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-shadow: 0 0 12px rgba(232, 49, 42, 0.7), 0 0 30px rgba(232, 49, 42, 0.3);
  line-height: 1;
}
.logo-shark {
  font-size: 11px;
  font-weight: 300;
  color: var(--t2);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-left: 2px;
}

.nav-tabs { display: flex; gap: 4px; }
.tab-btn {
  padding: 8px 14px;
  border-radius: var(--r);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  color: var(--t2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s;
  min-height: 38px;
}
.tab-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.tab-btn:hover:not(.active) { background: var(--s2); color: var(--t1); }
.tab-btn span { display: none; }
@media (min-width: 480px) { .tab-btn span { display: inline; } }

/* ===== TRENDING ===== */
.trending-section { margin-bottom: 1.4rem; }
.section-hdr { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.section-hdr-title { font-size: 13px; font-weight: 700; color: var(--t1); text-transform: uppercase; letter-spacing: 0.5px; }
.fire-badge { background: linear-gradient(135deg, #FF6B00, var(--red)); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.trending-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 600px) { .trending-grid { grid-template-columns: repeat(6, 1fr); } }

/* ===== FILTERS ===== */
.filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0.9rem;
}

.filters-row-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (min-width: 600px) {
  .filters-row-1 { display: flex; gap: 6px; }
}

.filters-row-2 {
  display: flex;
}

.search-bar {
  flex: 1;
  width: 100%;
  font-size: 16px;
  padding: 10px 14px;
  border-radius: var(--r);
  border: 1px solid var(--b2);
  background: var(--s1);
  color: var(--t1);
}
@media (min-width: 500px) { .search-bar { font-size: 13px; } }
.search-bar::placeholder { color: var(--t3); }
.search-bar:focus { outline: none; border-color: var(--red); }

select {
  width: 100%;
  font-size: 16px;
  padding: 10px 10px;
  border-radius: var(--r);
  border: 1px solid var(--b2);
  background: var(--s1);
  color: var(--t1);
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: auto;
  appearance: auto;
}
@media (min-width: 500px) { select { font-size: 13px; padding: 8px 10px; } }
select:focus { outline: none; border-color: var(--red); }

/* ===== GRID ===== */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 480px) { .grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 13px; } }

/* ===== KARTE ===== */
.card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: column;
}
.card:active { transform: scale(0.97); border-color: var(--red); }
@media (hover: hover) { .card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232, 49, 42, 0.15); } }
.card.trending-card { border-color: rgba(232, 49, 42, 0.25); }

.card-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.card-img-ph { width: 100%; aspect-ratio: 3/4; background: var(--s2); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.card-img-ph i { font-size: 28px; color: var(--t3); }

.card-badges { position: absolute; top: 6px; left: 6px; display: flex; flex-direction: column; gap: 3px; }
.badge { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 20px; display: inline-flex; align-items: center; gap: 2px; }
.badge-hot { background: linear-gradient(135deg, #FF6B00, var(--red)); color: #fff; }
.badge-new { background: rgba(34, 197, 94, 0.15); color: var(--green); border: 1px solid rgba(34, 197, 94, 0.25); }

.sdot-wrap { position: absolute; top: 7px; right: 7px; }
.sdot { width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--bg); }
.sdot-g { background: var(--green); }
.sdot-r { background: var(--red); }

.photo-cnt { position: absolute; bottom: 6px; right: 6px; background: rgba(0,0,0,0.7); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 20px; display: flex; align-items: center; gap: 2px; }

.card-body { padding: 8px 10px 10px; flex: 1; display: flex; flex-direction: column; }
.card-brand { font-size: 9px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-name { font-size: 12px; font-weight: 500; color: var(--t1); margin-bottom: 3px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { font-size: 11px; color: var(--t2); margin-bottom: 5px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-price { font-size: 14px; font-weight: 700; color: var(--t1); }
.card-stats { display: flex; align-items: center; gap: 4px; }
.stat-chip { font-size: 10px; color: var(--t3); display: flex; align-items: center; gap: 2px; }
.sold-badge { font-size: 9px; padding: 2px 5px; border-radius: 4px; background: rgba(232,49,42,0.12); color: var(--red); border: 1px solid rgba(232,49,42,0.2); }
.count-lbl { font-size: 12px; color: var(--t3); margin-bottom: 0.7rem; }

/* ===== MODAL (Bottom Sheet auf Handy) ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(6px);
}
@media (min-width: 600px) { .modal-overlay { align-items: center; padding: 16px; } }

.modal {
  background: var(--s1);
  border: 1px solid var(--b2);
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
  animation: sheetUp 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 92dvh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) { .modal { border-radius: var(--r-lg); animation: mUp 0.22s ease; max-height: 90vh; } }

@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes mUp { from { transform: translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Drag-Balken oben */
.modal-handle { display: flex; justify-content: center; padding: 10px 0 2px; flex-shrink: 0; }
.modal-handle div { width: 36px; height: 4px; border-radius: 2px; background: var(--b2); }
@media (min-width: 600px) { .modal-handle { display: none; } }

.modal-inner { display: flex; flex-direction: column; overflow-y: auto; -webkit-overflow-scrolling: touch; flex: 1; }
@media (min-width: 600px) { .modal-inner { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; flex: unset; } }

/* ===== SWIPER ===== */
.swiper {
  position: relative;
  overflow: hidden;
  background: var(--s2);
  margin: 12px 14px 0;
  border-radius: 16px;
  border: 1px solid var(--b2);
  flex-shrink: 0;
}
.swiper-mob { aspect-ratio: 1/1; }
@media (min-width: 600px) { .swiper { margin: 0; border-radius: 0; border: none; }  .swiper-mob { aspect-ratio: 3/4; } }

.sw-track { display: flex; height: 100%; transition: transform 0.3s ease; }
.sw-slide { flex: 0 0 100%; height: 100%; }
.sw-slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.sw-slide .ph2 { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.sw-slide .ph2 i { font-size: 48px; color: var(--t3); }

.arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 1px solid var(--b2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 16px;
  color: #fff;
  transition: background 0.15s;
}
.arr:hover { background: var(--red); }
.arr-l { left: 8px; }
.arr-r { right: 8px; }
.arr.hidden { opacity: 0; pointer-events: none; }

.dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); transition: all 0.2s; cursor: pointer; }
.dot.active { background: var(--red); transform: scale(1.3); }
.img-cnt { position: absolute; top: 9px; right: 9px; font-size: 11px; background: rgba(0,0,0,0.7); color: #fff; padding: 2px 8px; border-radius: 20px; }

/* ===== MODAL INFO ===== */
.modal-info { padding: 14px 16px 32px; display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 600px) { .modal-info { padding: 18px 16px; overflow-y: auto; max-height: 100%; } }

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--b2);
  background: var(--s2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 15px;
  color: var(--t1);
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--red); color: #fff; }

.modal-brand { font-size: 11px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; }
.modal-name { font-size: 17px; font-weight: 700; color: var(--t1); line-height: 1.3; }
.modal-price { font-size: 24px; font-weight: 800; color: var(--t1); }

.divider { height: 1px; background: var(--b1); flex-shrink: 0; }
.detail-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.detail-row .lbl { color: var(--t2); }
.detail-row .val { font-weight: 600; color: var(--t1); }

.stats-row { display: flex; gap: 8px; }
.stat-box { flex: 1; background: var(--s2); border: 1px solid var(--b1); border-radius: var(--r); padding: 8px; text-align: center; }
.stat-box .num { font-size: 18px; font-weight: 700; color: var(--t1); }
.stat-box .lbl2 { font-size: 11px; color: var(--t2); margin-top: 2px; }

.status-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.pill-g { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.pill-r { background: rgba(232,49,42,0.12); color: var(--red); border: 1px solid rgba(232,49,42,0.2); }

/* Buttons – große Touch-Targets für Handy */
.btn-buy { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 15px; background: var(--red); color: #fff; border: none; border-radius: var(--r); font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.15s; min-height: 52px; }
.btn-buy:active, .btn-buy:hover { background: var(--red-d); }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 13px; background: rgba(37,211,102,0.08); color: var(--wa); border: 1px solid rgba(37,211,102,0.2); border-radius: var(--r); font-size: 14px; font-weight: 600; transition: all 0.15s; min-height: 48px; }
.btn-wa:active, .btn-wa:hover { background: rgba(37,211,102,0.2); }
.btn-unavail { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 14px; background: var(--s2); color: var(--t3); border: 1px solid var(--b1); border-radius: var(--r); font-size: 14px; font-weight: 600; cursor: not-allowed; min-height: 52px; }

/* ===== ZOOM ===== */
.zoom-ov { position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 200; display: flex; align-items: center; justify-content: center; }
.zoom-ov img { max-width: 100%; max-height: 100%; object-fit: contain; }
.zoom-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--b2); background: rgba(0,0,0,0.7); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; z-index: 201; }
.zoom-close:hover { background: var(--red); }

/* ===== ADMIN ===== */
.admin-wrap { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
@media (min-width: 700px) { .admin-wrap { grid-template-columns: 1fr 310px; } }

.sec-title { font-size: 14px; font-weight: 600; color: var(--t1); margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.prod-list { display: flex; flex-direction: column; gap: 7px; }

.prod-row { background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 10px 12px; display: flex; align-items: center; gap: 10px; transition: border-color 0.15s; }
.prod-row:hover { border-color: var(--b2); }
.prod-thumb { width: 40px; height: 52px; border-radius: var(--r-sm); background: var(--s2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 18px; color: var(--t3); }
.prod-thumb img { width: 40px; height: 52px; object-fit: cover; display: block; }
.prod-info { flex: 1; min-width: 0; }
.prod-name { font-weight: 600; font-size: 12px; color: var(--t1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-sub { font-size: 11px; color: var(--t2); margin-top: 2px; }
.prod-price { font-size: 13px; font-weight: 700; color: var(--t1); flex-shrink: 0; }

.row-btns { display: flex; gap: 6px; flex-shrink: 0; }
.icon-btn { width: 34px; height: 34px; border-radius: var(--r-sm); border: 1px solid var(--b2); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--t2); font-size: 15px; transition: all 0.15s; }
.icon-btn:active, .icon-btn:hover { background: var(--s2); color: var(--t1); }
.icon-btn.del:active, .icon-btn.del:hover { background: rgba(232,49,42,0.15); color: var(--red); border-color: rgba(232,49,42,0.3); }

/* ===== ADMIN PRODUKTLISTE – HANDY ===== */
@media (max-width: 600px) {
  /* Bild links, Infos+Preis daneben, Buttons brechen in 2. Zeile um */
  .prod-row { flex-wrap: wrap; padding: 10px; row-gap: 8px; }
  .prod-thumb { width: 46px; height: 60px; }
  .prod-thumb img { width: 46px; height: 60px; }
  .prod-info { flex: 1 1 0; }
  .prod-price { margin-left: auto; }
  /* Buttons: eigene volle Zeile, gleichmäßig + größere Touch-Targets */
  .row-btns { flex-basis: 100%; gap: 8px; }
  .row-btns .icon-btn { flex: 1; height: 40px; font-size: 17px; }
}

.dg { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-right: 4px; }
.dr { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-right: 4px; }

/* ===== FORMULAR ===== */
.form-card { background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 16px; }
@media (min-width: 700px) { .form-card { position: sticky; top: 80px; } }

.form-group { margin-bottom: 10px; }
label { display: block; font-size: 12px; color: var(--t2); margin-bottom: 4px; font-weight: 500; }

/* font-size 16px verhindert Auto-Zoom auf iPhone */
input[type=text],
input[type=number],
input[type=url],
input[type=password],
select.fs {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--b2);
  border-radius: var(--r);
  background: var(--s2);
  color: var(--t1);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.15s;
}
@media (min-width: 600px) {
  input[type=text], input[type=number], input[type=url], input[type=password], select.fs { font-size: 13px; padding: 8px 10px; }
}
input:focus, select.fs:focus { outline: none; border-color: var(--red); }

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

/* Kategorie-abhängiges Größenfeld */
.size-pants { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.size-none {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 12px; border: 1px dashed var(--b2); border-radius: var(--r);
  background: var(--s2); color: var(--t3); font-size: 13px;
}
.size-none i { color: var(--red); }

.upload-zone { border: 1px dashed var(--b2); border-radius: var(--r); padding: 18px 14px; text-align: center; cursor: pointer; background: var(--s2); position: relative; transition: border-color 0.15s; }
.upload-zone:hover, .upload-zone:active { border-color: var(--red); }
.upload-zone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.thumbs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.thumb-wrap { position: relative; width: 52px; height: 68px; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--b2); }
.thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-del { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; background: rgba(232,49,42,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; font-size: 11px; border: none; line-height: 1; }

.btn-primary { width: 100%; padding: 13px; background: var(--red); color: #fff; border: none; border-radius: var(--r); font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 6px; transition: background 0.15s; min-height: 50px; }
.btn-primary:active, .btn-primary:hover { background: var(--red-d); }
.btn-sec { width: 100%; padding: 11px; background: transparent; color: var(--t2); border: 1px solid var(--b2); border-radius: var(--r); font-size: 14px; cursor: pointer; margin-top: 6px; transition: background 0.15s; min-height: 46px; }
.btn-sec:active, .btn-sec:hover { background: var(--s2); }

/* ===== LOGIN ===== */
.login-wrap { max-width: 300px; margin: 4rem auto; background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 28px; text-align: center; }

/* ===== COMING SOON ===== */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 80, 200, 0.55) 0%,
    rgba(0, 40, 120, 0.75) 50%,
    rgba(0, 10, 60, 0.88) 100%
  );
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: inherit;
  transition: opacity 0.3s;
}
.coming-soon-label {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(100,180,255,0.9);
}
.coming-soon-sub {
  font-size: 10px;
  color: rgba(150, 210, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.coming-soon-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4FC3F7;
  box-shadow: 0 0 10px #4FC3F7, 0 0 20px #4FC3F7;
  animation: csPulse 1.5s ease-in-out infinite;
  margin-top: 4px;
}
@keyframes csPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
.badge-cs {
  background: linear-gradient(135deg, #0050C8, #003080);
  color: #fff;
  border: 1px solid rgba(100,180,255,0.4);
  text-shadow: 0 0 8px rgba(100,180,255,0.8);
  letter-spacing: 1px;
}
.cs-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(0,80,200,0.1), rgba(0,40,120,0.2));
  border: 1px solid rgba(100,180,255,0.3);
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 4px;
}
.cs-toggle:hover { border-color: rgba(100,180,255,0.6); background: linear-gradient(135deg, rgba(0,80,200,0.2), rgba(0,40,120,0.3)); }
.cs-toggle input { display: none; }
.cs-toggle-dot {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: var(--b2);
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cs-toggle-dot::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}
.cs-toggle.on .cs-toggle-dot { background: linear-gradient(135deg, #0050C8, #003080); box-shadow: 0 0 10px rgba(0,80,200,0.5); }
.cs-toggle.on .cs-toggle-dot::after { transform: translateX(18px); }
.cs-toggle-text { font-size: 13px; font-weight: 600; color: var(--t1); }
.cs-toggle-sub { font-size: 11px; color: var(--t2); margin-top: 1px; }
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--s1);
  color: var(--t1);
  border: 1px solid var(--b2);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
@media (min-width: 600px) { .toast { left: auto; right: 16px; bottom: 90px; transform: none; border-radius: var(--r); } }
.toast.show { opacity: 1; }

.empty-s { text-align: center; padding: 3rem; color: var(--t3); font-size: 13px; grid-column: 1 / -1; }
.loading-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 4rem; color: var(--t3); }
.root-wrap { position: relative; }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; display: inline-block; }

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: var(--s2);
  border: 1px solid var(--b1);
  color: var(--t2);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 17px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--b1);
  color: var(--red);
  transform: rotate(20deg);
}

/* ===== SPLASH / LADESCREEN ===== */
.splash-screen {
  position: fixed; inset: 0; z-index: 20000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Hintergrund-Glow */
.splash-bg-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(232,49,42,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 42%, rgba(232,49,42,0.07) 0%, transparent 60%);
  animation: glowPulse 2.4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: .7; } 50% { opacity: 1; } }

/* Aufsteigende Luftblasen (rot getönt, passend zum Theme) */
.splash-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.splash-bubble {
  position: absolute; bottom: -28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,130,125,.7), rgba(232,49,42,.22) 60%, transparent 72%);
  box-shadow: 0 0 8px rgba(232,49,42,.45);
  opacity: 0;
  animation-name: bubbleRise;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: .6; }
  100% { transform: translateY(-112vh) translateX(var(--drift,0)); opacity: 0; }
}

.splash-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  animation: splashFadeIn .5s ease;
}
@keyframes splashFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Logo + rotierende Ringe */
.splash-logo-ring {
  position: relative; width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.splash-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent; }
.splash-ring.r1 { border-top-color: var(--red); border-right-color: rgba(232,49,42,.3); animation: ringSpin 1.1s linear infinite; }
.splash-ring.r2 { inset: 12px; border-top-color: transparent; border-bottom-color: var(--red); border-left-color: rgba(232,49,42,.2); animation: ringSpin 1.7s linear infinite reverse; }
.splash-ring.r3 { inset: 24px; border-top-color: rgba(232,49,42,.5); border-right-color: transparent; animation: ringSpin 2.3s linear infinite; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.splash-logo {
  width: 78px; height: 78px; object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(232,49,42,.45));
  animation: logoBob 2.4s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes logoBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Wortmarke */
.splash-wordmark { font-size: 30px; font-weight: 900; letter-spacing: 4px; line-height: 1; margin-bottom: 22px; }
.splash-rep   { color: var(--t1); }
.splash-shark { color: var(--red); }

/* Ladebalken */
.splash-bar-wrap {
  width: 160px; height: 3px;
  background: var(--b1); border-radius: 999px; overflow: hidden;
}
.splash-bar {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--red-d), var(--red), #ff6b65);
  animation: barLoad 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(232,49,42,.6);
}
@keyframes barLoad {
  0%   { width: 0%;   margin-left: 0%; }
  50%  { width: 70%;  margin-left: 15%; }
  100% { width: 0%;   margin-left: 100%; }
}

/* Lade-Text */
.splash-loading {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--t2); font-weight: 700;
  animation: loadingPulse 1.6s ease-in-out infinite;
}
@keyframes loadingPulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* ===== WERBE-BANNER (rotiert) ===== */
.ad-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1400 / 550;   /* skaliert proportional auf jedem Gerät */
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.4rem;
  border: 1px solid var(--b1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  -webkit-user-select: none; user-select: none;
  container-type: inline-size;   /* erlaubt cqw-Schrift, die mitskaliert */
}
.ad-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);   /* reinzoomen, füllt die Ränder */
  display: block;
}
.ad-layer { position: absolute; inset: 0; }

/* Wechselnde Text- & Produkt-Ebenen */
.ad-text, .ad-product {
  position: absolute;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.ad-text.active, .ad-product.active { opacity: 1; }

/* Text: links, groß, oben */
.ad-text {
  top: 5%; left: 3%;
  width: 62%; height: 50%;
  object-fit: contain;
  object-position: left top;
}

/* Produkt: rechts, vertikal zentriert */
.ad-product {
  top: 50%; right: 2.5%;
  height: 90%; width: 40%;
  transform: translateY(-50%);
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));
}

/* Fester Werbe-Text unten links (nur Text, kein Feld) */
.ad-promo {
  position: absolute;
  left: 3%; bottom: 7%;
  max-width: 60%;
  display: flex; flex-direction: column; gap: 0.5cqw;
}
.ad-promo-line1 {
  font-size: 3.8cqw; font-weight: 900; line-height: 1.1;
  color: var(--red); letter-spacing: .5px;
  animation: adPromoGlow 2.4s ease-in-out infinite;
}
.ad-promo-line2 {
  font-size: 2.5cqw; font-weight: 600; line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.9), 0 0 4px rgba(0,0,0,.95);
}
@keyframes adPromoGlow {
  0%,100% { text-shadow: 0 2px 6px rgba(0,0,0,.8), 0 0 6px rgba(232,49,42,.5); }
  50%      { text-shadow: 0 2px 6px rgba(0,0,0,.8), 0 0 16px rgba(232,49,42,1), 0 0 28px rgba(232,49,42,.75); }
}

/* ===== HOLIDAY BANNER ===== */
.hb-banner {
  position: relative;
  border-radius: var(--r-lg);
  margin-bottom: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255,200,80,.3);
  box-shadow: 0 4px 20px rgba(255,180,0,.12);
}
.hb-img {
  width: 100%; display: block;
  object-fit: cover;
}

/* Text-Overlay oben links */
.hb-overlay {
  position: absolute;
  top: 14px; left: 14px;
}
.hb-overlay-date {
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 20px; font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  letter-spacing: .5px;
  white-space: nowrap;
  animation: hbDateGlow 2.5s ease-in-out infinite;
}
@keyframes hbDateGlow {
  0%,100% { box-shadow: 0 0 0px rgba(255,220,80,0); }
  50%      { box-shadow: 0 0 16px rgba(255,220,80,.55); }
}
@media (min-width: 600px) {
  .hb-overlay      { top: 20px; left: 20px; }
  .hb-overlay-date { font-size: 26px; padding: 10px 22px; }
}

/* ===== HOLIDAY ADMIN CARD ===== */
.holiday-admin-card {
  background: var(--s1); border: 1px solid var(--b1);
  border-radius: var(--r-lg); padding: 16px; margin-bottom: 16px;
  transition: border-color .3s;
}
.holiday-admin-card.hac-on {
  border-color: rgba(255,200,0,.45);
  box-shadow: 0 0 20px rgba(255,180,0,.1);
}
.hac-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.hac-icon { font-size: 28px; line-height: 1; }
.hac-title { font-size: 14px; font-weight: 700; color: var(--t1); }
.hac-sub   { font-size: 11px; color: var(--t2); margin-top: 2px; }
.hac-toggle {
  margin-left: auto;
  width: 48px; height: 26px; border-radius: 13px;
  background: var(--b2); position: relative; cursor: pointer;
  transition: background .25s; flex-shrink: 0;
}
.hac-toggle.on { background: #f5a623; box-shadow: 0 0 12px rgba(245,166,35,.5); }
.hac-dot {
  position: absolute; width: 20px; height: 20px;
  border-radius: 50%; background: #fff;
  top: 3px; left: 3px; transition: transform .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hac-toggle.on .hac-dot { transform: translateX(22px); }
.hac-body { display: flex; flex-direction: column; gap: 8px; }
.hac-body label { font-size: 12px; color: var(--t2); font-weight: 500; }
.hac-input {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--b2); border-radius: var(--r);
  background: var(--s2); color: var(--t1);
  font-size: 14px; font-family: inherit;
}
.hac-input:focus { outline: none; border-color: #f5a623; }
.hac-save {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px; border-radius: var(--r); border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; transition: opacity .2s;
  background: linear-gradient(135deg, #f5a623, #f5d16b);
  color: #1a1a1a;
}
.hac-save:hover { opacity: .88; }

/* Werbe-Banner: Bild-Upload-Slots im Admin */
.ad-slots { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.ad-slot {
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: var(--r); padding: 8px 10px;
}
.ad-slot-title { font-size: 11px; font-weight: 700; color: var(--t2); margin-bottom: 6px; }
.ad-slot-imgs { display: flex; gap: 8px; }
.ad-up {
  flex: 1; position: relative; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  border: 1px dashed var(--b2); border-radius: var(--r-sm);
  padding: 6px; transition: border-color .15s; margin: 0;
}
.ad-up:hover { border-color: var(--red); }
.ad-up input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.ad-up img {
  width: 100%; height: 46px; object-fit: contain;
  background: #6b6b6b; border-radius: 4px;   /* grau, damit weißer Text sichtbar ist */
}
.ad-up .spin { font-size: 20px; color: var(--red); height: 46px; display: flex; align-items: center; }
.ad-up span { font-size: 10px; color: var(--t3); font-weight: 600; }

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 24px; left: 18px;
  z-index: 9000;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--s1);
  border: 1px solid var(--b2);
  color: var(--red);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  pointer-events: none;
  transition: opacity .25s, transform .25s, background .2s, border-color .2s;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 2.5rem;
  padding: 24px 14px 8px;
  border-top: 1px solid var(--b1);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.footer-brand {
  font-size: 16px; font-weight: 900; letter-spacing: 2px; color: var(--t1);
}
.footer-brand span { color: var(--red); }
.footer-links { display: flex; align-items: center; gap: 10px; }
.footer-links button {
  background: none; border: none; cursor: pointer;
  color: var(--t2); font-size: 13px; font-weight: 500;
  padding: 4px 2px; transition: color .15s;
}
.footer-links button:hover { color: var(--red); }
.footer-sep { color: var(--t3); }
.footer-copy { font-size: 11px; color: var(--t3); }

/* ===== LEGAL OVERLAY (Impressum / Datenschutz) ===== */
.legal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn .25s ease;
  backdrop-filter: blur(4px);
}
.legal-box {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  max-width: 560px; width: 100%;
  max-height: 88dvh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: slideUp .3s ease;
}
.legal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--b1);
  flex-shrink: 0;
}
.legal-header h2 { font-size: 17px; font-weight: 700; color: var(--t1); }
.legal-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--b2); background: var(--s2); color: var(--t1);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: background .15s, color .15s;
}
.legal-close:hover { background: var(--red); color: #fff; }
.legal-content {
  padding: 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 13px; line-height: 1.65; color: var(--t2);
}
.legal-content h3 {
  font-size: 14px; font-weight: 700; color: var(--t1);
  margin: 16px 0 6px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 8px; }
.legal-content a { color: var(--red); text-decoration: underline; word-break: break-word; }
.legal-content strong { color: var(--t1); }
.legal-note {
  margin-top: 18px; padding: 10px 12px;
  background: var(--s2); border: 1px solid var(--b1); border-radius: var(--r);
  font-size: 12px; color: var(--t3);
  display: flex; gap: 8px; align-items: flex-start;
}
.legal-note i { color: var(--red); margin-top: 1px; flex-shrink: 0; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 18px;
  z-index: 9000;
  display: flex; align-items: center; gap: 8px;
  background: var(--wa);
  color: #fff;
  border: none; cursor: pointer;
  border-radius: 999px;
  padding: 0 18px 0 14px;
  height: 52px;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: fabPop .4s cubic-bezier(.34,1.56,.64,1);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-fab-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: .3px; white-space: nowrap;
}
@keyframes fabPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ===== WELCOME POPUP ===== */
.welcome-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .25s ease;
}
.welcome-box {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  max-width: 360px; width: 100%;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: slideUp .3s ease;
}
.welcome-icon {
  font-size: 36px; color: var(--wa); margin-bottom: 12px;
}
.welcome-title {
  font-size: 18px; font-weight: 700; color: var(--t1); margin-bottom: 14px;
}
.welcome-text {
  font-size: 13px; color: var(--t2); line-height: 1.6; margin-bottom: 20px;
}
.welcome-text strong { color: var(--t1); }
.welcome-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wa); color: #fff;
  padding: 12px 20px; border-radius: 30px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity .2s;
}
.welcome-wa-btn:hover { opacity: .88; }
.welcome-close {
  background: none; border: 1px solid var(--b2); color: var(--t3);
  padding: 9px 20px; border-radius: 30px;
  font-size: 13px; cursor: pointer; width: 100%;
  transition: border-color .2s, color .2s;
}
.welcome-close:hover { border-color: var(--t2); color: var(--t1); }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

/* =============================================
   MODERN FX – Typografie, Ambience, Animationen
   ============================================= */

/* Moderne Typografie */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ambiente: dezente rote Glows im Hintergrund */
body {
  background:
    radial-gradient(900px 600px at 92% -12%, rgba(232,49,42,.09), transparent 62%),
    radial-gradient(760px 540px at -18% 38%, rgba(232,49,42,.06), transparent 60%),
    radial-gradient(820px 620px at 112% 96%, rgba(232,49,42,.05), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

/* Nav: mehr Glas-Effekt */
nav {
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
}

/* ── STREETWEAR-TICKER (Laufband) ── */
.ticker-wrap {
  border: 1px solid var(--b1);
  border-radius: 999px;
  background: var(--s1);
  overflow: hidden;
  margin-bottom: 1rem;
  -webkit-user-select: none; user-select: none;
}
.ticker {
  display: flex;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}
.ticker-wrap:hover .ticker { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px 9px 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--t2); white-space: nowrap;
}
.ticker-sep { font-size: 13px; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ── KARTEN: Einblenden, Hover-Zoom, Glanz ── */
.card { position: relative; }
.card > div:first-child { overflow: hidden; }
.card-img { transition: transform .55s cubic-bezier(.2,.7,.2,1); }
@media (hover: hover) {
  .card:hover .card-img { transform: scale(1.07); }
}

/* Glanz-Streifen beim Hover */
.card::after {
  content: '';
  position: absolute; top: 0; left: -90%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.13), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}
@media (hover: hover) {
  .card:hover::after { animation: cardShine .9s ease; }
}
@keyframes cardShine {
  0%   { left: -90%; opacity: 1; }
  100% { left: 140%; opacity: 1; }
}

/* Gestaffeltes Einblenden */
.card-in {
  animation: cardIn .45s cubic-bezier(.2,.7,.3,1) both;
  animation-delay: var(--d, 0ms);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
}

/* Trending: statischer roter Glow */
.card.trending-card {
  border-color: rgba(232,49,42,.45);
  box-shadow: 0 0 16px rgba(232,49,42,.12);
}

/* Badges: Puls & Glow */
.fire-badge { animation: firePulse 2.2s ease-in-out infinite; }
@keyframes firePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.badge-hot { animation: hotGlow 2.2s ease-in-out infinite; }
@keyframes hotGlow {
  0%,100% { box-shadow: 0 0 0 rgba(255,107,0,0); }
  50%      { box-shadow: 0 0 10px rgba(255,107,0,.55); }
}

/* Sektions-Titel: Schimmer-Effekt */
.section-hdr-title {
  background: linear-gradient(90deg, var(--t1) 40%, var(--red) 50%, var(--t1) 60%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 5s linear infinite;
}
@keyframes titleShimmer {
  0%   { background-position: 130% 0; }
  100% { background-position: -130% 0; }
}

/* WhatsApp-Button: pulsierender Ring */
.wa-fab::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  animation: fabRing 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes fabRing {
  0%       { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  70%,100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
}

/* Fokus-Ringe */
.search-bar:focus, select:focus, select.fs:focus,
input[type=text]:focus, input[type=number]:focus,
input[type=url]:focus, input[type=password]:focus {
  box-shadow: 0 0 0 3px var(--red-glow);
}
.hac-input:focus { box-shadow: 0 0 0 3px rgba(245,166,35,.2); }

/* Buttons: Druck-Effekt */
.btn-buy:active, .btn-wa:active, .btn-primary:active,
.btn-sec:active, .hac-save:active, .welcome-wa-btn:active { transform: scale(.97); }

/* Footer-Links: Unterstrich gleitet ein */
.footer-links button { position: relative; }
.footer-links button::after {
  content: '';
  position: absolute; left: 10%; right: 100%; bottom: 0;
  height: 1px; background: var(--red);
  transition: right .25s ease;
}
.footer-links button:hover::after { right: 10%; }

/* Modal: stärkeres Glas */
.modal-overlay { backdrop-filter: blur(10px); }
.zoom-ov { animation: fadeIn .2s ease; }

/* Dezente Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 8px; border: 3px solid #0D0D0D; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Hintergrund-Scroll sperren, wenn ein Overlay offen ist */
body.no-scroll { overflow: hidden; }

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}