/*
 Theme Name: snkrsuniverse Child
 Template: generatepress
 Version: 1.0
*/

/* ===========================================================
   🔹 BASIS: TYPOGRAFIE & GLOBALS
   =========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #111;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: 17px;
  background-color: #fff;
}

h1, h2, h3, h4, h5 {
  color: #000;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.4em;
}

a {
  text-decoration: none;
  color: #000;
  transition: color 0.25s ease;
}

a:hover {
  color: #ff0000;
}

html {
  scroll-behavior: smooth;
}

/* ===========================================================
   🔹 ANKÜNDIGUNGSLEISTE
   =========================================================== */
.announcement-bar {
  background: #111;
  color: #fff;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-sizing: border-box;
}

.announcement-wrapper {
  position: relative;
  width: 100%;
  height: 22px;
  line-height: 22px;
}

.announcement {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 6px);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.announcement.active {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 768px) {
  .announcement-bar { height: 44px; }
  .announcement-wrapper { height: 20px; line-height: 20px; }
}

/* ===========================================================
   🔹 HEADER – MOBILE FIRST STRUKTUR
   =========================================================== */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 10000;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Sektionen --- */
.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- Icons rechts --- */
.search-toggle,
.header-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  font-size: 20px;
  transition: opacity 0.3s ease;
}
.search-toggle:hover,
.header-icon:hover {
  opacity: 0.7;
}

/* --- Logo --- */
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}
.header-logo img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* ===========================================================
   🔹 NAVIGATION – DESKTOP
   =========================================================== */
.main-nav {
  display: none;
}

@media (min-width: 769px) {
  .menu-toggle { display: none !important; } /* Hamburger ausblenden */

  .main-nav {
    display: flex !important;
    justify-content: center;
    background: transparent;
    margin-top: 12px;
  }

  .main-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
  }

  .main-menu li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
  }

  .main-menu li a:hover { opacity: 0.6; }

  .header-left { position: absolute; left: 40px; }
  .header-right { position: absolute; right: 40px; }

  .header-logo img {
    width: 100px;
    top: 4px;
  }
}

/* ===========================================================
   🔹 MOBILE HEADER (bis 768px)
   =========================================================== */
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .header-inner { padding: 10px 16px; }
  .header-logo img { width: 64px; }

  .menu-toggle {
    display: inline-block !important;
    font-size: 28px !important;
    color: #111 !important;
    z-index: 9999 !important;
  }
}

/* ===========================================================
   🔹 SCROLL EFFEKT
   =========================================================== */
