/* =====================================================================
   >>> EDIT HIER: FARBEN <<<
   Hauptfarbe der Seite (Rot) und die 4 Team-Farben stehen hier.
   Einfach den Hex-Code (#E31E2B usw.) ersetzen, um die Farbgebung
   der ganzen Seite zu ändern.
===================================================================== */
:root{
    --bg:#0A0A0D;
    --surface1:#141317;
    --surface2:#1C1B20;
    --line:#2B2A31;
    --line-soft:#201F25;
    --text:#FFFFFF;
    --text-soft:#9C9BA5;
    --text-faint:#65636C;
    --red:#E31E2B;
    --red-dim:#E31E2B22;
    --gold:#E8B23A;
    --team-color: var(--tc, #E31E2B);
    --team-color-soft: var(--tcs, #E31E2B26);
    --team-germany:#E31E2B; --team-germany-soft:#E31E2B26;
    --team-france:#1B3FBE; --team-france-soft:#1B3FBE26;
    --team-portugal:#12833F; --team-portugal-soft:#12833F26;
    --team-holland:#E8632B; --team-holland-soft:#E8632B26;
    --radius:16px;
    --maxw:1220px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth; overflow-x:hidden; width:100%;}
  body{
    position:relative; margin:0; color:var(--text);
    font-family:'Inter',system-ui,sans-serif; -webkit-font-smoothing:antialiased;
    overflow-x:hidden; width:100%;
    /* Sattes, dunkles Rasengrün - läuft unterhalb des Fotos einfach als
       Hintergrundfarbe weiter, bis ganz nach unten zum Seitenende */
    background-color:#0c2612;
  }
  /* Zweischichtiger Stadion-Hintergrund, läuft mit der Seite mit (kein
     fixed): oben das Stadionfoto mit Flutlicht, darunter blendet es nahtlos
     in dasselbe satte Rasengrün über, das dann bis zum Seitenende weiterläuft
     - man "steht" quasi die ganze Seite über auf dem Rasen. */
  body::before{
    content:""; position:fixed; top:0; left:0; right:0; height:100vh; z-index:-1; pointer-events:none;
    background-image:
      linear-gradient(180deg, rgba(10,10,13,.2) 0%, rgba(10,10,13,.5) 45%, rgba(12,38,18,.88) 78%, #0c2612 100%),
      url('/assets/img/bg/stadium.jpg');
    background-repeat:no-repeat, no-repeat;
    background-position:top center, top center;
    background-size:100% 100%, cover;
  }
  @media (max-width:900px){
    body::before{ height:70vh; }
  }
  h1,h2,h3,.display{
    font-family:'Barlow Condensed',sans-serif; font-weight:800; text-transform:uppercase;
    letter-spacing:.01em; line-height:.96; margin:0;
  }
  .mono{font-family:'IBM Plex Mono',monospace; letter-spacing:.02em;}
  a{color:inherit;}
  button{font-family:inherit;}
  img{display:block; max-width:100%;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
  :focus-visible{outline:2px solid var(--red); outline-offset:2px;}

  /* ---------- Header ---------- */
  header{ position:sticky; top:0; z-index:40; background:rgba(10,10,13,.6); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border-bottom:1px solid var(--line-soft); padding-top:env(safe-area-inset-top, 0);}
  .header-row{ position:relative; display:flex; align-items:center; justify-content:flex-start; gap:16px; height:76px;}
  .logo{ display:flex; align-items:center; gap:6px; font-family:'Barlow Condensed'; font-weight:900; font-size:24px; letter-spacing:.03em; color:#fff; text-decoration:none; transition:transform .2s ease; transform-origin:left center;}
  .logo-mark{ height:26px; width:auto; display:block; transition:transform .2s ease;}
  @media (hover:hover){ .logo:hover{ transform:scale(1.07); } }
  .header-tagline{ flex:1; text-align:center; font-family:'Barlow Condensed'; font-weight:900; font-size:29px; letter-spacing:.03em; text-transform:uppercase; color:var(--text-soft); white-space:nowrap; cursor:default;}
  @media (hover:hover){
    .header-tagline:hover{ animation:headerShake .4s ease; }
  }
  @keyframes headerShake{
    0%, 100%{ transform:translateX(0) rotate(0); }
    20%{ transform:translateX(-3px) rotate(-1.5deg); }
    40%{ transform:translateX(3px) rotate(1.5deg); }
    60%{ transform:translateX(-2px) rotate(-1deg); }
    80%{ transform:translateX(2px) rotate(1deg); }
  }
  .hero-mobile-title{ display:none; }
  .hero-mobile-ship-banner{ display:none; }
  @media (min-width: 761px){
    .hero-mobile-title{ display:none !important; }
  }
  .header-tagline .r{ color:var(--red); }
  .header-actions{ display:flex; align-items:center; gap:22px;}
  .lang-toggle{ display:flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:var(--text-faint); margin-left:auto;}
  .lang-toggle button{ background:none; border:none; cursor:pointer; font-size:12px; font-weight:700; color:var(--text-faint); padding:2px; display:inline-block; transition:transform .18s ease, color .18s ease;}
  .lang-toggle button.active{ color:var(--text); }
  @media (hover:hover){ .lang-toggle button:hover{ transform:scale(1.35); color:#fff; } }
  .icon-btn{ background:none; border:1px solid var(--line); border-radius:10px; width:42px; height:42px; display:flex; align-items:center; justify-content:center; cursor:pointer; position:relative; color:var(--text); transition:transform .2s ease, border-color .2s ease;}
  @media (hover:hover){ .icon-btn:hover{ transform:scale(1.1); border-color:var(--red); } }
  .cart-count{ position:absolute; top:-7px; right:-7px; background:var(--red); color:#fff; font-size:10px; font-weight:800; border-radius:999px; min-width:18px; height:18px; display:flex; align-items:center; justify-content:center; padding:0 4px;}

  /* ---------- Hero ---------- */
  .hero{ position:relative; padding:2px 0 2px; overflow:hidden;}
  #top.hero{ padding-top:0; }
  .hero--infobar-only{ padding:10px 0 0; border-bottom:none; }
  .hero::before{
    content:""; position:absolute; inset:0; z-index:0;
    background: radial-gradient(ellipse 70% 55% at 50% 20%, rgba(227,30,43,.16), transparent 62%);
  }
  .hero--infobar-only .hero-infobar{ margin-bottom:0; }
  .hero-intro{ position:relative; z-index:1; max-width:640px; margin:0 auto 8px; text-align:center;}

  .hero-trustrow{
    position:relative; z-index:1; display:flex; justify-content:center; align-items:flex-start;
    flex-wrap:wrap; gap:0; margin:10px auto 10px; max-width:1000px; border-radius:16px;
    background:linear-gradient(135deg, rgba(232,178,58,.1), rgba(20,19,23,.4) 60%);
    box-shadow:0 20px 50px -25px rgba(232,178,58,.25);
    padding:6px 10px;
  }
  .hero-trust-item{
    position:relative; overflow:hidden; display:flex; align-items:center; gap:12px; padding:14px 22px; text-align:left;
    cursor:pointer; border-radius:12px;
  }
  .hero-trust-item.is-shaking{ animation:headerShake .5s ease; }
  .hero-trust-item + .hero-trust-item{ border-left:1px solid rgba(232,178,58,.22); }
  .hero-trust-item svg{
    display:flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:11px;
    background:rgba(232,178,58,.12); color:var(--gold); flex-shrink:0; box-sizing:border-box; padding:8px;
  }
  .hero-trust-item div{ display:flex; flex-direction:column; }
  .hero-trust-item b{ font-size:12.5px; font-weight:800; text-transform:uppercase; letter-spacing:.02em; color:#fff; line-height:1.25; }
  .hero-trust-item span{ font-size:11.5px; color:var(--text-soft); margin-top:1px; }
  .hero-trust-flag{
    width:32px; height:32px; border-radius:50%; flex-shrink:0; box-shadow:0 0 0 2px rgba(255,255,255,.2);
    background:repeating-linear-gradient(0deg, #000 0 33.3%, #DD0000 33.3% 66.6%, #FFCE00 66.6% 100%);
  }
  .hero-trust-item--seal{ flex-direction:column; align-items:center; gap:2px; padding:10px 26px; }
  .hero-trust-item--seal .stars{ display:block; color:var(--gold); font-size:13px; letter-spacing:3px; margin-bottom:2px; }
  .hero-trust-item--seal b{ color:var(--gold); }

  /* Der goldene Rahmen + das Lichtglänzen sitzt standardmäßig auf "LIMITED
     EDITION" — wandert beim Hover auf den gerade berührten Punkt und
     springt zurück, sobald die Maus die ganze Zeile verlässt. */
  .hero-trust-item--seal,
  .hero-trust-item:hover{
    border-radius:14px;
    background:linear-gradient(135deg, rgba(232,178,58,.14), rgba(232,178,58,.04));
    box-shadow:0 0 0 1px rgba(232,178,58,.4) inset;
  }
  .hero-trust-item--seal::after,
  .hero-trust-item:hover::after{
    content:""; position:absolute; top:0; left:-60%; width:35%; height:100%; pointer-events:none;
    background:linear-gradient(75deg, transparent, rgba(255,255,255,.35), transparent);
    animation:infobarShine 4s ease-in-out infinite;
  }
  .hero-trustrow:hover .hero-trust-item--seal:not(:hover){
    background:none; box-shadow:none;
  }
  .hero-trustrow:hover .hero-trust-item--seal:not(:hover)::after{ display:none; }
  @media (prefers-reduced-motion: reduce){ .hero-trust-item--seal::after, .hero-trust-item:hover::after{ animation:none; display:none; } }

  /* Ab Tablet/Desktop-Breite: die drei Punkte unter der Foto-Kollage werden
     in drei GLEICH BREITE, zentrierte Spalten aufgeteilt (statt links-
     bündig, wie es vorher war) — auf Mobile bleibt die separate,
     einfachere Ansicht von weiter unten unverändert bestehen. */
  @media (min-width: 761px){
    .hero-trustrow{ align-items:stretch; }
    .hero-trust-item{
      flex:1 1 0; justify-content:center; text-align:center;
      transition:transform .25s ease, background .25s ease; border-radius:12px;
    }
    .hero-trust-item div{ align-items:center; }
    @media (hover:hover){
      .hero-trust-item:not(.hero-trust-item--seal):hover{ transform:translateY(-2px); }
      .hero-trust-item--seal:hover{ transform:translateY(-2px) scale(1.02); }
    }
    .hero-trust-flag{ box-shadow:0 0 0 3px rgba(255,255,255,.12); }
  }

  .hero-infobar{
    position:relative; z-index:1; display:flex; align-items:center; justify-content:center; flex-wrap:wrap;
    gap:0; margin:0 auto 30px; max-width:980px; border-radius:16px;
    background:linear-gradient(135deg, rgba(232,178,58,.1), rgba(20,19,23,.4) 60%);
    box-shadow:0 20px 50px -25px rgba(232,178,58,.25);
    padding:6px 10px;
  }
  .hero-infobar-item{
    position:relative; overflow:hidden; display:flex; align-items:center; gap:12px; text-align:left;
    padding:14px 26px; flex:1; min-width:220px; justify-content:center; border-radius:12px;
    text-decoration:none; color:inherit; cursor:pointer;
    transition:transform .25s ease, background .3s ease, box-shadow .3s ease;
  }
  .hero-infobar-item.is-shaking{ animation:headerShake .5s ease; }
  @media (hover:hover){
    .hero-infobar-item:not(.hero-infobar-item--highlight):hover{ transform:translateY(-2px); }
  }
  .hero-infobar-item + .hero-infobar-item{ border-left:1px solid rgba(232,178,58,.22); }
  .hero-infobar-icon{
    display:flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:11px;
    background:rgba(232,178,58,.12); color:var(--gold); flex-shrink:0;
  }
  .hero-infobar-icon--gold{ background:var(--gold); color:#1a1305; }
  .hero-infobar-item div{ display:flex; flex-direction:column; }
  .hero-infobar-item b{ font-size:13.5px; font-weight:800; text-transform:uppercase; color:#fff; line-height:1.25; }
  .hero-infobar-item span{ font-size:11.5px; color:var(--text-soft); margin-top:1px; }

  /* Der goldene Rahmen + Lichtglänzen sitzt standardmäßig auf "Kostenloser
     Versand" (der stärkste Kaufanreiz) — wandert aber beim Hover auf den
     Punkt, den die Maus gerade berührt, und springt zurück, sobald die
     Maus den ganzen Balken verlässt. */
  .hero-infobar-item--highlight,
  .hero-infobar-item:hover{
    background:rgba(232,178,58,.07);
    box-shadow:0 0 0 1px rgba(232,178,58,.35) inset;
    transform:translateY(-2px) scale(1.02);
  }
  .hero-infobar-item--highlight::before,
  .hero-infobar-item:hover::before{
    content:""; position:absolute; top:0; left:-60%; width:40%; height:100%; pointer-events:none;
    background:linear-gradient(75deg, transparent, rgba(255,255,255,.22), transparent);
    animation:infobarShine 4.5s ease-in-out infinite;
  }
  .hero-infobar:hover .hero-infobar-item--highlight:not(:hover){
    background:none; box-shadow:none; transform:none;
  }
  .hero-infobar:hover .hero-infobar-item--highlight:not(:hover)::before{ display:none; }
  @keyframes infobarShine{
    0%{ left:-60%; } 35%{ left:130%; } 100%{ left:130%; }
  }
  @media (prefers-reduced-motion: reduce){ .hero-infobar-item--highlight::before, .hero-infobar-item:hover::before{ animation:none; display:none; } }

  .hero-grid-2x2{
    position:relative; z-index:1; margin-top:0;
    display:grid; grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .hero-tile{
    position:relative; display:flex; flex-direction:column; min-width:0; overflow:hidden;
    border-radius:18px; box-shadow:0 24px 50px -22px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  @media (hover:hover){
    .hero-tile:hover{
      transform:scale(1.025);
      box-shadow:0 30px 60px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.12);
    }
  }
  .hero-tile-media{
    position:relative; overflow:hidden; aspect-ratio:10/7; cursor:pointer; width:100%; background:#0a0a0d; flex-shrink:0;
  }
  .hero-tile-photo{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
    transition:transform .4s ease, filter .3s ease;
  }
  .hero-tile-photo-next{
    z-index:1; opacity:0; transition:opacity .5s ease;
  }
  .hero-tile-glow{
    position:absolute; inset:0; z-index:2; pointer-events:none; opacity:0; transition:opacity .3s ease;
    box-shadow:inset 0 0 0 2px var(--pc), inset 0 -70px 70px -30px var(--pc-soft);
  }
  @media (hover:hover){
    .hero-tile-media:hover .hero-tile-photo{ transform:scale(1.06); filter:saturate(1.12) brightness(1.03); }
    .hero-tile-media.is-cycling:hover .hero-tile-photo{ transform:none; }
    .hero-tile-media:hover .hero-tile-glow{ opacity:1; }
  }

  /* Name / Preis / Kaufen-Button sitzen als feste, einzeilige Kartenfläche
     unter dem Foto (nicht als Overlay) — auf allen Bildschirmgrößen
     gleich aufgebaut. Das Foto selbst ist klickbar und öffnet die
     Foto-Galerie, daher kein separater "Mehr Fotos"-Button nötig. */
  .hero-tile-content{
    position:static; z-index:3; display:flex; align-items:center; justify-content:space-between;
    gap:10px; padding:14px 16px; min-width:0; border-radius:0 0 18px 18px;
    background:rgba(20,19,23,.6); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  }
  .hero-tile-text{ min-width:0; overflow:hidden; }
  .hero-tile-name{ font-family:'Barlow Condensed'; font-weight:800; font-size:clamp(15px,2.2vw,22px); text-transform:uppercase; line-height:1; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
  .hero-tile-sub{ font-family:'Barlow Condensed'; font-weight:700; font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; margin-top:2px; color:var(--text-soft);}
  .hero-tile-bottom{ display:flex; align-items:center; gap:10px; flex-shrink:0;}
  .hero-tile-bottom .btn{ padding:11px 18px; font-size:12px; flex-shrink:0; white-space:nowrap;}
  .hero-tile-price{ font-family:'IBM Plex Mono',monospace; font-weight:700; font-size:21px; color:#fff;}

  /* Unter 760px: nur Ecken der 2x2-Kollage nicht abrunden — auf dem Handy
     sollen die Fotos randlos/eckig wirken. */
  @media (max-width: 760px){
    .hero-tile{ border-radius:14px; }
    .hero-grid-2x2{ gap:10px; }
  }


  .lightbox-card{ max-width:820px; padding:24px; text-align:center; }
  .lightbox-imgwrap{ position:relative; }
  .lightbox-card img{ width:100%; aspect-ratio:1/1; max-height:75vh; border-radius:12px; object-fit:cover; background:#F4F4F2; }
  .lightbox-imgwrap .carousel-arrow{ width:38px; height:38px; }
  .lightbox-caption{ margin-top:14px; font-size:13px; color:var(--text-soft); }
  .lightbox-thumbs{ display:flex; justify-content:center; gap:10px; margin-top:16px; flex-wrap:wrap; }
  .lightbox-buy-row{
    display:flex; align-items:center; justify-content:center; gap:16px;
    margin-top:20px; padding-top:18px; border-top:1px solid var(--line);
  }
  .lightbox-price{ font-size:22px; font-weight:700; color:#fff; }
  .lightbox-buy-row .btn{ padding:12px 24px; }
  .lightbox-thumb{
    width:64px; height:64px; border-radius:8px; overflow:hidden; padding:0; cursor:pointer;
    border:2px solid transparent; opacity:.55; transition:opacity .2s, border-color .2s; flex-shrink:0;
  }
  .lightbox-thumb img{ width:100%; height:100%; object-fit:cover; border-radius:0; background:#F4F4F2; }
  .lightbox-thumb.active{ border-color:var(--red); opacity:1; }
  @media (hover:hover){ .lightbox-thumb:hover{ opacity:1; } }

  .eyebrow{ display:flex; align-items:center; gap:8px; font-size:12px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; margin-bottom:10px;}
  .eyebrow .r{color:var(--red);}
  .hero h1{ font-size:clamp(18px,6.2vw,52px); color:var(--text); white-space:nowrap;}
  .hero h1 .r{ color:var(--red); }
  .rating-row{ display:flex; align-items:center; gap:10px; margin:10px 0 10px;}
  .stars{ color:var(--red); font-size:15px; letter-spacing:2px;}
  .rating-row span.count{ font-size:13px; color:var(--text-soft); font-weight:600;}
  .hero-price{ font-family:'IBM Plex Mono',monospace; font-size:28px; font-weight:600; margin-bottom:10px;}
  .hero-trust{ display:flex; gap:18px; flex-wrap:wrap; margin-bottom:14px;}
  .hero-trust .item{ display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; color:var(--text-soft);}
  .hero-trust svg{ color:var(--red); flex-shrink:0;}
  .btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:16px 30px; border-radius:10px; border:none; cursor:pointer; font-size:14px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; text-decoration:none; transition:transform .15s, box-shadow .2s, background .25s, border-color .2s;}
  .btn-primary{ background:var(--red); color:#fff; }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(227,30,43,.6); }
  .btn-team{ background:var(--team-color); color:#fff; }
  .btn-team:hover{ transform:translateY(-2px); box-shadow:0 14px 26px -10px var(--team-color); }
  .btn-outline{ background:transparent; color:#fff; border:1.5px solid var(--line); }
  .btn-cancel-order{ margin-top:10px; }
  .btn-outline:hover{ border-color:#fff; }
  .btn-danger{ background:transparent; color:#FF5A5A; border:1.5px solid #7A2226; }
  .btn-danger:hover{ background:#2A1416; }
  .btn-block{ width:100%; }
  .btn-sm{ padding:11px 18px; font-size:12px; }

  /* ---------- Section common ---------- */
  .section{ padding:10px 0;}
  .section-head{ text-align:center; margin-bottom:20px;}
  .section-head h2{ font-size:clamp(30px,4.4vw,48px); margin-bottom:8px;}
  .section-head p{ color:var(--text-soft); font-size:14.5px;}
  .kicker{ font-size:12px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--red); display:block; margin-bottom:10px;}
  #produktdetails .kicker{ margin-bottom:0; margin-top:8px; }

  /* ---------- Produktdetails: eine zusammenhängende Karte ---------- */
  .details-card{
    --pc:#E31E2B; --pc-soft:#E31E2B26;
    position:relative; margin:0 auto; border-radius:24px;
    background:
      radial-gradient(ellipse 90% 60% at 50% 0%, var(--pc-soft), transparent 60%),
      linear-gradient(180deg, rgba(20,19,23,.6), rgba(28,27,32,.6));
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    border:1px solid var(--line); overflow:hidden;
    box-shadow:0 30px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03) inset;
    transition:background 1s ease;
  }
  .details-card::before{
    content:""; position:absolute; top:0; left:0; right:0; height:3px; z-index:1; pointer-events:none;
    background:linear-gradient(90deg, var(--pc), transparent 40%, transparent 60%, var(--pc));
    opacity:.7; transition:background 1s ease;
  }

  .details-tabs{ position:relative; z-index:1; display:flex; justify-content:center; flex-wrap:wrap; gap:8px; padding:30px 24px 0; }
  .details-tab{
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(255,255,255,.04); border:1.5px solid var(--line); color:var(--text-soft);
    padding:9px 20px 9px 12px; border-radius:999px; font-size:12.5px; font-weight:700; cursor:pointer;
    transition:border-color .2s, color .2s, background .2s, transform .2s;
  }
  .details-tab-flag{
    display:inline-block; width:22px; height:15px; border-radius:3px; flex-shrink:0;
    box-shadow:0 0 0 1px rgba(255,255,255,.25) inset, 0 1px 3px rgba(0,0,0,.4);
  }
  .details-tab.active{ background:var(--pc); border-color:var(--pc); color:#fff; transform:scale(1.05); }
  @media (hover:hover){
    .details-tab:not(.active):hover{ border-color:var(--pc); color:#fff; transform:scale(1.06); box-shadow:0 8px 20px -8px rgba(0,0,0,.5); }
  }

  .details-progress{ position:relative; z-index:1; height:2px; background:rgba(255,255,255,.08); margin:20px 24px 0; border-radius:2px; overflow:hidden; }
  .details-progress-bar{ height:100%; width:0%; background:var(--pc); border-radius:2px; animation:detailsProgress 7000ms linear; transition:opacity .3s ease; }
  @keyframes detailsProgress{ from{ width:0%; } to{ width:100%; } }

  .details-panel{ position:relative; z-index:1; padding:36px 40px 40px; transition:opacity .22s ease, transform .22s ease; opacity:1; transform:translateY(0); }
  .details-panel.is-fading{ opacity:0; transform:translateY(8px); }

  .details-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:44px; align-items:start; }
  .details-media{ display:flex; flex-direction:column; gap:12px; }
  .details-photo{
    position:relative; border-radius:16px; overflow:hidden; aspect-ratio:6/5;
    box-shadow:0 20px 50px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08) inset;
    background-size:220% 220% !important; animation:detailsFlagShift 9s ease-in-out infinite;
  }
  .details-photo::after{
    content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
    background:radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,.55), transparent 70%);
  }
  @keyframes detailsFlagShift{
    0%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } 100%{ background-position:0% 50%; }
  }
  @media (prefers-reduced-motion: reduce){ .details-photo{ animation:none; } }
  .details-photo--clickable{ cursor:zoom-in; }
  .details-photo-zoom{
    position:absolute; right:14px; bottom:14px; z-index:2; width:38px; height:38px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; color:#fff;
    background:rgba(10,10,13,.55); backdrop-filter:blur(3px);
    opacity:0; transform:scale(.85); transition:opacity .22s ease, transform .22s ease;
    pointer-events:none;
  }
  @media (hover:hover){ .details-photo--clickable:hover .details-photo-zoom{ opacity:1; transform:scale(1); } }
  .details-photo--clickable:focus-visible{ outline:2px solid var(--pc); outline-offset:2px; }
  .details-photo img{
    width:100%; height:100%; object-fit:contain; display:block; position:relative; z-index:2;
    transform-origin:center; animation:detailsPhotoZoom 7000ms ease-out forwards;
  }
  @keyframes detailsPhotoZoom{
    from{ transform:scale(1); } to{ transform:scale(1.15); }
  }
  @media (prefers-reduced-motion: reduce){ .details-photo img{ animation:none; } }
  .details-gallery{ display:flex; gap:8px; }
  .details-gallery-thumb{
    flex:1; aspect-ratio:1/1; border-radius:10px; overflow:hidden; padding:0; cursor:pointer;
    border:1.5px solid var(--line); background:#000; transition:border-color .2s, transform .2s;
  }
  .details-gallery-thumb img{ width:100%; height:100%; object-fit:contain; display:block; }
  @media (hover:hover){ .details-gallery-thumb:hover{ border-color:var(--pc); transform:translateY(-2px); } }

  /* ---------- Bonus-Schnürsenkel-Aktion im Produktdetails-Block ---------- */
  .details-bonus{
    position:relative; overflow:hidden; margin-top:16px; padding:22px 22px 20px;
    border-radius:16px; background:linear-gradient(135deg, var(--pc-soft, rgba(227,30,43,.12)), rgba(255,255,255,.02));
    box-shadow:0 0 0 1.5px var(--pc) inset, 0 16px 34px -20px rgba(0,0,0,.6);
    animation:detailsBonusPulse 2.6s ease-in-out infinite;
  }
  .details-bonus--clickable{ cursor:pointer; transition:transform .25s ease; }
  @media (hover:hover){ .details-bonus--clickable:hover{ transform:translateY(-2px) scale(1.01); } }
  @keyframes detailsBonusPulse{
    0%, 100%{ box-shadow:0 0 0 1.5px var(--pc) inset, 0 16px 34px -20px rgba(0,0,0,.6); }
    50%{ box-shadow:0 0 0 1.5px var(--pc) inset, 0 0 22px -2px var(--pc), 0 16px 34px -20px rgba(0,0,0,.6); }
  }
  .details-bonus-tag{
    display:inline-block; margin-bottom:12px; padding:5px 14px; border-radius:999px;
    background:var(--pc); color:#fff; font-size:11.5px; font-weight:800; text-transform:uppercase; letter-spacing:.08em;
  }
  .details-bonus-inner{ display:flex; align-items:center; gap:18px; }
  .details-bonus-inner img{
    width:88px; height:88px; border-radius:12px; object-fit:cover; flex-shrink:0;
    box-shadow:0 8px 20px -8px rgba(0,0,0,.6);
  }
  .details-bonus-text{ display:flex; flex-direction:column; gap:4px; }
  .details-bonus-text b{ font-size:15px; font-weight:800; color:#fff; line-height:1.3; }
  .details-bonus-text span{ font-size:13px; color:var(--text-soft); line-height:1.45; }
  .details-bonus-shine{
    position:absolute; top:0; left:-60%; width:35%; height:100%; pointer-events:none;
    background:linear-gradient(75deg, transparent, rgba(255,255,255,.3), transparent);
    animation:infobarShine 4.5s ease-in-out infinite;
  }
  @media (prefers-reduced-motion: reduce){
    .details-bonus{ animation:none; }
    .details-bonus-shine{ animation:none; display:none; }
  }

  /* ---------- Vergrößerte Ansicht des Bonus-Schnürsenkelfotos ---------- */
  .bonus-lightbox-card{ max-width:560px; }
  .bonus-lightbox-imgwrap{ position:relative; border-radius:14px; overflow:hidden; isolation:isolate; }
  .bonus-lightbox-imgwrap img{ width:100%; display:block; border-radius:14px; }
  .bonus-lightbox-ribbon{
    position:absolute; top:14px; left:14px; max-width:calc(100% - 28px);
    padding:8px 16px; border-radius:999px; white-space:nowrap;
    background:var(--red); color:#fff; font-size:12.5px; font-weight:900; text-transform:uppercase; letter-spacing:.04em;
    box-shadow:0 6px 16px rgba(0,0,0,.5); border:1.5px solid rgba(255,255,255,.5);
    text-shadow:0 1px 3px rgba(0,0,0,.4);
  }
  .bonus-lightbox-caption{ margin:16px 4px 0; font-size:14px; color:var(--text-soft); text-align:center; }
  .details-tagline{ font-family:'Barlow Condensed'; font-weight:800; font-size:23px; text-transform:uppercase; margin-bottom:14px; }
  .details-intro{ color:var(--text-soft); font-size:14.5px; line-height:1.75; margin:0 0 24px; }
  .details-highlights{ display:grid; grid-template-columns:1fr 1fr; gap:10px 18px; margin-bottom:26px; }
  .details-highlight-item{ display:flex; align-items:flex-start; gap:8px; font-size:13.5px; color:var(--text); line-height:1.4; }
  .details-highlight-item svg{ flex-shrink:0; margin-top:2px; }
  .details-combo{ font-size:13.5px; color:var(--text-soft); margin-bottom:22px; padding-bottom:22px; border-bottom:1px solid var(--line-soft); }
  .details-combo b{ display:block; color:#fff; font-size:12px; text-transform:uppercase; letter-spacing:.04em; margin-bottom:6px; }
  .details-table{ width:100%; border-collapse:collapse; margin-bottom:22px; }
  .details-table tr{ border-bottom:1px solid var(--line-soft); }
  .details-table tr:last-child{ border-bottom:none; }
  .details-table td{ padding:9px 0; font-size:13.5px; }
  .details-table td:first-child{ color:var(--text-faint); width:40%; }
  .details-table td:last-child{ color:var(--text); font-weight:500; }
  .details-foot{ font-size:12.5px; color:var(--text-faint); margin:0 0 6px; line-height:1.6; }
  .details-panel .btn{ margin-top:18px; }

  @media (max-width:760px){
    .details-card{ border-radius:18px; }
    .details-tabs{ padding:22px 16px 0; }
    .details-progress{ margin:16px 16px 0; }
    .details-panel{ padding:24px 20px 28px; }
    .details-grid{ grid-template-columns:1fr; gap:24px; }
    .details-photo{ aspect-ratio:4/3; }
    .details-highlights{ grid-template-columns:1fr; }
  }

  /* ---------- Why section ---------- */
  .why-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px;}
  .why-item{
    text-align:center; padding:22px 14px; border-radius:16px; cursor:default;
    background:rgba(20,19,23,0); backdrop-filter:blur(0px); -webkit-backdrop-filter:blur(0px);
    transition:transform .3s ease, background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
  }
  .why-icon{
    width:52px; height:52px; border-radius:50%; border:1.5px solid var(--line); display:flex; align-items:center; justify-content:center;
    margin:0 auto 14px; color:var(--red); transition:transform .3s ease, background .3s ease, border-color .3s ease;
  }
  @media (hover:hover){
    .why-item:hover{
      transform:translateY(-4px) scale(1.05);
      background:rgba(20,19,23,.6); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
      box-shadow:0 20px 40px -18px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
    }
    .why-item:hover .why-icon{ transform:scale(1.12); background:rgba(227,30,43,.14); border-color:var(--red); }
  }
  .why-item h4{ font-family:'Inter'; font-weight:700; font-size:13.5px; text-transform:none; margin-bottom:6px; letter-spacing:0;}
  .why-item p{ font-size:12px; color:var(--text-soft); line-height:1.5; margin:0;}

  /* ---------- Banner section ---------- */
  .banner{ position:relative; overflow:hidden;}
  .banner-inner{ position:relative; z-index:1; display:grid; grid-template-columns:1fr 1.3fr; gap:40px; align-items:center;}
  .banner h2{ font-size:clamp(30px,4.5vw,50px); margin-bottom:6px;}
  .banner h2 .r{ color:var(--red); display:block;}
  .banner p{ color:var(--text-soft); font-size:14.5px; margin:14px 0 26px; max-width:360px; line-height:1.6;}
  .banner--video-only{ padding:10px 0; }
  .banner--video-only .wrap{ position:relative; }
  .banner--video-only .shoe-strip.video-wrap{ position:relative; z-index:1; width:100%; }
  .shoe-strip.video-wrap{
    position:relative; border-radius:16px; overflow:hidden; aspect-ratio:1920/520;
    box-shadow:0 16px 40px -18px rgba(0,0,0,.5); background:#000;
  }
  .shoe-strip.video-wrap video{ width:100%; height:100%; object-fit:cover; display:block; }
  .carousel-arrow{
    position:absolute; top:50%; transform:translateY(-50%); z-index:3;
    width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.35);
    background:rgba(10,10,13,.5); backdrop-filter:blur(4px); color:#fff; cursor:pointer;
    display:flex; align-items:center; justify-content:center; transition:background .2s;
  }
  .carousel-arrow:hover{ background:rgba(10,10,13,.8); }
  .carousel-arrow.prev{ left:14px; }
  .carousel-arrow.next{ right:14px; }
  .carousel-dots{ position:absolute; left:0; right:0; bottom:16px; z-index:3; display:flex; justify-content:center; gap:8px;}
  .carousel-dot{ width:8px; height:8px; border-radius:50%; border:none; background:rgba(255,255,255,.4); cursor:pointer; padding:0; transition:background .2s, transform .2s;}
  .carousel-dot.active{ background:#fff; transform:scale(1.3);}

  /* ---------- Testimonials ---------- */
  .testi-row{ display:flex; gap:20px; align-items:stretch;}
  .testi-arrow{ background:var(--surface2); border:1px solid var(--line); color:#fff; width:44px; height:44px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; cursor:pointer; align-self:center;}
  .testi-track{ flex:1; display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .testi-card{ background:rgba(20,19,23,.6); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border:1px solid var(--line-soft); border-radius:14px; padding:24px;}
  .testi-card .stars{ margin-bottom:14px; display:block;}
  .testi-card p{ font-size:14px; line-height:1.6; color:#E7E6EA; margin:0 0 18px; min-height:72px;}
  .testi-name{ display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--text-soft);}

  /* ---------- Payment strip ---------- */
  .pay-strip{ padding:44px 0 18px; text-align:center;}
  .pay-strip .kicker{ margin-bottom:20px; }
  .pay-badges{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap;}
  .pay-badge{ background:rgba(20,19,23,.6); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border:1px solid var(--line); border-radius:10px; padding:12px 22px; font-weight:800; font-size:14px; color:#fff; letter-spacing:.02em; display:flex; align-items:center; gap:6px;}
  .pay-badge.visa{ color:#fff; font-style:italic; }
  .pay-badge.mc{ }
  .pay-badge .mc-dots{ display:flex; }
  .pay-badge .mc-dots span{ width:15px; height:15px; border-radius:50%; display:inline-block; margin-left:-6px;}

  /* ---------- Footer ---------- */
  footer{ padding:26px 0 calc(26px + env(safe-area-inset-bottom, 0));}
  .footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1.2fr; gap:30px; margin-bottom:50px;}
  .footer-logo{ display:flex; align-items:center; gap:6px; font-family:'Barlow Condensed'; font-weight:900; font-size:24px; margin-bottom:14px;}
  .footer-logo .logo-mark{ height:26px; width:auto; display:block;}
  footer p.small{ font-size:13px; line-height:1.7; color:var(--text-soft); max-width:250px;}
  .social-row{ display:flex; gap:10px; margin-top:16px;}
  .social-row a{ width:34px; height:34px; border:1px solid var(--line); border-radius:8px; display:flex; align-items:center; justify-content:center; color:#fff; text-decoration:none;}
  footer h5{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; font-weight:700; color:#fff;}
  footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
  footer a{ font-size:13.5px; color:var(--text-soft); text-decoration:none;}
  footer a:hover{ color:#fff; }
  footer button.linklike{ background:none; border:none; padding:0; text-align:left; font-size:13.5px; color:var(--text-soft); cursor:pointer; font-family:inherit;}
  footer button.linklike:hover{ color:#fff; }
  .newsletter-row{ display:flex; margin-top:4px; border:1px solid var(--line); border-radius:10px; overflow:hidden;}
  .newsletter-row input{ flex:1; background:transparent; border:none; padding:12px 14px; color:#fff; font-size:13px; font-family:inherit;}
  .newsletter-row input::placeholder{ color:var(--text-faint); }
  .newsletter-row button{ background:var(--red); border:none; color:#fff; width:44px; cursor:pointer; }
  .footer-bottom{ border-top:1px solid var(--line-soft); padding-top:22px; display:flex; justify-content:space-between; font-size:12px; color:var(--text-faint); flex-wrap:wrap; gap:10px;}

  /* ---------- Cart drawer ---------- */
  .overlay{ position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:60; opacity:0; pointer-events:none; transition:opacity .25s;}
  .overlay.show{ opacity:1; pointer-events:auto; }
  .drawer{ position:fixed; top:0; right:0; height:100%; width:430px; max-width:92vw; background:var(--surface1); z-index:70; transform:translateX(100%); transition:transform .3s ease; display:flex; flex-direction:column; box-shadow:-20px 0 60px rgba(0,0,0,.5); border-left:1px solid var(--line);}
  .drawer.show{ transform:translateX(0); }
  .drawer-head{ display:flex; justify-content:space-between; align-items:center; padding:22px 24px; border-bottom:1px solid var(--line);}
  .drawer-head h3{ font-size:22px; }
  .close-btn{ background:none; border:none; font-size:24px; cursor:pointer; color:var(--text-soft); line-height:1; width:44px; height:44px; display:flex; align-items:center; justify-content:center; margin:-10px -10px -10px 0;}
  .drawer-body{ flex:1; overflow-y:auto; padding:14px 24px;}
  .cart-line{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line-soft);}
  .cart-line img{ width:78px; height:66px; object-fit:cover; border-radius:10px;}
  .cart-line-info{ flex:1; }
  .cart-line-info .name{ font-weight:700; font-size:14px; }
  .cart-line-info .meta{ font-size:12px; color:var(--text-soft); margin:2px 0 8px;}
  .qty-row{ display:flex; align-items:center; gap:10px;}
  .qty-btn{ width:32px; height:32px; border-radius:6px; border:1px solid var(--line); background:transparent; color:#fff; cursor:pointer; font-size:16px; display:flex; align-items:center; justify-content:center;}
  .remove-btn{ background:none; border:none; color:var(--text-soft); font-size:12px; text-decoration:underline; cursor:pointer; margin-left:auto; padding:10px 2px;}
  .cart-line-price{ font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:14px; white-space:nowrap;}
  .empty-cart{ text-align:center; padding:60px 20px; color:var(--text-soft);}
  .drawer-foot{ padding:20px 24px calc(26px + env(safe-area-inset-bottom, 0)); border-top:1px solid var(--line);}
  .sum-row{ display:flex; justify-content:space-between; font-size:14px; margin-bottom:8px; color:var(--text-soft);}
  .sum-row.total{ font-size:17px; font-weight:700; color:#fff; margin:14px 0 18px;}

  /* ---------- Modals ---------- */
  .modal{ position:fixed; inset:0; z-index:80; display:flex; align-items:flex-start; justify-content:center; padding:40px 16px calc(40px + env(safe-area-inset-bottom, 0)); overflow-y:auto; opacity:0; pointer-events:none; transition:opacity .2s;}
  .modal.show{ opacity:1; pointer-events:auto; }
  .modal-card{ background:var(--surface1); border:1px solid var(--line); border-radius:20px; width:100%; max-width:560px; padding:36px; box-shadow:0 40px 90px rgba(0,0,0,.6); position:relative; color:#fff;}
  .modal-card.wide{ max-width:680px; }
  .modal-close{ position:absolute; top:16px; right:16px; z-index:10; background:rgba(10,10,13,.88); border:1px solid rgba(255,255,255,.25); width:38px; height:38px; border-radius:50%; cursor:pointer; font-size:20px; line-height:1; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px rgba(0,0,0,.5);}
  .modal-card h3{ font-size:28px; margin-bottom:6px;}
  .modal-sub{ color:var(--text-soft); font-size:14px; margin-bottom:24px;}
  .step-track{ display:flex; gap:6px; margin-bottom:26px;}
  .step-track div{ flex:1; height:4px; border-radius:2px; background:var(--line);}
  .step-track div.done{ background:var(--red); }
  .form-row{ margin-bottom:16px; }
  .form-row label{ display:block; font-size:11.5px; font-weight:700; margin-bottom:6px; color:var(--text-soft); text-transform:uppercase; letter-spacing:.04em;}
  .form-row input, .form-row select{ width:100%; border:1.5px solid var(--line); border-radius:10px; padding:11px 13px; font-size:14px; font-family:inherit; background:var(--surface2); color:#fff;}
  .form-row input::placeholder{ color:var(--text-faint); }
  .form-row input:focus, .form-row select:focus{ border-color:var(--red); outline:none; }
  .form-grid2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .form-grid3{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:14px; }
  .pay-methods{ display:flex; gap:10px; margin-bottom:18px; }
  .pay-method{ flex:1; border:1.5px solid var(--line); border-radius:10px; padding:12px; text-align:center; font-size:13px; font-weight:700; cursor:pointer; color:var(--text-soft);}
  .pay-method.active{ border-color:var(--red); color:#fff; background:var(--red-dim); }
  .order-summary-box{ background:var(--surface2); border-radius:14px; padding:16px 18px; margin-bottom:20px; font-size:13px;}
  .order-summary-box .sum-row{ font-size:13px; }
  .secure-note{ display:flex; align-items:center; gap:8px; font-size:12px; color:var(--text-soft); margin-top:14px; justify-content:center;}
  .confirm-icon{ width:60px; height:60px; border-radius:50%; background:#13351E; display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
  .order-id{ font-family:'IBM Plex Mono',monospace; background:var(--surface2); border-radius:10px; padding:10px 14px; display:inline-block; font-size:14px; margin:6px 0 20px; border:1px solid var(--line);}
  .cancel-box{ border:1.5px dashed var(--line); border-radius:14px; padding:18px; margin-top:22px; text-align:left;}
  .cancel-box h4{ font-size:14px; margin:0 0 6px; font-family:'Inter'; text-transform:none; font-weight:700;}
  .cancel-box p{ font-size:13px; color:var(--text-soft); line-height:1.5; margin:0 0 14px;}
  .legal-body{ font-size:13.5px; line-height:1.7; color:var(--text-soft); max-height:55vh; overflow-y:auto; padding-right:6px;}
  .legal-warning{ background:#3A2A0F; border:1px solid #6B4E1A; color:#F2C879; border-radius:10px; padding:12px 14px; font-size:13px; line-height:1.5; margin-bottom:18px;}
  .legal-body h4{ color:#fff; font-size:14px; margin:18px 0 6px; font-family:'Inter'; text-transform:none;}
  .legal-body h4:first-child{ margin-top:0; }
  .quick-size-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin:20px 0 36px;}
  .quick-size-chip{ position:relative; border:1.5px solid var(--line); background:var(--surface2); border-radius:10px; padding:14px 0; min-height:44px; text-align:center; font-weight:700; cursor:pointer; color:#fff; display:flex; align-items:center; justify-content:center;}
  .quick-size-chip.active{ border-color:var(--red); background:var(--red-dim); }
  .quick-size-chip.oos{ cursor:not-allowed; opacity:.35; color:var(--text-faint); text-decoration:line-through; background:transparent;}
  .quick-size-chip .oos-label{
    position:absolute; bottom:-20px; left:50%; transform:translateX(-50%); white-space:nowrap;
    font-size:9px; font-weight:700; text-decoration:none; letter-spacing:.02em; color:var(--text-faint);
  }
  .toast{ position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); z-index:90; background:#fff; color:#111; padding:14px 22px; border-radius:999px; font-size:14px; font-weight:700; opacity:0; pointer-events:none; transition:all .3s; display:flex; align-items:center; gap:10px;}
  .toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

  .cookie-banner{
    position:fixed; left:0; right:0; bottom:0; z-index:95; background:rgba(20,19,23,.6);
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    border-top:1px solid var(--line); padding:18px 20px; transform:translateY(100%);
    transition:transform .35s ease; box-shadow:0 -10px 40px rgba(0,0,0,.4);
  }
  .cookie-banner.show{ transform:translateY(0); }
  .cookie-banner-inner{
    max-width:1160px; margin:0 auto; display:flex; align-items:center; justify-content:space-between;
    gap:24px; flex-wrap:wrap;
  }
  .cookie-banner-inner p{ margin:0; font-size:13.5px; color:var(--text-soft); line-height:1.6; flex:1; min-width:240px;}
  .cookie-link{ background:none; border:none; color:#fff; text-decoration:underline; cursor:pointer; padding:0; font-size:13.5px; }
  .cookie-banner-actions{ display:flex; gap:10px; flex-shrink:0; }
  @media (max-width:600px){
    .cookie-banner-inner{ flex-direction:column; align-items:stretch; }
    .cookie-banner-actions{ justify-content:stretch; }
    .cookie-banner-actions .btn{ flex:1; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1080px){
    .why-grid{ grid-template-columns:repeat(3,1fr); row-gap:30px;}
    .footer-grid{ grid-template-columns:1fr 1fr 1fr; }
  }
  @media (max-width: 980px){
    .testi-track{ grid-template-columns:1fr; }
    .testi-arrow:nth-of-type(1){ display:none; }
    .banner-inner{ grid-template-columns:1fr; }
  }
  @media (max-width: 760px){
    .header-tagline{ display:none; }
    .header-row{ justify-content:space-between; }
    .lang-toggle{ margin-left:0; }
    .hero{ padding-top:4px; }
    .hero-grid-2x2{ margin-top:0; }
    .hero-mobile-title{ display:none; }
    #testimonials{ display:none; }
    #faq{ display:none; }
    .banner--video-only{ padding:4px 0; }

    .hero-mobile-ship-banner{
      position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center;
      gap:7px; margin:0; padding:9px 14px; border-radius:999px;
      background-color:rgba(20,19,23,.8);
      background-image:linear-gradient(90deg, rgba(232,178,58,.14), rgba(232,178,58,.06));
      backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
      border:1px solid rgba(232,178,58,.35); color:var(--gold);
    }
    .hero-mobile-ship-banner svg{ flex-shrink:0; }
    .hero-mobile-ship-banner b{ font-size:11.5px; font-weight:800; text-transform:uppercase; color:#fff; letter-spacing:.02em; }
    .hero-mobile-ship-banner span:not(.hero-mobile-ship-shine){ font-size:11.5px; color:var(--gold); font-weight:600; }
    .hero-mobile-ship-shine{
      position:absolute; top:0; left:-60%; width:35%; height:100%; pointer-events:none;
      background:linear-gradient(75deg, transparent, rgba(255,255,255,.35), transparent);
      animation:infobarShine 4s ease-in-out infinite;
    }
    @media (prefers-reduced-motion: reduce){ .hero-mobile-ship-shine{ animation:none; display:none; } }

    .hero-trustrow{ flex-direction:column; align-items:stretch; gap:14px; margin:4px auto 0; padding:0; border-top:none; }
    .hero-trust-item{ border-right:none; padding:0; justify-content:center; }
    .hero-trust-item:not(.hero-trust-item--seal){ display:none; }
    .hero-trust-item--seal{ margin:0; padding:14px 20px; }
    .hero-trust-item--seal .stars{ font-size:15px; }
    .hero-trust-item--seal b{ font-size:13px; letter-spacing:.06em; }
    .hero-infobar{ display:none; }
  }
  @media (max-width: 930px){
    .hero-infobar{ display:none; }
  }
  @media (max-width: 760px){

    /* Hero-Kacheln: Foto oben, Karten-Inhalt darunter — auf allen Größen
       gleich strukturiert, hier nur kompaktere Maße für schmale Spalten. */
    .hero-tile-media{ aspect-ratio:4/3; }
    .hero-tile-content{ flex-direction:column; align-items:stretch; padding:11px 12px 13px; gap:8px; border-radius:0 0 14px 14px; }
    .hero-tile-bottom{ justify-content:space-between; }
    .hero-tile-name{ font-size:16px; }
    .hero-tile-sub{ font-size:9.5px; }
    .hero-tile-price{ font-size:19px; }
    .hero-tile-bottom .btn{ padding:9px 14px; font-size:11px; }

    .why-grid{ grid-template-columns:repeat(2,1fr); }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .shoe-strip.video-wrap{ aspect-ratio:1920/520; }
    .carousel-arrow{ width:34px; height:34px; }
    .form-grid2, .form-grid3{ grid-template-columns:1fr; }
    .drawer{ width:100vw; max-width:100vw; }
    .pay-badges{ gap:10px; }
  }
  @media (max-width: 480px){
    .header-tagline{ display:none; }
    .why-grid{ grid-template-columns:1fr 1fr; }
    .hero-price{ font-size:26px; }
    .hero-tile-content{ padding:9px 10px 11px; gap:7px; }
    .hero-tile-name{ font-size:13.5px; }
    .hero-tile-sub{ font-size:8px; }
    .hero-tile-price{ font-size:15px; }
    .hero-tile-bottom{ gap:6px; }
    .hero-tile-bottom .btn{ padding:7px 11px; font-size:9.5px; }
    .hero-tile-bottom .btn svg{ display:none; }
    .modal{ padding:20px 10px calc(20px + env(safe-area-inset-bottom, 0)); }
    .modal-card{ padding:24px 20px; border-radius:16px; }
    .modal-card h3{ font-size:24px; }
    .quick-size-grid{ grid-template-columns:repeat(4,1fr); }
    .footer-grid{ grid-template-columns:1fr; }
  }
  @media (prefers-reduced-motion: reduce){ *{ transition:none !important; } }