/* ============================================================
   CROSSOVER X — shop.css  |  THE TREASURE VAULT
   Manga/Shonen Stil — Schwarz-Weiß Kontrast, Comic-Panels
   ============================================================ */

:root {
    --sh-black:  #000;
    --sh-white:  #fff;
    --sh-red:    #e81c23;
    --sh-yellow: #ffd700;
    --sh-border: 4px solid #000;
    --sh-border-thick: 6px solid #000;
    --sh-gap: clamp(6px, 1.2vw, 12px);
    --sh-font-bang:   'Bangers', cursive;
    --sh-font-marker: 'Permanent Marker', cursive;
    --sh-font-body:   'Inter', sans-serif;
}

/* ============================================================
   INTRO VIDEO
   ============================================================ */
.sh-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s ease;
}
.sh-intro.done { opacity: 0; pointer-events: none; }
.sh-intro-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.sh-intro-veil {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}
.sh-intro-veil.active { opacity: 1; }

/* ============================================================
   PAGE BASE
   ============================================================ */
.sh-page {
    background: #fff;
    overflow-x: hidden;
}

/* Halftone dot pattern */
.sh-halftone {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.10) 1px, transparent 1px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 1;
}

/* Speed line video — shared */
.sh-speedvid {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* ============================================================
   BUTTONS — shared
   ============================================================ */
.sh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sh-font-bang);
    font-size: clamp(16px, 2vw, 20px);    /* mobile: 16px war zu klein */
    letter-spacing: 0.1em;
    text-decoration: none;
    border: var(--sh-border);
    padding: 12px 28px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--sh-black);
    transition: transform 0.1s, box-shadow 0.1s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.sh-btn:hover  { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--sh-black); }
.sh-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--sh-black); }
.sh-btn--red    { background: var(--sh-red);    color: #fff; }
.sh-btn--yellow { background: var(--sh-yellow); color: var(--sh-black); }
.sh-btn--sm { font-size: clamp(16px, 1.8vw, 20px); padding: 12px 28px; }

/* Hero buttons — noch größer */
.sh-btn--hero {
    font-size: clamp(20px, 2.5vw, 26px) !important;   /* mobile: 20px */
    padding: 18px 40px !important;
    box-shadow: 5px 5px 0 var(--sh-black) !important;
}
.sh-btn--hero:hover {
    transform: translate(-4px,-4px) !important;
    box-shadow: 9px 9px 0 var(--sh-black) !important;
}

.sh-btn-deko {
    width: 32px; height: auto;
    pointer-events: none;
    flex-shrink: 0;
}

/* ============================================================
   NEWS TICKER
   ============================================================ */
.sh-ticker {
    background: var(--sh-black);
    border-bottom: 4px solid var(--sh-yellow);
    height: 42px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 20;
}
.sh-ticker-inner { overflow: hidden; width: 100%; }
.sh-ticker-track {
    display: inline-flex;
    animation: shTicker 40s linear infinite;
    white-space: nowrap;
}
.sh-ticker-track span {
    font-family: var(--sh-font-body);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sh-yellow);
    padding: 0 36px;
}
.sh-ticker-track span::before {
    content: '◆';
    color: var(--sh-red);
    margin-right: 36px;
}
@keyframes shTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO
   ============================================================ */
.sh-hero {
    position: relative;
    min-height: clamp(460px, 65vh, 680px);
    background: #fff;
    border-bottom: var(--sh-border-thick);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.sh-hero-videobg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sh-hero-videobg .sh-speedvid { opacity: 0.16; }
.sh-hero-videobg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.6) 55%,
        rgba(232,28,35,0.06) 100%);
}