body.scrolled .main-header {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

body.scrolled .header-logo img {
  width: 64px;
  opacity: 0.95;
  transition: all 0.3s ease;
}

/* ===========================================================
   🔹 MOBILE MENU OVERLAY (Slide-in)
   =========================================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  display: none;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 99999;
  transition: opacity .3s ease;
}

.mobile-menu-overlay.open {
  display: flex;
  animation: fadeIn .3s forwards;
}

.mobile-menu-panel {
  background: #fff;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  transition: transform .35s ease;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-close {
  background: none;
  border: none;
  font-size: 32px;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  color: #111;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  color: #111;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav a:hover { color: #ff0000; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* ===========================================================
   🔹 HEADER FINE-TUNING (Desktop Alignment Fix)
   =========================================================== */

@media (min-width: 769px) {
  /* Logo exakt zentrieren */
  .header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .header-logo img {
    width: 96px;
    height: auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  /* Header kompakter & besser ausgerichtet */
  .header-inner {
    height: 100px; /* feste Höhe für perfekte Vertikalmitte */
    padding: 0 60px;
  }

  /* Navigation mittig zur Logoachse */
  .main-nav {
    margin-top: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 64px;
  }

  .main-menu li a {
    font-weight: 500;
    letter-spacing: 0.015em;
    padding: 4px 0;
  }

  /* Icons rechts vertikal mittig */
  .header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 40px;
  }

  /* Linke Icons (Lupe etc.) ebenfalls mittig */
  .header-left {
    display: flex;
    align-items: center;
    gap: 18px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 40px;
  }

  /* Leichter Hover-Glow für Icons */
  .header-icon i:hover,
  .search-toggle i:hover {
    color: #ff0000;
    transition: color .3s ease;
  }
}

/* ===========================================================
   🔹 HEADER VISUAL BALANCE FIX (Feinabstimmung)
   =========================================================== */

@media (min-width: 769px) {
  /* Logo leicht höher und harmonischer Schatten */
  .header-logo {
    top: 45%;
    transform: translate(-50%, -55%);
  }

  .header-logo img {
    width: 96px;
    height: auto;
    box-shadow: 0 1.5px 4px rgba(0,0,0,0.08);
  }

  /* Mehr Luft zwischen Logo und Menü */
  .main-nav {
    margin-top: 10px;
  }

  /* Menü leicht kräftiger für Balance */
  .main-menu li a {
    font-weight: 500;
    font-size: 0.97rem;
    letter-spacing: 0.02em;
  }

  /* Icons optisch zentriert */
  .header-right,
  .header-left {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ===========================================================
   🔹 FIX: Entfernt grauen Kasten / Button-Hintergrund
   =========================================================== */

/* Entfernt alle Browser-Standard-Styles für Buttons */
.menu-toggle,
.search-toggle,
.header-icon {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Sauberer Hover-Effekt */
.menu-toggle:hover i,
.search-toggle:hover i,
.header-icon:hover i {
  opacity: 0.7;
  color: #000;
  transition: all 0.25s ease;
}

/* Entfernt grauen Kasten bei Klick oder Fokus */
.menu-toggle:focus,
.search-toggle:focus,
.header-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* ===========================================================
   🔹 HEADER – ÄSTHETISCHE FEINJUSTIERUNG
   =========================================================== */

/* Abstand zwischen Menü und Logo */
@media (min-width: 769px) {
  .main-nav {
    margin-top: 14px !important;
  }

  /* Logo leicht höher für optische Balance */
  .header-logo {
    top: 42%;
    transform: translate(-50%, -55%);
  }

  /* Menü leicht kräftiger und dunkler */
  .main-menu li a {
    color: #111;
    font-weight: 500;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
  }

  .main-menu li a:hover {
    color: #000;
    opacity: 0.75;
  }
}

/* ===========================================================
   🔹 SMOOTH SHRINK EFFECT (optional)
   =========================================================== */

body.scrolled .main-header {
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

body.scrolled .header-logo img {
  width: 72px;
  opacity: 0.95;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

/* ===========================================================
   🔹 SEARCH OVERLAY – SNKRS Universe (Final)
   =========================================================== */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity 0.35s ease;
}

.search-overlay.show {
  display: flex;
  opacity: 1;
  animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

/* Innerer Container */
.search-overlay-inner {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-align: center;
  width: 90%;
  max-width: 520px;
  animation: slideUp 0.35s ease forwards;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Suchfeld */
.search-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.search-field {
  flex: 1;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 1.05rem;
  padding: 12px 14px;
  outline: none;
  border-radius: 8px 0 0 8px;
  color: #111;
}

.search-submit {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.search-submit:hover {
  background: #ff0000;
}

/* Close-Button (X) */
.search-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  transition: color 0.25s ease;
}

.search-close:hover {
  color: #ff0000;
}

/* Fokus und Hover-Fix */
.search-toggle:focus,
.search-toggle:active,
.search-submit:focus,
.search-submit:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Mobilanpassung */
@media (max-width: 600px) {
  .search-overlay-inner {
    width: 92%;
    padding: 30px 20px;
  }
  .search-field {
    font-size: 1rem;
  }
  .search-close {
    top: 6px;
    right: 8px;
    font-size: 24px;
  }
}

.site-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 28px 16px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  width: 100%;
}

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

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #ff0000;
}

/* ===========================================================
   🔹 SNKRSUNIVERSE – FINALE NAVIGATION (DESKTOP + MOBILE)
   =========================================================== */

/* --- DESKTOP (Logo, Menü & Icons auf einer Linie) --- */
@media (min-width: 769px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    padding: 0 60px;
    position: relative;
  }

  .header-logo {
    position: static;
    transform: none;
  }

  .header-logo img {
    width: 84px;
    height: auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1.5px 4px rgba(0,0,0,0.1);
    transition: transform .3s ease;
  }

  .header-logo img:hover {
    transform: scale(1.05);
  }

  .main-nav {
    display: flex !important;
    justify-content: center;
    flex: 1;
    margin: 0 40px;
  }

  .main-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-menu li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #111;
    text-decoration: none;
    transition: opacity .25s ease;
  }

  .main-menu li a:hover {
    opacity: 0.6;
  }

  .menu-toggle {
    display: none !important;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 18px;
  }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .main-nav { display: none !important; }

  .menu-toggle {
    display: inline-block !important;
    font-size: 28px;
    color: #111;
    background: none;
    border: none;
    z-index: 10001;
  }

  /* Vollbild-Overlay */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999999;
    opacity: 0;
    transition: opacity .35s ease;
  }

  .mobile-menu-overlay.open {
    display: flex;
    opacity: 1;
    animation: fadeInOverlay .35s ease forwards;
  }

  @keyframes fadeInOverlay {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-nav ul li {
    margin: 16px 0;
  }

  .mobile-nav ul li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .3s ease;
  }

  .mobile-nav ul li a:hover {
    color: #ff0000;
  }

  .mobile-close {
    position: absolute;
    top: 20px;
    right: 26px;
    font-size: 34px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity .25s ease;
  }

  .mobile-close:hover {
    opacity: 0.6;
  }
}

/* ===========================================================
   🔹 SNKRSUNIVERSE – MOBILE MENU ANIMATION (Luxus-Stil)
   =========================================================== */

.mobile-menu-overlay.open .mobile-nav ul li {
  opacity: 0;
  transform: translateY(15px);
  animation: menuItemFadeIn 0.45s ease forwards;
}

.mobile-menu-overlay.open .mobile-nav ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay.open .mobile-nav ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-overlay.open .mobile-nav ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-overlay.open .mobile-nav ul li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-overlay.open .mobile-nav ul li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu-overlay.open .mobile-nav ul li:nth-child(6) { animation-delay: 0.6s; }

@keyframes menuItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Leichtes Hover-Highlight */
.mobile-nav ul li a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-nav ul li a:hover {
  color: #ff0000;
  transform: translateY(-2px);
}

/* Optional: leichte Glow-Optik beim Öffnen */
.mobile-menu-overlay.open {
  animation: fadeInOverlay .3s ease forwards, glowIn 0.8s ease-in-out forwards;
}

@keyframes glowIn {
  0% { box-shadow: inset 0 0 0 rgba(255,255,255,0); }
  100% { box-shadow: inset 0 0 200px rgba(255,255,255,0.05); }
}
/* ===========================================================
   🔹 FIX: LOGO EXAKT ZENTRIERT AUF DESKTOP & LANDSCAPE
   =========================================================== */
@media (min-width: 769px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center; /* zentriert Hauptinhalt */
    position: relative;
  }

  .header-logo {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    order: 2;
    margin: 0 auto;
    flex: 0 0 auto;
    text-align: center;
  }

  .header-logo img {
    width: 92px;
    height: auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .header-left,
  .header-right {
    position: static;
    top: auto;
    transform: none;
    flex: 1;
    display: flex;
    align-items: center;
  }

  .header-left {
    justify-content: flex-start;
    order: 1;
  }

  .header-right {
    justify-content: flex-end;
    order: 3;
  }
}

/* ===========================================================
   🔹 SNKRS UNIVERSE – EINHEITLICHER HEADER & ICON-STIL
   =========================================================== */

/* ------------------------------
   🔸 Farbvariablen (Customizer-ready)
   ------------------------------ */
:root {
  --icon-default-color: #fff;     /* Standardfarbe, im Customizer überschreibbar */
  --icon-hover-color:   #ff0000;  /* Hover-/Active-Farbe im SNKRS-Stil */
}

/* ------------------------------
   🔸 Einheitlicher SVG-Basisstil
   ------------------------------ */
.menu-toggle,
.search-toggle,
.header-icon {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  color: var(--icon-default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

/* Hover-Effekte (alle Icons gleich) */
.menu-toggle:hover,
.search-toggle:hover,
.header-icon:hover {
  color: var(--icon-hover-color);
  transform: scale(1.08);
  opacity: 1;
}

/* Menü oder Suche aktiv */
body.menu-open .menu-toggle,
body.search-open .search-toggle {
  color: var(--icon-hover-color);
}

/* ------------------------------
   🔸 SVG-Darstellung
   ------------------------------ */
.menu-toggle svg,
.search-toggle svg,
.header-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.95;
}

/* ------------------------------
   🔸 Hamburger-Icon (sanft)
   ------------------------------ */
.hamburger-icon line {
  stroke: currentColor;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
}

/* ------------------------------
   🔸 Such-Icon
   ------------------------------ */
.search-icon circle,
.search-icon line {
  stroke: currentColor;
  transition: stroke 0.25s ease, transform 0.25s ease;
}

/* ------------------------------
   🔸 Hover & Active
   ------------------------------ */
.menu-toggle:hover svg,
.search-toggle:hover svg,
.header-icon:hover svg {
  transform: scale(1.08);
  stroke: var(--icon-hover-color);
}

/* ------------------------------
   🔸 Mobile-Alignment Fix
   ------------------------------ */
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    position: relative;
  }

  .header-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-logo {
    position: relative;
    margin: 0 auto;
    z-index: 5;
  }

  .header-logo img {
    width: 72px;
    height: auto;
  }
}

/* ------------------------------
   🔸 Desktop-Balance
   ------------------------------ */
@media (min-width: 769px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 92px;
  }

  .header-left {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .header-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .header-logo {
    position: relative;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
  }

  .header-logo img {
    width: 90px;
    height: auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .header-logo img:hover {
    transform: scale(1.05);
  }
}

/* ------------------------------
   🔸 Smooth Shrink bei Scroll
   ------------------------------ */
body.scrolled .main-header {
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

body.scrolled .header-logo img {
  width: 72px;
  opacity: 0.95;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

/* ===========================================================
   🔹 SNKRS UNIVERSE – MOBILE HEADER ALIGNMENT FIX (v2.1)
   =========================================================== */
@media (max-width: 768px) {
  /* Linke Icon-Gruppe perfekt linksbündig */
  .header-left {
    position: absolute;
    left: 12px;          /* etwas weiter links */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 22px;           /* mehr Abstand zwischen Hamburger & Lupe */
  }

  /* Logo zentriert halten */
  .header-logo {
    position: relative;
    margin: 0 auto;
    z-index: 5;
  }

  /* Rechte Seite (User + Bag) fixiert */
  .header-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  /* SVG-Größe und Farbe beibehalten */
  .menu-toggle svg,
  .search-toggle svg,
  .header-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
    stroke: currentColor;
  }
}

/* ===========================================================
   🔹 SNKRS UNIVERSE – MOBILE HEADER HEIGHT & SPACING RESTORE
   =========================================================== */
@media (max-width: 768px) {

  /* Mehr vertikaler Raum im Header */
  .main-header {
    height: 88px; /* vorher 60–70px – jetzt großzügig wie im Original */
    display: flex;
    align-items: center;
    justify-content: center;
    background: inherit;
  }

  /* Innenabstände des Containers */
  .header-inner {
    width: 100%;
    max-width: 1400px;
    padding: 18px 22px; /* mehr Luft oben/unten */
    box-sizing: border-box;
    position: relative;
  }

  /* Logo bleibt zentriert und groß genug */
  .header-logo img {
    width: 78px;
    height: auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }

  /* Linke Icons (Hamburger & Lupe) mit ausreichend Abstand */
  .header-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
  }

  /* Rechte Icons (Account + Bag) wieder schön außen */
  .header-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
  }

  /* Einheitliche Icongröße */
  .menu-toggle svg,
  .search-toggle svg,
  .header-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
  }
}


/* ===========================================================
   🔹 PATCH – Hamburger-Icon (Mobile Ansicht wieder aktiv)
   =========================================================== */
@media (max-width: 768px) {

  /* Hamburger wieder sichtbar und korrekt positioniert */
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    color: #fff !important; /* gleiche Farbe wie Lupe */
    cursor: pointer;
    padding: 4px;
    z-index: 10001;
  }

  /* Hamburger-Linien harmonisch & dezent */
  .menu-toggle svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.25s ease, stroke 0.25s ease;
  }

  .menu-toggle:hover svg {
    transform: scale(1.08);
    stroke: #ff0000;
  }

  /* Abstand & Anordnung links neben Lupe */
  .header-left {
    display: flex;
    align-items: center;
    gap: 22px; /* Abstand zwischen Hamburger und Lupe */
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}



:root {
  --logo-pos-desktop: 42%;
  --logo-pos-mobile: 52%;
}

@media (min-width: 769px) {
  .header-logo {
    top: var(--logo-pos-desktop);
    transform: translate(-50%, -55%);
  }
}

@media (max-width: 768px) {
  .header-logo {
    top: var(--logo-pos-mobile);
    transform: translate(-50%, -50%);
  }
}
/* ===========================================================
   🔹 FIX: Customizer Logo-Position – Vorrang erzwingen
   =========================================================== */