/* Floating deko */
.sh-hero-bubble {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    height: auto;
}
.sh-hero-bubble--a {
    width: clamp(65px, 11vw, 130px);
    top: 10%; right: 42%;
    animation: shFloat 4s ease-in-out infinite;
}
.sh-hero-bubble--b {
    width: clamp(50px, 8vw, 100px);
    bottom: 20%; right: 22%;
    animation: shFloat 5.5s ease-in-out infinite 1.2s;
}
.sh-hero-bubble--c {
    width: clamp(55px, 9vw, 110px);
    top: 22%; right: 30%;
    animation: shFloat 3.8s ease-in-out infinite 2s;
}
.sh-hero-deko { position: absolute; pointer-events: none; z-index: 2; }
/* Stars — clearly left of title, not overlapping */
.sh-hero-deko--star {
    width: clamp(100px, 14vw, 200px);
    top: 5%; left: 1%;
    animation: shFloat 3.5s ease-in-out infinite 0.5s;
}
.sh-hero-deko--star2 {
    width: clamp(72px, 10vw, 140px);
    top: 44%; left: 0%;
    animation: shFloat 4.5s ease-in-out infinite 1.8s;
}
.sh-hero-deko--star3 {
    width: clamp(60px, 9vw, 120px);
    bottom: 8%; left: 0%;
    animation: shFloat 5s ease-in-out infinite 0.8s;
}
/* POW — rechts, groß, dominant */
.sh-hero-deko--pow {
    width: clamp(140px, 21vw, 280px);
    top: 2%; right: 36%;
    z-index: 4;
    animation: shFloat 3s ease-in-out infinite 1s;
    filter: drop-shadow(4px 4px 10px rgba(0,0,0,0.4));
}
.sh-hero-deko--pow2 {
    width: clamp(90px, 14vw, 175px);
    bottom: 15%; right: 42%;
    z-index: 3;
    opacity: 0.85;
    animation: shFloat 4s ease-in-out infinite 2.5s;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.25));
}

/* NEU: SCHATZTRUHE — schwebt zentral zwischen den Speed-Line-Streifen im
   Hero-Video-Hintergrund. z-index 6: über POW/Bubbles (4/5), unter den
   Charakteren/Content (8/10), damit sie nicht den Haupttext verdeckt.
   FIX: war ~5x zu klein und rechtslastig statt mittig — jetzt deutlich
   größer und auf Desktop/Tablet echt zentriert (50%/50%). Auf Mobile
   bleibt die rechtslastige Position bewusst erhalten (war laut Feedback
   schon gut), nur die Größe wurde leicht erhöht. */
.sh-hero-chest {
    position: absolute;
    z-index: 6;
    pointer-events: none;
    height: auto;
    width: clamp(280px, 34vw, 560px);
    top: 36%;
    left: 36%;
    transform: translate(-50%, -50%) rotate(-3deg);
    animation: shFloat 4.2s ease-in-out infinite 0.6s;
    filter: drop-shadow(4px 6px 14px rgba(0,0,0,0.35));
}
@media (max-width: 991px) {
    .sh-hero-chest {
        width: clamp(220px, 32vw, 380px);
        top: 38%;
        left: 38%;
    }
}
@media (max-width: 768px) {
    /* Rechtslastige Mobile-Position bewusst beibehalten — nur größer + etwas höher */
    .sh-hero-chest {
        width: clamp(95px, 26vw, 160px);
        left: 66%;
        top: 36%;
    }
}
@media (max-width: 480px) {
    .sh-hero-chest {
        width: clamp(80px, 28vw, 125px);
        left: 68%;
        top: 32%;
    }
}

@media (max-width: 768px) {
    .sh-hero-deko--pow   { display: none; }
    .sh-hero-deko--pow2  { display: none; }
    .sh-hero-deko--star3 { display: none; }
    .sh-hero-deko--star  { width: clamp(60px, 15vw, 90px); left: 0; }
    .sh-hero-deko--star2 { width: clamp(44px, 11vw, 70px); left: 0; }
    /* Hero content full width on mobile */
    .sh-hero-content { padding: 48px 20px 40px; max-width: 100%; }
    /* Info strip vertical on mobile — bigger */
    .sh-info-label { font-size: clamp(20px, 5vw, 32px); }
    .sh-info-text  { font-size: clamp(14px, 3.5vw, 18px); }
    .sh-info-icon  { font-size: clamp(32px, 8vw, 48px); }
    /* CTA trust signals vertical */
    .sh-cta-trust { flex-direction: column; align-items: center; gap: 12px; }
    /* Mega button full width */
    .sh-cta-mega-btn { width: 100%; max-width: 100%; }
    .sh-mega-btn-text { font-size: clamp(24px, 6vw, 36px); }
    /* FIX: "WARTE NICHT LÄNGER!"-Sprechblase war auf Mobile am unteren
       Min-Wert eingefroren (160px/14px) — jetzt spürbar größer */
    .sh-cta-bubble-wrap { width: clamp(210px, 42vw, 280px); }
    .sh-cta-speech-txt  { font-size: clamp(17px, 4.5vw, 22px); }
    /* Sticky bar */
    .sh-sticky-label { font-size: clamp(16px, 4vw, 22px); }
}
.sh-hero-char {
    position: absolute;
    pointer-events: none;
    z-index: 8;    /* above everything including video overlay */
    height: auto;
}
.sh-hero-char--right {
    width: clamp(130px, 23vw, 310px);
    bottom: 0; right: 2%;
    opacity: 0.94;
    filter: drop-shadow(3px 0 12px rgba(0,0,0,0.25));
}
.sh-hero-char--left {
    width: clamp(90px, 15vw, 210px);
    bottom: 0; right: calc(2% + clamp(130px, 23vw, 310px) + 6px);
    opacity: 0.82;
    filter: drop-shadow(-3px 0 10px rgba(0,0,0,0.2));
    transform: scaleX(-1);
}
@media (max-width: 768px) {
    .sh-hero-char--left  { display: none; }
    .sh-hero-char--right { width: clamp(90px, 26vw, 170px); opacity: 0.55; }
}

@keyframes shFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%       { transform: translateY(-12px) rotate(2deg); }
}

/* Hero content */
.sh-hero-content {
    position: relative;
    z-index: 10;
    padding: clamp(60px, 9vh, 120px) clamp(24px, 6vw, 80px);
    max-width: 700px;
}
.sh-hero-eyebrow {
    font-family: var(--sh-font-body);
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 900;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--sh-red);
    border: 2px solid var(--sh-red);
    display: inline-block;
    padding: 5px 16px;
    margin-bottom: 14px;
    background: #fff;
}
.sh-hero-title {
    display: flex;
    flex-direction: column;
    margin: 0 0 14px;
    line-height: 0.88;
}
.sh-title-the {
    font-family: var(--sh-font-bang);
    font-size: clamp(40px, 5vw, 64px);    /* mobile: 40px war zu klein */
    letter-spacing: 0.12em;
    color: var(--sh-black);
}
.sh-title-treasure {
    font-family: var(--sh-font-bang);
    font-size: clamp(72px, 10vw, 130px);  /* mobile: 72px */
    letter-spacing: 0.04em;
    color: var(--sh-red);
    -webkit-text-stroke: 2px var(--sh-black);
    text-shadow: 4px 4px 0 #000, 7px 7px 0 rgba(0,0,0,0.12);
    line-height: 0.85;
}
.sh-title-vault {
    font-family: var(--sh-font-bang);
    font-size: clamp(56px, 8vw, 104px);   /* mobile: 56px */
    letter-spacing: 0.08em;
    color: var(--sh-yellow);
    -webkit-text-stroke: 3px var(--sh-black);
    text-shadow: 3px 3px 0 #000, 6px 6px 0 rgba(0,0,0,0.15);
    line-height: 0.88;
}
.sh-hero-tagline {
    font-family: var(--sh-font-marker);
    font-size: clamp(16px, 2.2vw, 24px);   /* größer */
    color: #222;
    margin: 0 0 32px;
    position: relative;
    display: inline-block;
}
.sh-hero-tagline::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; right: 0;
    height: 3px;
    background: var(--sh-red);
    transform: skewX(-6deg);
}
.sh-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero button size override */
.sh-btn--hero {
    font-size: clamp(17px, 2.2vw, 24px) !important;
    padding: 16px 36px !important;
    box-shadow: 5px 5px 0 var(--sh-black) !important;
}
.sh-btn--hero:hover {
    transform: translate(-4px,-4px) !important;
    box-shadow: 9px 9px 0 var(--sh-black) !important;
}

/* ============================================================
   KATEGORIEN — 4 Panels
   ============================================================ */
.sh-kategorien {
    border-top: var(--sh-border-thick);
    border-bottom: var(--sh-border-thick);
    background: var(--sh-black);
    padding: var(--sh-gap);
}
.sh-kat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sh-gap);
}
/* Mobile: single column */
@media (max-width: 991px) {
    .sh-kat-grid { grid-template-columns: 1fr; }
}

.sh-kat-panel {
    position: relative;
    display: block;
    overflow: hidden;
    border: var(--sh-border);
    box-shadow: 5px 5px 0 var(--sh-black);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    text-decoration: none;
    background: #f0f0f0;
}
.sh-kat-panel:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--sh-black);
}
.sh-kat-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.sh-kat-panel:hover .sh-kat-img { transform: scale(1.02); }

.sh-kat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    transition: background 0.2s;
}
.sh-kat-panel:hover .sh-kat-overlay { background: rgba(0,0,0,0.3); }
.sh-kat-cta {
    font-family: var(--sh-font-bang);
    font-size: clamp(14px, 2vw, 22px);
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--sh-red);
    padding: 7px 18px;
    border: 3px solid #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s;
    display: block;
}
.sh-kat-panel:hover .sh-kat-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRODUKT PANELS
   ============================================================ */