@media (min-width: 769px) {
  .header-logo {
    position: absolute !important;  /* zwingt relative->absolute */
    left: 50% !important;
    top: var(--logo-pos-desktop) !important;
    transform: translate(-50%, -55%) !important;
  }
}

@media (max-width: 768px) {
  .header-logo {
    position: absolute !important;
    left: 50% !important;
    top: var(--logo-pos-mobile) !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* ===========================================================
   🔹 HERO SECTION – SNKRS Universe (Shopify-Style, fixiert & bereinigt)
   =========================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
  transition: background-size 0.4s ease, background-position 0.4s ease;
}

/* Overlay gesteuert durch Customizer */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.45));
  z-index: 1;
  transition: background 0.3s ease;
}

/* Inhalt */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1rem;
}

/* Text */
.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

/* Weißraum fix */
.site-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===========================================================
   🔹 MOBILE HERO FIX – Shopify Style (Dynamic Focus + Live Preview)
   =========================================================== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 95vh;                          /* nutzt fast volle Höhe */
    background-size: cover !important;
    background-repeat: no-repeat;
    /* 🎯 Dynamisch per Customizer-Regler */
    background-position: center var(--hero-focus-mobile, 10%) !important;
    transition: background-position 0.3s ease;
  }

  .hero-content {
    transform: translateY(-12%) !important;
  }

  .hero-content h1 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    line-height: 1.3;
  }

  .hero-btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }
}