.sh-produkte {
    background: var(--sh-black);
    border-top: var(--sh-border-thick);
    padding: var(--sh-gap) 10%;   /* 10% links/rechts auf Desktop */
}
@media (max-width: 768px) {
    .sh-produkte { padding: var(--sh-gap); }
}

/* Divider Header — volle Breite, als comic-Panel-Leiste */
.sh-produkte-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 48px);
    padding: clamp(20px, 4vh, 40px) 10%;   /* aligned with panels */
    background: var(--sh-black);
    position: relative;
    border-bottom: var(--sh-border);
    margin-bottom: var(--sh-gap);
}
@media (max-width: 768px) {
    .sh-produkte-header { padding: clamp(16px,3vh,32px) var(--sh-gap); }
}
.sh-prod-deko {
    width: clamp(70px, 11vw, 130px);    /* größer */
    height: auto;
    pointer-events: none;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 4px rgba(255,255,255,0.1));
}
.sh-top-angebot-img {
    height: clamp(48px, 8vh, 90px);
    width: auto;
}

.sh-prod-panel {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: var(--sh-border);          /* Rahmen rundherum */
    box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
    margin-bottom: var(--sh-gap);      /* Abstand zwischen Panels */
}
.sh-prod-panel--featured { }

/* NEU / BRANDNEU Badge — 4x größer */
.sh-prod-panel::before {
    content: attr(data-badge);
    position: absolute;
    top: 20px; right: 0;
    font-family: var(--sh-font-bang);    /* Bangers statt Inter */
    font-size: clamp(18px, 2.5vw, 28px); /* war 10px — jetzt 4x größer */
    letter-spacing: 0.12em;
    color: #fff;
    background: var(--sh-red);
    padding: 8px 28px 8px 18px;         /* mehr Padding */
    z-index: 10;
    clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -3px 3px 0 rgba(0,0,0,0.3);
    line-height: 1;
}
.sh-prod-panel[data-badge="BRANDNEU"]::before {
    background: #00aa44;
    font-size: clamp(16px, 2.2vw, 24px);
}

.sh-prod-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    margin: 0 auto;
}
.sh-prod-panel:hover .sh-prod-img { transform: scale(1.01); }