/* Extra-Korrektur für kleine Geräte (z. B. iPhone SE, 13 mini) */
@media (max-width: 480px) {
  .hero-section {
    min-height: 92vh !important;
    /* Hier bleibt der Customizer-Regler aktiv */
    background-position: center var(--hero-focus-mobile, 6%) !important;
  }

  .hero-content {
    transform: translateY(-10%) !important;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }
}




/* ===========================================================
   🔹 Hero-Fokus-Steuerung über Customizer-Regler (aktiv)
   =========================================================== */
@media (max-width: 768px) {
  .hero-section {
    background-position: center var(--hero-focus-mobile, 10%) !important;
    background-size: cover !important;
    background-repeat: no-repeat;
    transition: background-position 0.3s ease;
  }
}

@media (min-width: 769px) {
  .hero-section {
    background-position: center var(--hero-focus-desktop, 40%) !important;
  }
}


/* ===========================================================
   🔹 HERO SECTION – Shopify-Style Fokus & Zoom
   =========================================================== */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center var(--hero-focus-desktop, 40%);
  overflow: hidden;
  transition: background-position 0.4s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.45));
  z-index: 1;
  transition: background 0.3s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

/* ===========================================================
   🔹 MOBILE HERO (Shopify-Stil mit Fokus)
   =========================================================== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile Bild-Variante als echtes Layer */
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-mobile-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center var(--hero-focus-mobile, 30%);
    transform: scale(1.05);
    z-index: 0;
    transition: transform 0.6s ease, background-position 0.4s ease;
  }

  /* Overlay bleibt */
  .hero-overlay { background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.45)); }

  /* Inhalt leicht nach oben */
  .hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(-10%);
  }

  .hero-content h1 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    line-height: 1.3;
  }

  .hero-btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }

  /* Optional: leichter Zoom beim Scrollen (Shopify-Look) */
  body.scrolled .hero-section::before {
    transform: scale(1.1);
  }
}

/* Extra für Mini-Screens */
@media (max-width: 480px) {
  .hero-section::before {
    background-position: center var(--hero-focus-mobile, 25%);
  }
}