.sh-prod-bar {
    background: var(--sh-black);
    padding: clamp(16px, 2.5vh, 28px) clamp(20px, 3vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.sh-prod-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sh-prod-tag {
    font-family: var(--sh-font-bang);
    font-size: clamp(16px, 2vw, 22px);
    letter-spacing: 0.12em;
    color: var(--sh-black);
    background: var(--sh-yellow);
    padding: 4px 14px;
}
.sh-prod-tag--red { background: var(--sh-red); color: #fff; }
.sh-prod-name {
    font-family: var(--sh-font-body);
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 700;
    color: #fff;
}
.sh-prod-price {
    font-family: var(--sh-font-bang);
    font-size: clamp(22px, 2.8vw, 36px);
    letter-spacing: 0.08em;
    color: var(--sh-yellow);
}

/* ============================================================
   COMIC STRIP
   ============================================================ */
.sh-comic-strip {
    border-top: var(--sh-border-thick);
    border-bottom: var(--sh-border-thick);
    background: var(--sh-black);
    position: relative;
    overflow: hidden;
    padding: var(--sh-gap) 10%;   /* gleiche Linie wie die Panels */
}
@media (max-width: 768px) {
    .sh-comic-strip { padding: var(--sh-gap); }
}
.sh-strip-inner {
    position: relative;
    border: var(--sh-border);  /* Rahmen ums Strip-Bild */
}
/* NEU: 2 eigenständige Blöcke (je Bild + eigener Button) — Abstand zwischen ihnen */
.sh-strip-block + .sh-strip-block {
    margin-top: var(--sh-gap);
}
.sh-strip-img {
    display: block;
    width: 100%;
    height: auto;
}
.sh-strip-cta-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: clamp(16px, 3vh, 32px) clamp(16px, 3vw, 32px);
    background: var(--sh-black);
    border-top: var(--sh-border);
}
.sh-strip-cta-wrap .sh-btn {
    font-size: clamp(20px, 2.8vw, 30px) !important;
    padding: 18px 48px !important;
    box-shadow: 6px 6px 0 rgba(255,255,255,0.15) !important;
}
/* FIX: Button auf Mobile kleiner + zentriert (vorher zu groß / wirkte nicht mittig) */
@media (max-width: 768px) {
    .sh-strip-cta-wrap {
        justify-content: center;
    }
    .sh-strip-cta-wrap .sh-btn {
        font-size: clamp(14px, 4vw, 18px) !important;
        padding: 10px 22px !important;
        box-shadow: 4px 4px 0 rgba(255,255,255,0.15) !important;
    }
    .sh-strip-cta-wrap .sh-btn-deko {
        width: 20px;
    }
}

/* ============================================================
   PRE-ORDER SECTION
   ============================================================ */
.sh-preorder {
    position: relative;
    background: var(--sh-black);
    border-top: var(--sh-border-thick);
    overflow: hidden;
}
.sh-preorder-videobg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sh-preorder-videobg .sh-speedvid {
    opacity: 0.10;
    filter: saturate(1.3);
}

/* Deko characters */
.sh-preorder-char {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    height: auto;
    opacity: 0.55;
}
.sh-preorder-char--left {
    width: clamp(80px, 14vw, 200px);
    bottom: 0; left: 1%;
}
.sh-preorder-char--right {
    width: clamp(80px, 14vw, 200px);
    bottom: 0; right: 1%;
}

.sh-preorder-wrap { display: none; } /* removed - form is on vorbestellung.html */

/* Centered pre-order info */
.sh-preorder-center {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(48px, 8vh, 100px) clamp(20px, 5vw, 60px);
}

/* Info left */
.sh-preorder-info { color: #fff; }
.sh-preorder-bubble {
    width: clamp(70px, 12vw, 130px);
    margin-bottom: 14px;
    animation: shFloat 4.5s ease-in-out infinite;
}
.sh-preorder-title {
    font-family: var(--sh-font-bang);
    font-size: clamp(36px, 7vw, 90px);
    letter-spacing: 0.06em;
    color: var(--sh-yellow);
    -webkit-text-stroke: 1px var(--sh-yellow);
    text-shadow: 3px 3px 0 rgba(255,215,0,0.15);
    margin: 0 0 8px;
    line-height: 0.9;
}
.sh-preorder-sub {
    font-family: var(--sh-font-marker);
    font-size: clamp(13px, 1.6vw, 17px);
    color: rgba(255,255,255,0.7);
    margin: 0 0 24px;
    line-height: 1.5;
}
.sh-preorder-feats {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sh-preorder-feats li {
    font-family: var(--sh-font-body);
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}
.sh-feat-icon { font-size: 16px; flex-shrink: 0; }
.sh-preorder-zoom {
    width: clamp(60px, 10vw, 120px);
    margin-top: 20px;
    animation: shFloat 3.5s ease-in-out infinite 1s;
}

/* ============================================================
   QUEST LOG FORM
   ============================================================ */
.sh-questlog {
    background: rgba(255,255,255,0.98);
    border: var(--sh-border-thick);
    box-shadow: 8px 8px 0 var(--sh-yellow);
    position: relative;
    overflow: hidden;
}

.sh-ql-header {
    background: var(--sh-black);
    padding: 12px 20px;
    border-bottom: var(--sh-border);
}
.sh-ql-sys {
    font-family: var(--sh-font-body);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: rgba(255,215,0,0.55);
    text-transform: uppercase;
    margin-bottom: 3px;
}
.sh-ql-title {
    font-family: var(--sh-font-bang);
    font-size: clamp(16px, 2.2vw, 26px);
    letter-spacing: 0.12em;
    color: var(--sh-yellow);
}

.sh-ql-body {
    padding: clamp(14px, 2.5vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Product Options */
.sh-ql-section { display: flex; flex-direction: column; gap: 6px; }
.sh-ql-label {
    font-family: var(--sh-font-body);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--sh-red);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.sh-prod-options { display: flex; flex-direction: column; gap: 6px; }

.sh-prod-option {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #ddd;
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}
.sh-prod-option:hover { border-color: var(--sh-black); background: #f9f9f9; }
.sh-prod-option input[type="radio"] { display: none; }
.sh-prod-option:has(input:checked) {
    border-color: var(--sh-red);
    background: rgba(232,28,35,0.04);
}
.sh-prod-opt-inner { flex: 1; }
.sh-prod-opt-name {
    font-family: var(--sh-font-body);
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 700;
    color: var(--sh-black);
}
.sh-prod-opt-meta {
    display: flex;
    gap: 12px;
    margin-top: 2px;
    flex-wrap: wrap;
}
.sh-prod-opt-price {
    font-family: var(--sh-font-bang);
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--sh-red);
    letter-spacing: 0.06em;
}
.sh-prod-opt-avail {
    font-family: var(--sh-font-body);
    font-size: 11px;
    font-weight: 600;
    color: #666;
}
.sh-prod-opt-avail strong { color: var(--sh-black); }

.sh-prod-opt-check {
    width: 24px; height: 24px;
    flex-shrink: 0;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: transparent;
    transition: all 0.15s;
    background: #f8f8f8;
}
.sh-prod-option:has(input:checked) .sh-prod-opt-check {
    background: var(--sh-red);
    border-color: var(--sh-red);
    color: #fff;
}

/* Form rows */
.sh-ql-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 480px) { .sh-ql-row { grid-template-columns: 1fr; } }
.sh-ql-field { display: flex; flex-direction: column; gap: 3px; }
.sh-ql-field--sm { max-width: 110px; }

.sh-ql-input {
    background: #f8f8f8;
    border: 2px solid var(--sh-black);
    padding: 9px 12px;
    font-family: var(--sh-font-body);
    font-size: clamp(12px, 1.3vw, 14px);
    color: var(--sh-black);
    outline: none;
    transition: border-color 0.15s, background 0.15s;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
}
.sh-ql-input:focus { border-color: var(--sh-red); background: #fff; }
.sh-ql-textarea { resize: vertical; min-height: 70px; }

.sh-ql-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.sh-ql-check-wrap input { display: none; }
.sh-ql-checkbox {
    width: 20px; height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--sh-black);
    background: #f8f8f8;
    margin-top: 1px;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-ql-check-wrap input:checked ~ .sh-ql-checkbox {
    background: var(--sh-red);
    border-color: var(--sh-red);
}
.sh-ql-check-wrap input:checked ~ .sh-ql-checkbox::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.sh-ql-check-text {
    font-family: var(--sh-font-body);
    font-size: 12px;
    color: #333;
    line-height: 1.5;
}
.sh-ql-check-text a { color: var(--sh-red); font-weight: 700; }

/* SHAZAM! */
.sh-shazam {
    position: relative;
    width: 100%;
    font-family: var(--sh-font-bang);
    font-size: clamp(17px, 2.2vw, 24px);
    letter-spacing: 0.1em;
    color: var(--sh-black);
    background: var(--sh-yellow);
    border: var(--sh-border);
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 5px 5px 0 var(--sh-black);
    transition: transform 0.08s, box-shadow 0.08s;
    overflow: hidden;
    margin-top: 4px;
}
.sh-shazam:hover {
    transform: translate(-3px,-3px);
    box-shadow: 8px 8px 0 var(--sh-black);
    animation: shShake 0.35s ease;
}
.sh-shazam:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--sh-black); }
.sh-shazam.fired  { background: var(--sh-red); color: #fff; }
.sh-shazam-txt { position: relative; z-index: 2; pointer-events: none; }
.sh-shazam-fx  { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

@keyframes shShake {
    0%,100% { transform: translate(-3px,-3px) rotate(0deg); }
    25%      { transform: translate(-3px,-3px) rotate(-0.8deg); }
    75%      { transform: translate(-3px,-3px) rotate(0.8deg); }
}

.sh-ql-note {
    font-family: var(--sh-font-body);
    font-size: 11px;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
}

/* Success */
.sh-ql-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 48px 20px;
    text-align: center;
}
.sh-ql-success.visible { display: flex; }
.sh-success-bolt { font-size: 56px; }
.sh-success-title {
    font-family: var(--sh-font-bang);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 0.08em;
    color: var(--sh-red);
}
.sh-success-text {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.sh-success-quote {
    font-family: var(--sh-font-marker);
    font-size: 13px;
    color: #888;
}

/* ============================================================
   INFO STRIP
   ============================================================ */
.sh-info {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-top: var(--sh-border-thick);
}
@media (max-width: 700px) {
    .sh-info { flex-direction: column; }
    .sh-info-div { width: 100%; height: 4px; }
}
.sh-info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(32px, 5vh, 64px) clamp(12px, 2vw, 24px);
    text-align: center;
    transition: background 0.2s;
}
.sh-info-item:hover { background: #f5f5f5; }
.sh-info-div {
    width: 4px;
    background: var(--sh-black);
    flex-shrink: 0;
}
.sh-info-icon { font-size: clamp(36px, 5vw, 52px); }
.sh-info-label {
    font-family: var(--sh-font-bang);
    font-size: clamp(18px, 2.2vw, 28px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sh-red);
    line-height: 1;
}
.sh-info-text {
    font-family: var(--sh-font-body);
    font-size: clamp(14px, 1.4vw, 17px);
    color: #333;
    line-height: 1.5;
    font-weight: 600;
}

/* ============================================================
   STICKY PRE-ORDER — Mobile
   ============================================================ */
.sh-sticky {
    display: none;
    position: fixed;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    font-family: var(--sh-font-bang);
    font-size: 16px;
    letter-spacing: 0.12em;
    color: var(--sh-black);
    background: var(--sh-yellow);
    border: var(--sh-border);
    padding: 11px 26px;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--sh-black);
    white-space: nowrap;
    animation: shStickyBob 2s ease-in-out infinite;
}
@media (max-width: 768px) { .sh-sticky { display: block; } }
.sh-sticky.hidden { display: none !important; }
@keyframes shStickyBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.sh-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.sh-anim.in { opacity: 1; transform: translateY(0); }
.sh-anim-d1 { transition-delay: 0.1s; }
.sh-anim-d2 { transition-delay: 0.2s; }
.sh-anim-d3 { transition-delay: 0.3s; }

/* ============================================================
   BIG CTA SECTION
   ============================================================ */
.sh-cta-section {
    position: relative;
    background: var(--sh-black);
    border-top: var(--sh-border-thick);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: clamp(80px, 14vh, 200px);   /* breathing room to footer */
}
.sh-cta-videobg { position:absolute;inset:0;z-index:0; }
.sh-cta-videobg .sh-speedvid { opacity:0.13; filter:saturate(1.4); }

/* Deko — bigger */
.sh-cta-deko {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    height: auto;
}
.sh-cta-deko--tl { width:clamp(90px,14vw,180px); top:5%;  left:3%;  transform:rotate(-12deg); animation:shFloat 4s ease-in-out infinite; }
.sh-cta-deko--tr { width:clamp(75px,11vw,150px); top:4%;  right:4%; transform:rotate(8deg);   animation:shFloat 5s ease-in-out infinite 1s; }
.sh-cta-deko--br { width:clamp(65px,10vw,130px); bottom:6%; right:2%; transform:rotate(18deg); animation:shFloat 3.5s ease-in-out infinite 0.5s; }

/* Characters */
.sh-cta-char {
    position: absolute;
    bottom: 0;
    z-index: 3;
    height: auto;
    pointer-events: none;
}
.sh-cta-char--left {
    width: clamp(120px,20vw,300px);
    left: 1%;
    opacity: 0.85;
    filter: drop-shadow(4px 0 12px rgba(0,0,0,0.4));
}
.sh-cta-char--right {
    width: clamp(120px,20vw,300px);
    right: 1%;
    opacity: 0.85;
    filter: drop-shadow(-4px 0 12px rgba(0,0,0,0.4));
}
@media (max-width: 768px) {
    .sh-cta-char { display: none; }  /* chars hidden on mobile — too cramped */
}

/* Content — more breathing room between elements */
.sh-cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(56px,10vh,120px) clamp(20px,5vw,60px) clamp(40px,6vh,80px);
    max-width: 780px;
    gap: clamp(24px, 4vh, 40px);   /* real breathing room */
}

/* Speech bubble — much bigger */
.sh-cta-bubble-wrap {
    position: relative;
    width: clamp(160px, 22vw, 280px);   /* 2x bigger */
    align-self: center;
    animation: shFloat 4s ease-in-out infinite;
}
.sh-cta-speech-img { width:100%; height:auto; }
.sh-cta-speech-txt {
    position: absolute;
    inset: 14% 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sh-font-bang);
    font-size: clamp(14px, 2vw, 22px);   /* bigger text in bubble */
    letter-spacing: 0.06em;
    color: var(--sh-black);
    line-height: 1.2;
    text-align: center;
}

/* Title */
/* FIX: Wrapper hatte keinen eigenen Abstand — Eyebrow-Badge, Titel und
   Untertext klebten aneinander (Titel/Sub haben margin:0). */
.sh-cta-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vh, 20px);
}
.sh-cta-eyebrow {
    font-family: var(--sh-font-body);
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 900;
    letter-spacing: 0.35em;
    color: var(--sh-yellow);
    border: 2px solid rgba(255,215,0,0.4);
    padding: 5px 18px;
}
.sh-cta-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    gap: 2px;
}
.sh-cta-t1 {
    font-family: var(--sh-font-bang);
    font-size: clamp(44px, 7vw, 96px);
    letter-spacing: 0.08em;
    color: var(--sh-white);
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
.sh-cta-t2 {
    font-family: var(--sh-font-bang);
    font-size: clamp(56px, 9vw, 120px);
    letter-spacing: 0.05em;
    color: var(--sh-yellow);
    -webkit-text-stroke: 3px var(--sh-black);
    text-shadow: 4px 4px 0 rgba(0,0,0,0.6), 0 0 40px rgba(255,215,0,0.3);
    animation: shGlow 2s ease-in-out infinite;
}
@keyframes shGlow {
    0%,100% { text-shadow: 4px 4px 0 rgba(0,0,0,0.6), 0 0 20px rgba(255,215,0,0.2); }
    50%      { text-shadow: 4px 4px 0 rgba(0,0,0,0.6), 0 0 50px rgba(255,215,0,0.5); }
}

/* Sub text — bigger */
.sh-cta-sub {
    font-family: var(--sh-font-marker);
    font-size: clamp(15px, 1.8vw, 20px);
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.7;
}

/* THE MEGA BUTTON */
.sh-cta-mega-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--sh-yellow);
    border: var(--sh-border-thick);
    padding: clamp(20px,3vh,32px) clamp(40px,6vw,80px);
    box-shadow: 6px 6px 0 var(--sh-black), 0 0 40px rgba(255,215,0,0.3);
    transition: transform 0.1s, box-shadow 0.1s, background 0.15s;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    animation: shWiggle 3s ease-in-out 2s 3;
}
.sh-cta-mega-btn:hover {
    transform: translate(-4px,-4px) scale(1.02);
    box-shadow: 10px 10px 0 var(--sh-black), 0 0 60px rgba(255,215,0,0.5);
    background: #ffe033;
}
.sh-cta-mega-btn:active {
    transform: translate(3px,3px) scale(0.98);
    box-shadow: 2px 2px 0 var(--sh-black);
}
@keyframes shWiggle {
    0%,100% { transform: rotate(0deg) scale(1); }
    15%      { transform: rotate(-2deg) scale(1.02); }
    30%      { transform: rotate(2deg) scale(1.02); }
    45%      { transform: rotate(-1deg) scale(1.01); }
    60%      { transform: rotate(1deg) scale(1.01); }
}