/* ===========================================================
   🔹 HERO INFO BAR – SNKRS Universe (Animated Ticker)
   =========================================================== */
.hero-info-bar {
  position: relative;
  width: 100%;
  background: #111;
  color: #fff;
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 9;
}

.hero-info-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.hero-info-text {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: tickerMove 22s linear infinite;
}

.hero-info-text span {
  padding-left: 100%;
  display: inline-block;
}

/* 🔸 Animation: sanfter, endloser Lauftext */
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* 🔸 Mobile: kompakter, langsamere Bewegung */
@media (max-width: 768px) {
  .hero-info-bar {
    height: 42px;
  }
  .hero-info-text {
    font-size: 0.85rem;
    animation: tickerMove 28s linear infinite;
  }
}

.hero-info-bar {
  display: block;
  position: relative;
  clear: both;
}

.hero-section {
  display: flex;
  flex-direction: column;
}

.hero-section + .hero-info-bar {
  display: block;
  width: 100%;
  margin-top: 0;
}

/* ===========================================================
   🔹 LAYOUT FIX – Hero Info Bar unter Hero-Bild
   =========================================================== */
.hero-section {
  display: block;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.hero-info-bar {
  display: block;
  width: 100%;
  clear: both;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
}

.site-content {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.hero-info-bar {
  margin-top: -20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

/* === INFO BAR – Lauftext === */
.hero-info-bar {
  background: #111;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.hero-info-inner {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 25s linear infinite;
}

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


/* ===========================================================
   SNKRS UNIVERSE – SNEAKER SLIDER (DEMO DESIGN)
   =========================================================== */

/* — Grundstruktur — */
.sneaker-slider-zone {
  position: relative;
  background: #fff;
  padding: 40px 0 60px;
  overflow: hidden;
  z-index: 1;
}

.sneaker-slider-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 30px;
}

/* — Swiper Container — */
.sneaker-slider {
  width: 100%;
  position: relative;
}

.mySwiper {
  padding: 0 50px;
}

.swiper-slide {
  width: 240px !important;
  flex: 0 0 auto;
  transition: transform .25s ease;
}
.swiper-slide:hover {
  transform: translateY(-4px);
}

/* — Bild-Wrapper — */
.image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  background: #f9f9f9;
}
.image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .35s ease;
}
.image-wrapper .hover-img { opacity: 0; }
.image-wrapper:hover .main-img { opacity: 0; }
.image-wrapper:hover .hover-img { opacity: 1; }

/* — Label oben links — */
.label-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.label {
  font-family: 'Courier New', monospace;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255,255,255,.85);
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  color: #111;
}
.label::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: .2;
}

/* — Produktinfos — */
.product-info {
  text-align: center;
  margin-top: 12px;
}
.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}
.product-price {
  font-size: 1rem;
  color: #444;
}
.price-sale {
  color: #e63946;
  font-weight: 600;
}
.price-compare {
  text-decoration: line-through;
  color: #777;
  margin-left: 6px;
}

/* — Pfeile — */
.fade-left,
.fade-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  cursor: pointer;
  transition: background .25s;
}
.fade-left:hover,
.fade-right:hover {
  background: rgba(255,255,255,1);
}
.fade-left  { left: 10px; }
.fade-right { right: 10px; }

.fade-arrow {
  width: 24px;
  height: 24px;
  stroke: #111;
}

/* — Responsiv — */
@media (max-width: 1024px) {
  .swiper-slide { width: 200px !important; }
}
@media (max-width: 640px) {
  .mySwiper { padding: 0 30px; }
  .fade-left, .fade-right { width: 40px; height: 40px; }
  .fade-arrow { width: 20px; height: 20px; }
}

/* — Animation Label — */
.label {
  animation: labelFlash 4s ease-in-out infinite;
}
@keyframes labelFlash {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.05); }
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 10000;
}
.quick-view-modal.show {
  opacity: 1;
  visibility: visible;
}
.quick-view-content {
  background: #fff;
  border-radius: 16px;
  max-width: 540px;
  width: 92%;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  position: relative;
}
.quick-view-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}
.quick-view-body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  border-radius: 10px;
}
.qv-more {
  display: inline-block;
  margin-top: 1em;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .3s;
}
.qv-more:hover {
  background: #444;
}