.sh-mega-btn-text {
    font-family: var(--sh-font-bang);
    font-size: clamp(26px, 4.5vw, 52px);
    letter-spacing: 0.1em;
    color: var(--sh-black);
    position: relative;
    z-index: 2;
    line-height: 1;
}
.sh-mega-btn-sub {
    font-family: var(--sh-font-body);
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.55);
    position: relative;
    z-index: 2;
}

/* Trust signals — bigger, more space */
.sh-cta-trust {
    display: flex;
    gap: clamp(16px, 4vw, 48px);
    flex-wrap: wrap;
    justify-content: center;
    padding-top: clamp(8px, 1.5vh, 16px);
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}
.sh-cta-trust span {
    font-family: var(--sh-font-body);
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   STICKY BAR
   ============================================================ */
.sh-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--sh-black);
    border-top: 4px solid var(--sh-yellow);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.sh-sticky-bar.visible { transform: translateY(0); }
.sh-sticky-bar.dismissed { display: none; }

.sh-sticky-bar-inner {
    display: flex;
    align-items: center;
    gap: clamp(10px,2vw,24px);
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px clamp(16px,3vw,32px);
}

.sh-sticky-char {
    height: 64px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(2px 0 6px rgba(0,0,0,0.5));
}
@media (max-width: 540px) { .sh-sticky-char { display: none; } }

.sh-sticky-bar-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sh-sticky-label {
    font-family: var(--sh-font-bang);
    font-size: clamp(14px,2vw,20px);
    letter-spacing: 0.1em;
    color: var(--sh-yellow);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sh-sticky-sub {
    font-family: var(--sh-font-body);
    font-size: clamp(10px,1vw,12px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.sh-sticky-bar-btn {
    flex-shrink: 0;
    font-family: var(--sh-font-bang);
    font-size: clamp(13px,1.8vw,18px);
    letter-spacing: 0.1em;
    color: var(--sh-black);
    background: var(--sh-yellow);
    border: var(--sh-border);
    padding: 10px clamp(16px,2.5vw,28px);
    text-decoration: none;
    box-shadow: 3px 3px 0 rgba(255,255,255,0.2);
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.sh-sticky-bar-btn:hover { background: #ffe033; transform: translateY(-2px); }
.sh-sticky-bar-btn:active { transform: translateY(1px); }

.sh-sticky-close {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    line-height: 1;
}
.sh-sticky-close:hover { color: #fff; border-color: rgba(255,255,255,0.6); }