/* ===================================
   SCHLAGER – STYLES
   Klassischer Schlager. Emotion. Gänsehaut.
   =================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF6B00;
    --orange-light: #FF8C33;
    --orange-glow: rgba(255, 107, 0, 0.3);
    --yellow: #FFD600;
    --yellow-soft: #FFF3B0;
    --blue: #00B4D8;
    --blue-dark: #0077B6;
    --sand: #F5E6C8;
    --sand-dark: #E8D4A8;
    --malle-sky: #1B7FC3;
    --malle-ocean: #0E5F8A;
    --malle-sunset: #FF8A47;
    --dark: #1A0E04;
    --dark-card: rgba(30, 15, 5, 0.85);
    --dark-surface: rgba(40, 20, 8, 0.9);
    --gray: #A0907A;
    --gray-light: #D4C8B8;
    --white: #FFFFFF;
    --success: #00C853;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px var(--orange-glow);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='30' y='35' text-anchor='middle' font-size='16' opacity='0.04'%3E🌴%3C/text%3E%3C/svg%3E");
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.text-center { text-align: center; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.section-sub {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    background: var(--dark-surface);
    color: var(--gray-light);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: var(--radius-lg);
}

.btn-block { width: 100%; }

.btn-arrow {
    width: 20px;
    height: 20px;
}

.btn-header {    background: linear-gradient(135deg, var(--orange), var(--orange-light));    color: var(--white);    padding: 0.6rem 1.5rem;    font-size: 0.9rem;    border-radius: 50px;    box-shadow: 0 4px 20px var(--orange-glow);}
.btn-header:hover {    transform: translateY(-2px);    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);}

/* --- PROMO BANNER --- */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #C2185B, #E91E63);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: default;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}
.promo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.promo-banner-cta {
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(26, 14, 4, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}
.no-promo .header { top: 0; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon { font-size: 1.5rem; }
.logo-img { height: 2rem; width: auto; object-fit: contain; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    top: 3px;
}

.logo-dot { color: var(--orange); }

.header-nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}
.header-nav a {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.header-nav a:hover { color: var(--orange); }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4.5rem;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(27, 127, 195, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 138, 71, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 214, 0, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, rgba(14, 95, 138, 0.15) 0%, var(--dark) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 680px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 0, 0.2);
    margin-bottom: 1rem;
}

.hero-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-play-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-body);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 2;
}

.hero-play-overlay:hover {
    background: rgba(255, 107, 0, 0.8);
}

.hero-play-overlay.playing {
    background: var(--orange);
}

.hero-play-icon {
    font-size: 0.85rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-light);
    margin-bottom: 1rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 0.95rem;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}

.hero-audio {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin: 0 auto 2.5rem;
    max-width: 480px;
}

.audio-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.audio-player {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

.hero-cta {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px var(--orange-glow); }
    50% { box-shadow: 0 4px 40px rgba(255, 107, 0, 0.6); }
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.trust-icon { font-size: 1.1rem; }

/* --- PROOF BAR (Marquee) --- */
.proof-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(10, 5, 2, 0.85);
    border-top: 1px solid rgba(255, 107, 0, 0.15);
    padding: 0.75rem 0;
    overflow: hidden;
}

.proof-marquee {
    overflow: hidden;
    width: 100%;
}

.proof-marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 50s linear infinite;
    width: max-content;
}

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

.proof-notification {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.proof-dot--green {
    background: #4CAF50;
}

.proof-dot--blue {
    background: #2196F3;
}

.proof-dot--yellow {
    background: #FFD600;
}

.proof-dot--orange {
    background: var(--orange);
}

/* --- EMOTIONAL --- */
.emotional {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.emotional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.emotional-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.emotional-occasions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
}

.occasion-tag {
    padding: 0.65rem 1.25rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
    cursor: default;
}
.occasion-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 0, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
    transform: translateY(-2px);
}

.emoji-scene {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
}

.scene-main {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.scene-sub {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--orange);
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 6rem 0;
    padding-top: calc(6rem + 50px);
    background:
        linear-gradient(180deg, rgba(26, 14, 4, 0.85), rgba(26, 14, 4, 0.80)),
        url('../bilder/gruppenfoto.webp') center center / cover no-repeat;
    border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    flex-grow: 1;
}

.step-connector {
    display: flex;
    align-items: center;
    align-self: center;
    padding-top: 4rem;
    color: var(--orange);
    width: 40px;
    flex-shrink: 0;
}

/* --- VINYL RECORD PLAYER --- */
.vinyl-player {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem 2rem;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.vinyl-disc {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5efe6 22%, #e8e0d0 23%, #2a2a2a 24%, #1a1a1a 45%, #2a2a2a 46%, #1a1a1a 65%, #2a2a2a 66%, #1a1a1a 85%, #222 86%, #111 100%);
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vinyl-disc.spinning {
    animation: vinylSpin 2s linear infinite;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(60, 60, 60, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.vinyl-groove-1 { width: 70%; height: 70%; }
.vinyl-groove-2 { width: 55%; height: 55%; }
.vinyl-groove-3 { width: 85%; height: 85%; }

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5efe6, #e8dcc8);
    border: 3px solid rgba(100, 160, 200, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.7rem;
    color: #333;
    font-weight: 600;
}

.vinyl-controls {
    padding: 0 0.5rem;
}

.vinyl-progress-bar {
    width: 100%;
    height: 4px;
    background: #e0ddd8;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0.4rem;
}

.vinyl-progress-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
}

.vinyl-progress-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    z-index: 1;
}

.vinyl-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 1rem;
}

.vinyl-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.vinyl-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: var(--transition);
    padding: 0.3rem;
}

.vinyl-btn:hover {
    color: #333;
}

.vinyl-btn-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.vinyl-btn-play:hover {
    transform: scale(1.08);
    color: var(--white) !important;
}

/* --- TESTIMONIALS (Horizontal Scroll) --- */
.testimonials {
    padding: 6rem 0;
}

.testimonial-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card-h {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-video-card {
    flex-shrink: 0;
    width: 260px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.testimonial-video-card .testimonial-video-placeholder {
    aspect-ratio: 3 / 4;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}

.testimonial-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-video-wrap video.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-video-wrap .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-video-wrap.playing .video-play-btn {
    opacity: 0;
}

.testimonial-card-footer {
    padding: 0.75rem 1rem;
}

.testimonial-card-footer .author-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-card-footer .author-detail {
    font-size: 0.75rem;
    color: var(--gray);
}

.testimonial-review-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: normal;
    white-space: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-detail {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- TESTIMONIAL LAYOUT --- */
.testimonial-carousel {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 0, 0.3);
    background: rgba(26, 14, 4, 0.85);
    color: var(--orange);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.carousel-arrow:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.carousel-arrow-left { left: -56px; }
.carousel-arrow-right { right: -56px; }

/* --- WHAT YOU GET --- */
/* Song Page Section */
.song-page-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(14, 95, 138, 0.08), rgba(255, 107, 0, 0.06));
    border-top: 1px solid rgba(255, 107, 0, 0.08);
}

.song-page-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.song-page-phone {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    border: 4px solid #333;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,107,0,0.1);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}

.phone-screen {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 36px;
    overflow: hidden;
    background: var(--dark);
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-page-content {
    max-width: 520px;
}

.song-page-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.song-page-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.song-page-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.song-page-feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.song-page-features strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.song-page-features p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ---- PRICING SECTION ---- */
.pricing-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.02), rgba(255, 107, 0, 0.05));
    text-align: center;
}

.pricing-section .section-title {
    margin-bottom: 0.2rem;
}

.pricing-section .section-sub {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--gray-light);
}

.pricing-card {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(30, 15, 5, 0.85);
    background-image: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.01));
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gradient border via pseudo-element */
    border: none;
    z-index: 0;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2.5px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light), rgba(255, 214, 0, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: -2;
}

.pricing-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-price-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.12));
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}


.pricing-compare {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3.25rem;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 400px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.4;
}

.pricing-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    stroke: var(--orange);
    margin-top: 2px;
}

.pricing-card .btn {
    margin-top: 0.25rem;
    width: 100%;
    max-width: 340px;
}

.pricing-trust {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 0;
    }

    .pricing-card {
        padding: 1.5rem 1.25rem 1.25rem;
        margin: 0 1rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }
}

/* ---- PLAKETTE LANDING SECTION ---- */
.plakette-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.04), rgba(14, 95, 138, 0.06));
}

.plakette-section .section-title { margin-bottom: 0.25rem; }
.plakette-section .section-sub { margin-bottom: 0; }

.plakette-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery: main image + thumbs */
.plakette-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plakette-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
}

.plakette-dimensions {
    text-align: right;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    margin: -0.4rem 1.2rem 0 0;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.plakette-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.plakette-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.6rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    line-height: 1;
    padding: 0 0 2px 0;
}

.plakette-arrow:hover {
    background: rgba(255, 107, 0, 0.6);
    border-color: var(--orange);
}

.plakette-arrow-left { left: 10px; }
.plakette-arrow-right { right: 10px; }

/* Placeholder for "Dein Bild" */
.plakette-main-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    aspect-ratio: 1;
    color: var(--gray);
    padding: 2rem;
    text-align: center;
}

.plakette-main-placeholder-icon { font-size: 2.5rem; }

.plakette-main-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-light);
}

.plakette-main-placeholder small {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Thumbnail row */
.plakette-thumbs {
    display: flex;
    gap: 0.5rem;
}

.plakette-thumb {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.plakette-thumb:hover {
    border-color: rgba(255, 107, 0, 0.35);
    background: rgba(255, 107, 0, 0.05);
}

.plakette-thumb.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.2);
}

.plakette-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.plakette-thumb span {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
}

.plakette-thumb.active span { color: var(--orange); }

/* Upload placeholder thumb */
.plakette-thumb-upload {
    justify-content: center;
    min-height: 0;
}

.plakette-thumb-upload-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.1rem;
}

/* Right info column */
.plakette-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.plakette-badge {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 214, 0, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.plakette-desc {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.plakette-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.plakette-highlights li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.plakette-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* Legacy price card - kept for other pages */
.wyg-price-card {
    background: var(--dark-surface);
    border: 2px solid var(--orange);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.price-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

/* --- BONUS --- */
.bonus-section {
    padding: 4rem 0;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(255, 214, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.bonus-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.bonus-hashtag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 6px;
    color: var(--orange);
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1rem;
}

.bonus-reward {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.bonus-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.5rem 1rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
}

/* --- QUESTIONNAIRE --- */
.questionnaire {
    padding: 9rem 0 1.5rem;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08), rgba(26, 14, 4, 0.95));
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    scroll-margin-top: 6rem;
}
.no-promo .questionnaire { padding-top: 6.5rem; }

.questionnaire > .container {
    width: 100%;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem 1.5rem;
    overflow: visible;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: 4px;
    width: 20%;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    color: var(--gray);
    transition: var(--transition);
}

.progress-step.active {
    background: var(--orange);
    color: var(--white);
}

.progress-step.done {
    background: var(--success);
    color: var(--white);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
    overflow: visible;
}

.form-step.active {
    display: block;
    min-height: 0;
    overflow: visible;
}

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

.form-step-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-input::placeholder {
    color: var(--gray);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.4rem;
    line-height: 1.5;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B8BA3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-input option {
    background: var(--dark-surface);
    color: var(--white);
}

/* Option Cards (Radio) */
.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.option-card {
    cursor: pointer;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    min-height: 80px;
    line-height: 1.3;
}

.option-card:hover .option-content {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange);
    box-shadow: 0 0 16px var(--orange-glow);
}

/* Toggle Buttons (Multi-Select) */
.toggle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.toggle-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.toggle-grid-2 .toggle-btn {
    justify-content: center;
    text-align: center;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
}

/* Voice Column Layout (Step 5) */
.voice-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.voice-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.voice-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding-left: 2px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(255,107,0,0.3);
    flex-shrink: 0;
}
.voice-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255,107,0,0.5);
}
.voice-play-btn.playing {
    background: var(--dark-surface);
}
.voice-progress-wrap {
    display: none;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 180px;
}
.voice-progress-wrap.active {
    display: flex;
}
.voice-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.voice-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.15s linear;
}
.voice-progress-time {
    font-size: 0.7rem;
    color: var(--gray-light);
    min-width: 28px;
}
.voice-preview-credit {
    font-size: 0.65rem;
    color: var(--gray-light);
    text-align: center;
    line-height: 1.3;
    opacity: 0.8;
}

.toggle-btn {
    padding: 0.6rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.3;
}

.toggle-btn:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.toggle-btn.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange);
    box-shadow: 0 0 16px var(--orange-glow);
}

.sonstiges-input {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.sonstiges-input.visible {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.75rem;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.form-input.error {
    border-color: #FF4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

/* Order Summary */
.order-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.summary-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gray-light);
}

.summary-price {
    font-weight: 700;
    color: var(--white);
}

.summary-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.75rem 0;
}

.summary-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.summary-total .summary-price {
    color: var(--orange);
    font-size: 1.2rem;
}

/* Fake-Rabatt: durchgestrichener Originalpreis */
.summary-price-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Add-on Checkboxen (Song-Express, Streaming) */
.summary-addon {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    margin: 0.6rem 0;
    background: rgba(255, 107, 0, 0.04);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.summary-addon:hover {
    border-color: rgba(255, 107, 0, 0.35);
    background: rgba(255, 107, 0, 0.08);
}

.addon-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.addon-checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: 2px;
}

.addon-checkbox-input:checked ~ .addon-checkmark {
    background: var(--orange);
    border-color: var(--orange);
}

.addon-checkbox-input:checked ~ .addon-checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
}

.addon-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.addon-info strong {
    font-size: 0.95rem;
    color: var(--white);
}

.addon-info small {
    font-size: 0.8rem;
    color: var(--gray-light);
    line-height: 1.3;
}

.addon-price {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.95rem;
    white-space: nowrap;
    margin-top: 2px;
}

.addon-badge {
    font-weight: 700;
    color: var(--success);
    font-size: 0.8rem;
    white-space: nowrap;
    background: rgba(0, 200, 83, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-top: 2px;
}

.summary-addon:has(.addon-checkbox-input:checked) {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.1);
}

/* Plakette Add-on with image */
.summary-addon-plakette {
    flex-wrap: wrap;
}

.addon-content-wrap {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
}

.addon-content-wrap .addon-info {
    flex: 1;
    min-width: 150px;
}

.addon-content-wrap .addon-price {
    margin-top: 2px;
}

.addon-plakette-img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    margin: 0.5rem auto 0;
    display: block;
}

/* Streaming included state (when plakette is selected) */
.addon-included {
    pointer-events: none;
    position: relative;
}

.addon-included .addon-checkmark,
.addon-included .addon-info,
.addon-included .addon-price {
    opacity: 0.35;
}

.addon-included .addon-price {
    display: none;
}

.addon-included-badge {
    display: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    white-space: nowrap;
    margin-top: 2px;
}

.addon-included .addon-included-badge {
    display: inline-block;
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.video-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: -5px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.video-lightbox-close:hover {
    opacity: 1;
}

.video-lightbox-player {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    background: #000;
}

/* Review Audio Play Button states (alte Pulse-Animation deaktiviert — neuer scrub-player macht das Visuelle) */
.review-play-btn.playing {
    background: var(--orange);
}

.btn-checkout {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.15rem;
}

/* Toggle max-reached state */
.toggle-btn.max-reached {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
}

/* Error highlight for toggle grids */
.toggle-grid.error-highlight {
    border: 2px solid #FF4444;
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

/* Tip Box */
.tip-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 214, 0, 0.08);
    border: 1px solid rgba(255, 214, 0, 0.25);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.tip-box-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tip-box-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--yellow);
    line-height: 1.4;
}

/* --- FAQ --- */
.faq {
    padding: 6rem 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
    padding: 1.25rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--gray-light);
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
    transition: var(--transition);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-answer {
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 214, 0, 0.08));
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.15), transparent 70%);
}

.final-cta .container {
    position: relative;
}

.final-cta .section-sub {
    margin-bottom: 2rem;
}

/* --- FOOTER --- */
.footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-tagline {
    width: 100%;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- LEGAL PAGE --- */
.legal-section h2 { margin-bottom: 1.5rem; }
.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--orange);
}
.legal-section p,
.legal-section ul {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.legal-section ul {
    padding-left: 1.5rem;
}
.legal-section li {
    margin-bottom: 0.4rem;
}
.legal-section a {
    color: var(--orange);
    text-decoration: underline;
}
.legal-section a:hover {
    color: var(--orange-light);
}

/* --- VIDEO PLACEHOLDER (Emotional Section) --- */
.video-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(14, 95, 138, 0.15));
    border: 2px dashed rgba(255, 107, 0, 0.3);
    border-radius: var(--radius-xl);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 20px var(--orange-glow);
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.video-placeholder-text {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* --- TESTIMONIAL VIDEO PLACEHOLDERS --- */
.testimonial-video-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(14, 95, 138, 0.1));
    border: 1px dashed rgba(255, 107, 0, 0.25);
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.testimonial-video-placeholder .video-play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.video-placeholder-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- GUARANTEE SECTION --- */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), rgba(255, 214, 0, 0.05));
}

.guarantee-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(255, 214, 0, 0.05));
    border: 2px solid rgba(0, 200, 83, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.guarantee-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.guarantee-badge-item {
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 500;
}

/* --- CARD BACKGROUNDS WITH MALLE WARMTH --- */
.testimonial-card-h {
    background: linear-gradient(135deg, rgba(40, 20, 8, 0.9), rgba(30, 15, 5, 0.85));
}

.step-card {
    background: linear-gradient(135deg, rgba(40, 20, 8, 0.8), rgba(30, 15, 5, 0.7));
    border: 1px solid rgba(255, 107, 0, 0.08);
}

.occasion-tag {
    background: rgba(40, 20, 8, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.12);
}

.hero-audio {
    background: rgba(40, 20, 8, 0.85);
    border: 1px solid rgba(255, 107, 0, 0.15);
}

.form-wrapper {
    background: rgba(40, 20, 8, 0.9);
    border: 1px solid rgba(255, 107, 0, 0.12);
}

.footer {
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

/* --- COOKIE CONSENT BANNER --- */
/* Keine transition: jede Transition in Kombination mit backdrop-filter verursacht
   in Chromium einen Rendering-Bug (Banner bleibt trotz gesetzter Klasse unsichtbar).
   Banner ist daher sofort sichtbar sobald das Element appended wird. */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 5, 2, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 1.25rem 1.5rem;
}

.cookie-banner.visible {
    /* Idempotent: Banner ist per Default schon sichtbar. Klasse bleibt fuer
       Backwards-Compat mit bestehenden consent.js-Aufrufen. */
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--orange-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

/* Accept = dominanter Primaer-CTA (gross, orange-filled, subtle glow) */
.cookie-btn-accept {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    white-space: nowrap;
}

.cookie-btn-accept:hover {
    background: var(--orange-light);
    box-shadow: 0 6px 22px rgba(255, 107, 0, 0.5);
}

.cookie-btn-accept:active {
    transform: translateY(1px);
}

/* Reject = dezenter Text-Link (anklickbar + erreichbar, visuell sekundaer) */
.cookie-btn-reject-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 400;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.15s;
}

.cookie-btn-reject-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* --- DECORATIVE: SUNSET GLOW (Hero) --- */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 450px;
    background: radial-gradient(ellipse, rgba(255, 214, 0, 0.1) 0%, rgba(255, 138, 71, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* --- DECORATIVE: WAVE DIVIDER (Hero → How-it-Works) --- */
.how-it-works {
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -49px;
    left: 0;
    right: 0;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 50' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 25 C360 0, 540 50, 720 25 C900 0, 1080 50, 1440 25 L1440 50 L0 50 Z' fill='%231A0E04'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* --- DECORATIVE: FLOATING MUSICAL NOTES --- */
.hero-notes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-note {
    position: absolute;
    width: 28px;
    height: 28px;
    opacity: 0;
    animation: floatNote 10s ease-in-out infinite;
}

.hero-note-1 { left: 5%; bottom: 35%; animation-delay: 0s; }
.hero-note-2 { left: 12%; bottom: 20%; animation-delay: 2s; }
.hero-note-3 { left: 20%; bottom: 50%; animation-delay: 4.5s; }
.hero-note-4 { right: 8%; bottom: 30%; animation-delay: 1.5s; }
.hero-note-5 { right: 18%; bottom: 55%; animation-delay: 5s; }
.hero-note-6 { left: 30%; bottom: 15%; animation-delay: 7s; width: 22px; height: 22px; }
.hero-note-7 { right: 25%; bottom: 25%; animation-delay: 3.5s; width: 20px; height: 20px; }

@keyframes floatNote {
    0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
    10%  { opacity: 0.22; }
    80%  { opacity: 0.18; }
    100% { opacity: 0; transform: translateY(-150px) rotate(20deg); }
}

/* --- DECORATIVE: SAND GRADIENT (Section bottoms) --- */
.emotional {
    position: relative;
}

.emotional::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(245, 230, 200, 0.035));
    pointer-events: none;
    z-index: 0;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(245, 230, 200, 0.04));
    pointer-events: none;
}

/* --- DECORATIVE: COCKTAIL DIVIDER --- */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 0;
    color: var(--orange);
    opacity: 0.18;
}

.divider-svg {
    width: 280px;
    height: 30px;
}

/* ============================
   FRAGEBOGEN v3 — NEW STYLES
   ============================ */

/* Progress Header */
.progress-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* Form Step Sub-heading */
.form-step-sub {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
}

/* Anlass Tile Grid */
.toggle-grid-anlass {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.toggle-btn-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.85rem 0.75rem;
    min-height: 68px;
    text-align: center;
}

.tile-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.tile-label {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Interstitial Screens */
.interstitial .interstitial-content {
    text-align: center;
    padding: 2rem 0;
}

.interstitial-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--orange);
    margin-bottom: 2rem;
}

.interstitial-sub {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.interstitial-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 320px;
    margin: 0 auto;
}

.interstitial-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-light);
}

.interstitial-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.interstitial-trust {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--yellow);
}

/* Inline Value Props (dezente Leiste unter Titel) */
.value-props-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.value-prop-item {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Field Errors */
.field-error {
    font-size: 0.8rem;
    color: #FF4444;
    margin-top: 0.35rem;
    min-height: 0;
    display: none;
}

.field-error:not(:empty) {
    display: block;
}

.field-char-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0.35rem;
}
.field-char-info .field-error {
    margin-top: 0;
}
.char-counter {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}
.field-hint {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
    flex: 1;
    margin-right: 0.5rem;
}
.product-muttertag .field-hint { color: rgba(50, 30, 20, 0.6); }
.form-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    line-height: 1.5;
}
.form-tip-icon {
    flex-shrink: 0;
}

/* Textarea Meta (counter + encouragement) */
.textarea-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.35rem;
    gap: 0.5rem;
}

.char-counter {
    font-size: 0.75rem;
    color: var(--gray);
    flex-shrink: 0;
}

.encouragement {
    font-size: 0.8rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.enc-hint {
    color: var(--gray);
}

.enc-positive {
    color: var(--orange-light);
}

.enc-success {
    color: var(--success);
}

/* Soft-Nudge Modal */
.nudge-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nudge-modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.nudge-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.nudge-modal-overlay.visible .nudge-modal {
    transform: scale(1);
}

.nudge-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #FF6B00;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.nudge-modal-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.nudge-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nudge-btn-add {
    width: 100%;
}

.nudge-btn-skip {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #999;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nudge-btn-skip:hover {
    color: #ccc;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Songtitel Chips */
.songtitel-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.songtitel-chip {
    padding: 0.5rem 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.songtitel-chip:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.songtitel-chip.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange);
    box-shadow: 0 0 16px var(--orange-glow);
}

/* Summary Card */
.summary-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-row-edit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-row-edit:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    min-width: 70px;
    flex-shrink: 0;
}

.summary-value {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-light);
    word-break: break-word;
}

.summary-edit-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.summary-edit-btn:hover {
    opacity: 1;
}

/* Upsell Section */
.upsell-section {
    margin-bottom: 1.5rem;
}

.upsell-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.upsell-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.upsell-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.03);
}

.upsell-card.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.08);
}

.upsell-card-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upsell-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.upsell-icon-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
}


.upsell-info {
    flex: 1;
}

.upsell-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.upsell-info small {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

.upsell-popular {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 214, 0, 0.15));
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    margin-left: 0.4rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.upsell-delivery {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.3rem;
    opacity: 0.7;
}

.upsell-price {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.upsell-check {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.upsell-card.active .upsell-check {
    opacity: 1;
    transform: scale(1);
}

/* Price Breakdown */
.price-breakdown {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.price-row-song > span:last-child {
    text-align: right;
    white-space: nowrap;
}

.price-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    padding-top: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.price-new {
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
}

.price-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.12));
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: var(--success);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    margin-right: 0.35rem;
    vertical-align: middle;
    letter-spacing: 0.02em;
}

.price-free {
    color: #4CAF50;
    font-weight: 600;
}

.price-countdown {
    padding: 0.3rem 0 0.5rem;
    font-size: 0.8rem;
    line-height: 1.5;
}

.price-countdown-text {
    color: rgba(255, 255, 255, 0.6);
}

.price-countdown-timer {
    color: #4CAF50;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.price-countdown-after {
    color: var(--gray);
    font-size: 0.75rem;
}


/* ---- Legal Checkbox Shake ---- */
.legal-checkbox-shake {
    animation: checkboxShake 0.5s ease;
}
.legal-checkbox-shake span,
.legal-checkbox-shake input {
    color: #FF2D2D !important;
    accent-color: #FF2D2D !important;
    transition: color 0.3s ease;
}
@keyframes checkboxShake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-6px); }
    30% { transform: translateX(5px); }
    45% { transform: translateX(-4px); }
    60% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
}

.price-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.5rem 0;
}

/* Social Proof Footer in Form */
.form-social-proof {
    text-align: center;
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

/* Next Button Disabled State */
#nextBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Trust Elements under Checkout */
.trust-elements {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
}

/* Slide Animation Override */
.form-step {
    animation: slideIn 0.3s ease;
}

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

/* ============================
   ANLASS CHANGE WARNING MODAL
   ============================ */
.anlass-warn-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anlass-warn-overlay.visible {
    opacity: 1;
}

.anlass-warn-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255, 180, 0, 0.35);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.anlass-warn-overlay.visible .anlass-warn-modal {
    transform: scale(1);
}

.anlass-warn-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #ffb400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.anlass-warn-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.anlass-warn-text:last-of-type {
    margin-bottom: 2rem;
}

.anlass-warn-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.anlass-warn-btn-change {
    flex: 1;
}

.anlass-warn-btn-keep {
    flex: 1;
}

/* ============================
   FERTIG OVERLAY (Step 6 → 7)
   ============================ */
.fertig-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(30, 15, 10, 0.94);
    opacity: 0;
    animation: fertigFadeIn 0.3s ease forwards;
}

.fertig-overlay.fade-out {
    animation: fertigFadeOut 0.4s ease forwards;
}

.fertig-circle-wrap {
    position: relative;
    width: 110px;
    height: 110px;
}

/* Circle outline — drawn via stroke-dashoffset */
.fertig-circle-wrap .fertig-circle {
    width: 110px;
    height: 110px;
    fill: none;
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 330;
    stroke-dashoffset: 330;
    animation: fertigDrawCircle 0.6s ease 0.2s forwards;
}

/* Checkmark inside — pops after circle is drawn */
.fertig-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    stroke: #22c55e;
    stroke-width: 3.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: fertigPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards;
}

.fertig-text {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22c55e;
    opacity: 0;
    transform: scale(0.7);
    animation: fertigTextPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

@keyframes fertigFadeIn {
    to { opacity: 1; }
}

@keyframes fertigFadeOut {
    to { opacity: 0; }
}

@keyframes fertigDrawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes fertigPop {
    to { transform: translate(-50%, -50%) scale(1); }
}

@keyframes fertigTextPop {
    to { opacity: 1; transform: scale(1); }
}

/* ============================
   RESPONSIVE
   ============================ */

/* --- 1440px: Laptops / kleinere Desktops --- */
@media (max-width: 1440px) {
    .container { max-width: 1060px; }
    .hero { padding: 7rem 0 4rem; }
    .hero-content { padding-bottom: 3rem; }
    .song-page-grid { gap: 3rem; }
    .plakette-grid { max-width: 880px; gap: 2.5rem; }
    .guarantee-card { padding: 2.5rem 2rem; }
    .bonus-card { padding: 2.5rem 2rem; }
}

/* --- 1024px: Tablets Landscape / kleine Laptops --- */
@media (max-width: 1024px) {
    .container { max-width: 920px; padding: 0 1.25rem; }

    .hero { padding: 8rem 0 4rem; }
    .hero-headline { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
    .hero-sub { font-size: 0.9rem; max-width: 480px; }
    .hero-video-wrap { max-width: 580px; }
    .hero::before { width: 500px; height: 350px; }

    .steps-grid { gap: 0.75rem; }
    .step-card { min-width: 180px; padding: 1.5rem 1.25rem; }
    .step-connector { width: 30px; }

    .song-page-grid {
        grid-template-columns: 0.4fr 0.6fr;
        gap: 2.5rem;
    }
    .phone-mockup { width: 240px; height: 480px; }

    .plakette-grid { gap: 2rem; }
    .plakette-main { max-width: 360px; }

    .testimonial-review-card { width: 260px; }
    .testimonial-video-card { width: 240px; }

    .pricing-card { max-width: 500px; }

    /* Form: leicht enger */
    .questionnaire { padding: 7.5rem 0 1.25rem; }
    .form-wrapper { max-width: 600px; padding: 1.5rem 1.75rem 1.25rem; }
    .form-step-title { font-size: 1.45rem; }

    .emotional-desc { font-size: 1rem; }
    .guarantee-card { max-width: 620px; padding: 2.5rem 2rem; }
    .faq-list { max-width: 620px; }

    .footer-links { gap: 1.25rem; }
    .footer-links a { font-size: 0.8rem; }
}

/* --- 768px: Tablets Portrait --- */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .promo-banner { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
    .promo-banner-inner { gap: 0.5rem; }

    .hero { padding: 7.5rem 0 5rem; }
    .hero-notes { display: none; }
    .hero::before { width: 350px; height: 250px; }
    .hero-headline { font-size: 2rem; }
    .hero-sub { font-size: 0.9rem; max-width: 420px; }
    .hero-video-wrap { max-width: 100%; }
    .hero-trust { justify-content: center; gap: 1rem; }
    .trust-item { font-size: 0.8rem; }
    .divider-svg { width: 200px; }

    .emotional-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .emotional-visual { order: -1; }
    .emotional { padding: 4rem 0; }

    .steps-grid { flex-direction: column; align-items: center; }
    .step-card { max-width: 400px; width: 100%; }
    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .how-it-works { padding: 4rem 0; padding-top: calc(4rem + 50px); }

    .song-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .song-page-content { max-width: 100%; }
    .phone-mockup { width: 220px; height: 440px; }
    .song-page-features { text-align: left; }
    .song-page-section { padding: 4rem 0; }

    .plakette-section { padding: 3rem 0; }
    .plakette-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .plakette-main { max-width: 320px; }
    .plakette-info { text-align: center; align-items: center; }
    .plakette-highlights { text-align: left; }

    .carousel-arrow { display: none; }
    .option-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonials { padding: 4rem 0; }
    .testimonial-video-card { width: 220px; }
    .testimonial-review-card { width: 250px; }

    /* --- FRAGEBOGEN: komplett sichtbar auf Tablets --- */
    .questionnaire { padding: 7.5rem 0 1rem; }
    .form-wrapper {
        max-width: 100%;
        margin: 0 0.5rem;
        padding: 1.25rem 1.25rem 1rem;
        border-radius: var(--radius-lg);
    }
    .form-step-title { font-size: 1.35rem; margin-bottom: 1.25rem; }
    .form-step-sub { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .toggle-grid-anlass { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .toggle-btn-tile { padding: 1rem 0.5rem; min-height: 70px; }
    .tile-emoji { font-size: 1.5rem; }
    .toggle-grid-2 { gap: 0.6rem; }
    .toggle-grid-2 .toggle-btn { padding: 0.75rem 0.9rem; font-size: 1rem; }
    .interstitial-title { font-size: 1.4rem; }

    .upsell-card { padding: 0.85rem 1rem; }
    .upsell-card-inner { flex-wrap: wrap; }
    .upsell-price { width: 100%; text-align: right; margin-top: 0.25rem; }
    .upsell-info strong { font-size: 0.85rem; }
    .upsell-info small { font-size: 0.75rem; }

    .summary-card { padding: 1rem; }
    .price-breakdown { padding: 1rem; }

    .form-nav { margin-top: 1.5rem; padding-top: 1.25rem; }
    .btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

    .value-props-inline { gap: 0.4rem 0.75rem; margin-bottom: 1.25rem; }

    /* Plakette-Optionen innerhalb Fragebogen */
    .plakette-template-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
    .plakette-upload-layout { flex-direction: column; }
    .plakette-custom-preview-thumb { width: 100px; }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-banner-text { font-size: 0.8rem; }

    /* Footer */
    .footer-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
    .footer-brand { justify-content: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }

    /* Guarantee & Bonus */
    .guarantee-section { padding: 3.5rem 0; }
    .guarantee-card { padding: 2rem 1.5rem; }
    .bonus-card { padding: 2rem 1.5rem; }

    /* FAQ */
    .faq { padding: 4rem 0; }
    .final-cta { padding: 4rem 0; }
}

/* ---- PLAKETTE BILD-AUSWAHL ---- */
.plakette-options {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.plakette-options.open {
    max-height: 900px;
    opacity: 1;
}

.plakette-options-layout {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.plakette-auswahl {
    flex: 1;
    min-width: 0;
}

.plakette-auswahl-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: var(--white);
}

/* Tabs */
.plakette-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plakette-tab {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--gray-light);
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.plakette-tab:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.plakette-tab.active {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--orange);
    color: var(--orange);
}

.plakette-tab-content {
    display: none;
}

.plakette-tab-content.active {
    display: block;
}

/* Upload Area */
.plakette-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.plakette-upload-area:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.03);
}

.plakette-upload-icon {
    font-size: 1.8rem;
}

.plakette-upload-text {
    font-size: 0.8rem;
    color: var(--gray);
}

.plakette-upload-preview {
    position: relative;
    display: inline-block;
    margin-top: 0.75rem;
    overflow: visible;
}

.plakette-upload-preview img {
    cursor: pointer;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--orange);
    box-shadow: 0 2px 12px rgba(255, 107, 0, 0.2);
    display: block;
}

.plakette-upload-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 26px;
    height: 26px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Upload Layout: Thumbnail + Upload Area side by side */
.plakette-upload-layout {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.plakette-custom-preview-thumb {
    flex-shrink: 0;
    width: 110px;
    cursor: pointer;
}

.plakette-custom-preview-thumb:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
}

.plakette-upload-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.plakette-upload-right .plakette-upload-area {
    flex: 1;
    justify-content: center;
}

.plakette-upload-hint {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    line-height: 1.4;
}

.plakette-upload-hinweis {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--success);
    line-height: 1.4;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 8px;
}

/* Plaketten-Anzahl Dropdown */
.plakette-anzahl-wrapper {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
}

.plakette-anzahl-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plakette-anzahl-select {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.plakette-anzahl-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.plakette-anzahl-select option {
    background: #1a1a2e;
    color: #fff;
}

.plakette-anzahl-hinweis {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* Template Grid */
.plakette-template-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.plakette-template-thumb {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.plakette-template-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.plakette-template-thumb span {
    font-size: 0.7rem;
    color: var(--gray);
}

.plakette-template-thumb:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.plakette-template-thumb.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.25);
}

.plakette-template-thumb.active span {
    color: var(--orange);
}

/* ---- TEMPLATE LIGHTBOX ---- */
.tpl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.tpl-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.tpl-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.tpl-lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 540px;
    width: 90vw;
    z-index: 1;
}

.tpl-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.tpl-lightbox-close:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.tpl-lightbox-img-wrap {
    width: 100%;
    text-align: center;
}

.tpl-lightbox-img-wrap img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.tpl-lightbox-label {
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--white);
}

.tpl-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.tpl-lightbox-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.tpl-lightbox-prev {
    left: -60px;
}

.tpl-lightbox-next {
    right: -60px;
}

.tpl-lightbox-select {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    border-radius: 10px;
    white-space: nowrap;
}

/* Responsive Plakette + Lightbox */
@media (max-width: 768px) {
    .tpl-lightbox-content {
        max-width: 100vw;
        width: 100vw;
        height: 100vh;
        justify-content: center;
        padding: 1rem;
        gap: 1rem;
    }

    .tpl-lightbox-close {
        top: 10px;
        right: 10px;
        z-index: 2;
    }

    .tpl-lightbox-arrow {
        top: auto;
        bottom: 90px;
        transform: none;
        z-index: 2;
    }

    .tpl-lightbox-prev {
        left: 20px;
    }

    .tpl-lightbox-next {
        right: 20px;
    }

    .tpl-lightbox-img-wrap img {
        max-height: 50vh;
        border-radius: var(--radius);
    }
}

@media (max-width: 480px) {
    .plakette-template-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plakette-tabs {
        flex-direction: column;
    }

    .plakette-custom-preview-thumb { width: 90px; }
}

/* ---- PHONE VIDEO PLACEHOLDER ---- */
.phone-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-surface), rgba(26, 14, 4, 0.95));
    gap: 0.75rem;
    z-index: 1;
}

.phone-video-placeholder-icon {
    font-size: 2.5rem;
}

.phone-video-placeholder-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.phone-video-placeholder.hidden {
    display: none;
}

/* ---- EMAIL CAPTURE BLOCK (Zwischenblock nach Step 4) ---- */
.email-capture-block {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    padding: 2rem 0;
}

.email-capture-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.email-capture-inner {
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.email-capture-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.email-capture-sub {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.email-capture-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.email-capture-input {
    text-align: center;
}

.email-capture-btn {
    width: 100%;
}

.email-capture-skip {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.email-capture-skip:hover {
    color: var(--gray-light);
}

/* --- 480px: Smartphones --- */
@media (max-width: 480px) {
    html { font-size: 15px; }

    .container { padding: 0 1rem; }

    .promo-banner { font-size: 0.7rem; padding: 0.35rem 0.5rem; }
    .promo-banner-inner { gap: 0.3rem; }

    .header { top: 30px; padding: 0.75rem 0; }
    .logo-img { height: 1.6rem; }
    .logo-text { font-size: 1.3rem; }
    .btn-header { padding: 0.5rem 1rem; font-size: 0.8rem; }

    .hero { padding: 6.5rem 0 3.5rem; min-height: auto; }
    .hero-content { padding-top: 1rem; padding-bottom: 2rem; }
    .hero-headline { font-size: 1.7rem; letter-spacing: 1px; }
    .hero-sub { font-size: 0.85rem; max-width: 100%; margin-bottom: 1rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
    .hero-cta { font-size: 0.95rem; padding: 0.85rem 2rem; }
    .hero-trust { gap: 0.6rem; }
    .trust-item { font-size: 0.75rem; }
    .trust-icon { font-size: 1rem; }
    .hero-play-overlay { padding: 0.5rem 1rem; font-size: 0.8rem; }

    .section-title { font-size: 1.6rem; }
    .section-sub { font-size: 0.95rem; margin-bottom: 1.5rem; }

    .emotional { padding: 3rem 0; }
    .emotional-desc { font-size: 0.9rem; line-height: 1.7; }
    .occasion-tag { padding: 0.5rem 0.9rem; font-size: 0.8rem; }

    .how-it-works { padding: 3rem 0; padding-top: calc(3rem + 50px); }
    .step-card { padding: 1.5rem 1.25rem; }
    .step-icon { font-size: 2rem; }
    .step-title { font-size: 1.05rem; }
    .step-desc { font-size: 0.85rem; }

    .song-page-section { padding: 3rem 0; }
    .phone-mockup { width: 200px; height: 400px; }
    .song-page-desc { font-size: 1rem; }

    .testimonials { padding: 3rem 0; }
    .testimonial-video-card { width: 200px; }
    .testimonial-review-card { width: 240px; }

    .option-grid { grid-template-columns: 1fr 1fr; }

    /* --- FRAGEBOGEN: Smartphones --- */
    .questionnaire { padding-top: 7rem; padding-bottom: 0.75rem; }
    .form-wrapper {
        margin: 0 0.25rem;
        padding: 1rem 0.85rem 0.85rem;
        border-radius: var(--radius);
    }
    .form-step-title { font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 0.5px; }
    .form-step-sub { font-size: 0.85rem; margin-top: -0.5rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-label { font-size: 0.85rem; }
    .form-input { padding: 0.75rem 0.85rem; font-size: 1rem; }

    .toggle-grid-anlass { gap: 0.5rem; }
    .toggle-btn-tile { padding: 0.85rem 0.4rem; min-height: 65px; gap: 0.3rem; }
    .tile-emoji { font-size: 1.3rem; }
    .tile-label { font-size: 0.78rem; }

    .toggle-grid-2 { gap: 0.5rem; }
    .toggle-grid-2 .toggle-btn { padding: 0.7rem 0.75rem; font-size: 0.9rem; }
    .toggle-btn { padding: 0.5rem 0.85rem; font-size: 0.8rem; }

    .value-props-inline { gap: 0.3rem 0.6rem; margin-bottom: 1rem; padding: 0.3rem 0; }
    .value-prop-item { font-size: 0.68rem; }

    .voice-preview { gap: 0.3rem; }
    .voice-play-btn { width: 32px; height: 32px; font-size: 0.75rem; }
    .voice-preview-credit { font-size: 0.6rem; }
    .voice-progress-wrap { max-width: 150px; }

    .songtitel-chip { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
    .tip-box { padding: 0.75rem 1rem; }
    .tip-box-icon { font-size: 1.2rem; }
    .tip-box-text { font-size: 0.85rem; }

    .interstitial-title { font-size: 1.2rem; }
    .interstitial-sub { font-size: 0.9rem; }

    .summary-card { padding: 0.85rem; }
    .summary-label { font-size: 0.75rem; min-width: 60px; }
    .summary-value { font-size: 0.85rem; }

    .upsell-title { font-size: 1.05rem; }
    .upsell-card { padding: 0.75rem 0.85rem; }
    .upsell-icon { font-size: 1.25rem; }
    .upsell-icon-img { width: 42px; height: 42px; }
    .upsell-info strong { font-size: 0.82rem; }
    .upsell-info small { font-size: 0.72rem; }
    .upsell-price { font-size: 0.85rem; }
    .upsell-popular { font-size: 0.58rem; }
    .upsell-check { width: 18px; height: 18px; font-size: 0.65rem; }

    .price-breakdown { padding: 0.85rem; }
    .price-row { font-size: 0.82rem; }
    .price-total { font-size: 1.05rem; }

    .form-nav { margin-top: 1.25rem; padding-top: 1rem; }
    .form-nav .btn-secondary { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .form-nav .btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
    .btn-checkout { padding: 0.9rem; font-size: 1.05rem; }

    .form-social-proof { font-size: 0.78rem; padding-top: 1rem; }
    .progress-label { font-size: 0.78rem; }

    .email-capture-inner { padding: 1.5rem 1.25rem; }
    .email-capture-title { font-size: 1.3rem; }
    .email-capture-sub { font-size: 0.85rem; }

    .plakette-template-grid { gap: 0.4rem; }
    .plakette-tab { font-size: 0.75rem; padding: 0.5rem 0.4rem; }
    .plakette-auswahl-title { font-size: 0.9rem; }
    .plakette-upload-area { padding: 1rem 0.75rem; }
    .plakette-upload-text { font-size: 0.75rem; }

    /* Legal Checkboxen */
    .legal-checkbox-label { font-size: 0.78rem !important; }

    /* Pricing */
    .pricing-section { padding: 1.5rem 0; }
    .pricing-card { padding: 1.25rem 1rem; margin: 0 0.5rem; }
    .pricing-price { font-size: 2.2rem; }
    .pricing-features li { font-size: 0.82rem; }
    .pricing-badge { font-size: 0.8rem; }

    /* Plakette Landing */
    .plakette-section { padding: 2.5rem 0; }
    .plakette-main { max-width: 280px; }
    .plakette-badge { font-size: 0.8rem; }
    .plakette-desc { font-size: 0.9rem; }
    .plakette-highlights li { font-size: 0.82rem; }

    /* Guarantee */
    .guarantee-section { padding: 3rem 0; }
    .guarantee-card { padding: 1.75rem 1.25rem; }
    .guarantee-desc { font-size: 1rem; }
    .guarantee-badge-item { font-size: 0.78rem; padding: 0.4rem 0.75rem; }

    /* Bonus */
    .bonus-card { padding: 1.75rem 1.25rem; }
    .bonus-title { font-size: 1.8rem; }
    .bonus-desc { font-size: 1rem; }

    /* FAQ */
    .faq { padding: 3rem 0; }
    .faq-question { font-size: 0.95rem; padding: 1rem 0; }
    .faq-answer { font-size: 0.88rem; }

    /* Final CTA */
    .final-cta { padding: 3rem 0; }

    /* Footer */
    .footer { padding: 2rem 0 1.25rem; }
    .footer-tagline { font-size: 0.78rem; }
    .footer-bottom p { font-size: 0.75rem; }

    /* Cookie Banner (Mobile) — Accept prominent, Reject dezent darunter */
    .cookie-banner { padding: 0.9rem 1rem; }
    .cookie-banner-inner { flex-direction: column; gap: 0.75rem; align-items: stretch; }
    .cookie-banner-actions { gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
    .cookie-btn-accept { padding: 0.8rem 1.5rem; font-size: 0.9rem; width: 100%; }
    .cookie-btn-reject-link { font-size: 0.78rem; }

    /* Nudge Modal */
    .nudge-modal { padding: 2rem 1.5rem; }
    .nudge-modal-title { font-size: 1.5rem; }
    .nudge-modal-text { font-size: 0.9rem; }

    /* Anlass Warn Modal */
    .anlass-warn-modal { padding: 2rem 1.5rem; }
    .anlass-warn-title { font-size: 1.4rem; }
}

/* Muttertag & Vatertag Special Badge */
.special-badge {
    display: inline-block;
    margin: 1rem auto 0.5rem;
    padding: 0.45rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 200, 50, 0.12));
    border: 1px solid rgba(255, 165, 0, 0.5);
    color: #ffb347;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.03em;
    text-align: center;
    width: fit-content;
}

.pricing-section .special-badge {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* --- MOBILE HAMBURGER MENU --- */
.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}
.mobile-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--dark-surface);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 107, 0, 0.15);
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--orange);
}
.mobile-menu-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* --- STICKY CTA MOBILE --- */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 0.6rem 1rem;
    background: rgba(26, 14, 4, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}
.sticky-cta-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--orange-glow);
    transition: var(--transition);
    text-decoration: none;
}
.sticky-cta-mobile a:active {
    transform: scale(0.97);
}

/* Show mobile elements at 768px */
@media (max-width: 768px) {
    .mobile-hamburger { display: block; }
    .mobile-menu { display: block; }
    .btn-header { display: none !important; }
    .sticky-cta-mobile { display: block; transition: bottom 0.3s ease; }
    body { padding-bottom: 3.5rem; }
    /* Wenn Cookie-Banner sichtbar ist: Sticky-CTA drueber pushen, sonst verdeckt der Banner
       den einzigen Call-to-Action auf Mobile (→ Conversion-Leak bis Consent). */
        body:has(.cookie-banner) .sticky-cta-mobile { bottom: 8.5rem; }
}

/* Defensive: Sticky-CTA NIEMALS auf Desktop zeigen — falls eine andere Stelle
   display:block setzt (Browser-Cache, JS-Override, externes CSS), gewinnt diese
   Regel via !important + min-width-Query. */
@media (min-width: 769px) {
    .sticky-cta-mobile { display: none !important; }
}

/* ============================================
   PLAKETTEN-KONFIGURATOR MODAL
   ============================================ */

/* --- Modal Overlay --- */
.pk-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pk-modal.open {
    opacity: 1;
    visibility: visible;
}
.pk-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}
.pk-modal-container {
    position: relative;
    width: 95%;
    max-width: 520px;
    max-height: 92vh;
    background: #1a1a2e;
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}
.pk-modal.open .pk-modal-container {
    transform: translateY(0) scale(1);
}

/* --- Modal Header --- */
.pk-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pk-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: var(--white);
    margin: 0;
}
.pk-modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}
.pk-modal-close:hover { color: var(--white); }

/* --- Modal Body (scrollable) --- */
.pk-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    -webkit-overflow-scrolling: touch;
}

/* --- Product Preview --- */
.pk-preview {
    margin-bottom: 1rem;
}
.pk-preview-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.pk-preview-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Cover Image Overlay --- */
.pk-cover-area {
    position: absolute;
    top: 13%;
    left: 27.8%;
    width: 45%;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.pk-cover-area:hover {
    box-shadow: 0 0 0 2px var(--orange), 0 0 20px rgba(255, 107, 0, 0.4);
}
.pk-cover-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pk-cover-hint {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    opacity: 0;
    transition: opacity 0.25s;
    color: white;
    pointer-events: none;
}
/* Desktop: show on hover */
.pk-cover-area:hover .pk-cover-hint {
    opacity: 1;
}
/* Mobile: show briefly via JS class, not permanent */
.pk-cover-hint.pk-hint-flash {
    opacity: 1;
}
.pk-cover-hint span { font-size: 1.3rem; }
.pk-cover-hint small { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; }

/* --- Text Overlays (Title & Widmung) --- */
.pk-text-overlay {
    position: absolute;
    left: 27.5%;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 3px;
    padding: 1px 4px;
    max-width: 42%;
}
.pk-text-overlay:hover {
    background: rgba(255, 107, 0, 0.18);
}
.pk-title-area {
    top: 61.5%;
}
.pk-widmung-area {
    top: 65.5%;
}
.pk-text-display {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.55rem, 2.4vw, 0.85rem);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.pk-text-small {
    font-weight: 500;
    font-size: clamp(0.4rem, 1.7vw, 0.62rem);
    color: #fff;
    opacity: 0.9;
    letter-spacing: -0.2px;
}
.pk-text-input {
    width: 100%;
    background: rgba(0,0,0,0.75);
    border: 1px solid var(--orange);
    border-radius: 3px;
    color: white;
    font-size: clamp(0.5rem, 2.2vw, 0.8rem);
    font-weight: 600;
    padding: 2px 5px;
    outline: none;
    font-family: var(--font-body);
    letter-spacing: -0.3px;
}
.pk-text-input-small {
    font-weight: 500;
    font-size: clamp(0.38rem, 1.6vw, 0.58rem);
    letter-spacing: -0.2px;
}

/* --- Template Selection Strip --- */
.pk-templates {
    margin-bottom: 0.75rem;
}
.pk-templates-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.pk-templates-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,107,0,0.3) transparent;
}
.pk-templates-strip::-webkit-scrollbar { height: 4px; }
.pk-templates-strip::-webkit-scrollbar-thumb { background: rgba(255,107,0,0.3); border-radius: 4px; }

.pk-tpl-btn {
    flex-shrink: 0;
    width: 72px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 6px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray);
}
.pk-tpl-btn img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}
.pk-tpl-btn span {
    font-size: 0.65rem;
    white-space: nowrap;
}
.pk-tpl-btn:hover {
    border-color: rgba(255, 107, 0, 0.4);
}
.pk-tpl-btn.active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
}
.pk-tpl-btn.active span { color: var(--orange); }

/* Upload button in template strip */
.pk-tpl-upload-btn {
    justify-content: center;
    gap: 2px;
}
.pk-tpl-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 1.3rem;
    color: var(--gray);
    transition: var(--transition);
}
.pk-tpl-upload-btn:hover .pk-tpl-upload-icon {
    border-color: var(--orange);
    color: var(--orange);
}

/* --- Scene Switch (Hell/Dunkel Toggle) --- */
.pk-scene-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0;
    margin-top: -0.3rem;
    margin-bottom: 0.15rem;
}
.pk-scene-switch-editor {
    margin-bottom: 0.75rem;
    margin-top: -0.25rem;
}
.pk-scene-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s, text-shadow 0.3s;
    user-select: none;
    min-width: 3.2rem;
}
.pk-scene-label[data-mode="day"] { text-align: right; min-width: 3.8rem; }
.pk-scene-label[data-mode="night"] { text-align: left; }
.pk-scene-label-active {
    color: #fff;
}
.pk-scene-label-active[data-mode="night"] {
    text-shadow: 0 0 8px rgba(255, 200, 50, 0.5);
}
.pk-scene-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    background: linear-gradient(135deg, #87CEEB, #FFD700);
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    padding: 0;
    flex-shrink: 0;
}
.pk-scene-toggle.active {
    background: linear-gradient(135deg, #1a1a3e, #2d1b69);
    box-shadow: 0 0 12px rgba(100, 80, 200, 0.4), inset 0 0 6px rgba(255, 200, 50, 0.15);
}
.pk-scene-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFD700;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s, box-shadow 0.35s;
}
.pk-scene-toggle.active .pk-scene-toggle-knob {
    transform: translateX(22px);
    background: #F5F5DC;
    box-shadow: 0 0 10px rgba(245, 245, 220, 0.6), 0 0 20px rgba(245, 245, 220, 0.2);
}

/* --- Light Option Checkbox --- */
.pk-light-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray-light);
    transition: var(--transition);
}
.pk-light-option:hover {
    border-color: rgba(255,255,255,0.15);
}
.pk-light-option input[type="checkbox"] {
    accent-color: var(--orange);
    flex-shrink: 0;
}

/* --- Modal Footer --- */
.pk-modal-footer {
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.pk-save-btn {
    width: 100%;
    border-radius: 50px;
}

/* --- Crop Modal --- */
.pk-crop-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pk-crop-modal.open {
    opacity: 1;
    visibility: visible;
}
.pk-crop-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}
.pk-crop-container {
    position: relative;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    background: #1a1a2e;
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.pk-crop-container h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--white);
    margin: 0 0 0.25rem;
}
.pk-crop-hint {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}
.pk-crop-wrap {
    width: 100%;
    border-radius: 8px;
    background: #111;
    margin-bottom: 1rem;
}
/* Image must have max-height BEFORE Cropper initializes — this constrains the cropper container size */
.pk-crop-wrap > img {
    display: block;
    max-width: 100%;
    max-height: 50vh;
}
.pk-crop-actions {
    display: flex;
    gap: 0.75rem;
}
.pk-crop-actions .btn {
    flex: 1;
    border-radius: 50px;
}

/* --- Mobile Fullscreen --- */
@media (max-width: 640px) {
    .pk-modal-container {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    .pk-crop-container {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 1rem;
    }
    /* Mobile: hint is hidden by default, JS adds flash class briefly on touch */
    .pk-cover-hint {
        opacity: 0;
    }
    .pk-tpl-btn {
        width: 64px;
    }
}


/* ============================================================
   BUNDLE SELECTION (Step 7 Checkout - Paket-Auswahl)
   ============================================================ */
.bundle-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.bundle-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.35rem 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.bundle-subheading {
    font-size: 0.9rem;
    color: var(--yellow);
    text-align: center;
    margin: 0 0 1.25rem 0;
    font-weight: 500;
}

.bundle-grid {
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-auto-rows bewusst NICHT auf 1fr gesetzt: Zeilen passen sich an Content an. */
    /* Reihe 2 (mit Plakette-Foto) darf hoeher sein als Reihe 1 (ohne Foto). */
    /* Innerhalb EINER Reihe sind Cards via align-items:stretch (default) weiterhin gleich hoch. */
    gap: 1.75rem 1rem;
}

@media (max-width: 640px) {
    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.bundle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: var(--radius);
    background: var(--dark-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    height: 100%;
}

.bundle-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 140, 51, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.bundle-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.bundle-card:has(.bundle-radio:checked) {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.25), 0 8px 24px rgba(255, 107, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(30, 15, 5, 0.9));
}

.bundle-card.bundle-card-popular {
    border-color: var(--yellow);
    transform: scale(1.02);
    overflow: visible;
}

.bundle-card.bundle-card-popular:hover {
    transform: scale(1.02) translateY(-3px);
}

.bundle-card.bundle-card-popular:has(.bundle-radio:checked) {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px rgba(255, 214, 0, 0.35), 0 10px 28px rgba(255, 214, 0, 0.22);
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.1), rgba(255, 107, 0, 0.06), rgba(30, 15, 5, 0.9));
}

.bundle-popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.bundle-card-inner {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    height: 100%;
}

.bundle-icon {
    font-size: 1.85rem;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.1em;
}

.bundle-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
}

.bundle-card-popular .bundle-name {
    color: var(--yellow);
    font-size: 1.15rem;
    font-weight: 800;
}

.bundle-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--gray-light);
    line-height: 1.35;
    flex-grow: 1;
}

.bundle-features li {
    padding: 0;
}

.bundle-features li strong {
    color: var(--white);
    font-weight: 600;
}

.bundle-feature-muted {
    color: var(--gray) !important;
    font-size: 0.75rem !important;
    opacity: 0.8;
    font-style: italic;
}

.bundle-price {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.bundle-price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.01em;
}

.bundle-card-popular .bundle-price-value {
    color: var(--yellow);
    font-size: 1.7rem;
}

.bundle-savings {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(0, 200, 83, 0.12);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
}

.bundle-savings.bundle-savings-highlight {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--dark);
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
}

/* ============================================================
   PLAKETTE CONFIG SECTION (shown when bundle includes plakette)
   ============================================================ */
.plakette-config-section {
    display: block;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 1.1rem 1rem;
    background: rgba(30, 15, 5, 0.6);
    border: 1px solid rgba(255, 140, 51, 0.25);
    border-radius: var(--radius);
    transition: opacity 0.3s ease;
}
/* Deaktiviert-Zustand: sichtbar, aber nicht interaktiv und greyed out */
.plakette-config-section.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    filter: grayscale(0.25);
}

/* Shake-Error auf "Plakette gestalten"-Button */
@keyframes pkTriggerErrorShake {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75%  { transform: translateX(-7px); }
    30%, 60%, 90%  { transform: translateX(7px); }
}
.pk-trigger-btn.pk-trigger-error {
    animation: pkTriggerErrorShake 0.55s cubic-bezier(.36,.07,.19,.97) both;
}
.pk-trigger-btn.pk-trigger-error .pk-trigger-inner {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.35), 0 0 20px rgba(255, 68, 68, 0.4) !important;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.08), rgba(255, 68, 68, 0.02)) !important;
}

.plakette-config-section.is-visible {
    display: block;
}

@keyframes pkConfigFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.plakette-config-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange-light);
    margin: 0 0 0.9rem 0;
    text-align: center;
}

.pk-config-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.pk-config-row:last-child {
    margin-bottom: 0;
}

.pk-config-row > label {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 500;
}

.pk-anzahl-select {
    flex: 1;
    min-width: 150px;
    padding: 0.55rem 0.75rem;
    background: var(--dark-surface);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.pk-anzahl-select:hover,
.pk-anzahl-select:focus {
    border-color: var(--orange);
    outline: none;
}

.pk-trigger-wrap {
    margin-bottom: 0.9rem;
}

/* Reset button defaults - use block + inner span as flex container to avoid button flex quirks */
.pk-trigger-btn {
    width: 100%;
    display: block;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: inherit;
}

.pk-trigger-inner {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, rgba(30, 15, 5, 0.6), rgba(20, 10, 2, 0.8));
    border: 1.5px solid rgba(255, 107, 0, 0.35);
    border-radius: 12px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.pk-trigger-btn:hover .pk-trigger-inner {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(60, 30, 8, 0.7), rgba(40, 20, 5, 0.85));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.2);
}

.pk-trigger-btn:active .pk-trigger-inner {
    transform: translateY(0);
}

.pk-trigger-icon-wrap {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.35);
}

.pk-trigger-icon {
    font-size: 1.3rem;
    line-height: 1;
    filter: brightness(1.15);
}

.pk-trigger-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pk-trigger-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.pk-trigger-sub {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-weight: 400;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pk-trigger-sub.is-configured {
    color: var(--orange-light);
    font-weight: 500;
}

.pk-trigger-arrow {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: transform 0.2s ease;
}

.pk-trigger-arrow svg {
    width: 100%;
    height: 100%;
}

.pk-trigger-btn:hover .pk-trigger-arrow {
    transform: translateX(4px);
}

/* Hide legacy status ID if still present in DOM */
.pk-trigger-status {
    display: none !important;
}

.pk-light-row {
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    margin-top: 0.25rem;
}

.pk-light-label {
    display: flex !important;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.4;
    width: 100%;
}

.pk-light-label input[type="checkbox"] {
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.pk-led-rabatt {
    color: var(--success);
    font-weight: 600;
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .bundle-card-inner {
        padding: 1rem 0.85rem;
    }
    .bundle-icon { font-size: 1.6rem; }
    .bundle-price-value { font-size: 1.35rem; }
    .bundle-card-popular .bundle-price-value { font-size: 1.5rem; }
    .bundle-card.bundle-card-popular { transform: scale(1); }
    .bundle-card.bundle-card-popular:hover { transform: translateY(-3px); }
    .pk-config-row {
        flex-direction: column;
        align-items: stretch;
    }
    .pk-trigger-status {
        margin-left: 0;
    }
}

/* === TRUST BULLETS UNDER BUNDLES === */
.trust-bullets {
    margin-top: 1.75rem;
    padding: 1rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
}

.trust-bullet-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.trust-bullet-text {
    line-height: 1.2;
}

@media (max-width: 640px) {
    .trust-bullets {
        gap: 0.75rem 1rem;
        padding: 0.85rem 0.5rem;
    }
    .trust-bullet {
        font-size: 0.82rem;
    }
    .trust-bullet-icon {
        font-size: 1.05rem;
    }
}

/* === ZUFRIEDENHEITSGARANTIE SECTION === */
.guarantee-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.04) 100%);
}

.guarantee-card {
    max-width: 780px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    background: var(--dark-card);
    border: 2px solid rgba(255, 107, 0, 0.18);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.guarantee-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 0, 0.3));
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.6rem 0;
    letter-spacing: 0.01em;
}

.guarantee-text {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.55;
    margin: 0 0 0.5rem 0;
}

.guarantee-text strong {
    color: var(--orange-light);
    font-weight: 700;
}

.guarantee-subtext {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .guarantee-section {
        padding: 2rem 0;
    }
    .guarantee-card {
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    .guarantee-icon {
        font-size: 2.8rem;
    }
    .guarantee-title {
        font-size: 1.25rem;
    }
    .guarantee-text {
        font-size: 0.92rem;
    }
}

/* === TESTIMONIAL VIDEO PLACEHOLDER (Index) === */
.testimonial-video-placeholder-wrap {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(40, 20, 5, 0.7), rgba(20, 10, 2, 0.9)) !important;
    border: 1.5px dashed rgba(255, 107, 0, 0.4);
    border-radius: 12px;
}
.testimonial-video-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
    padding: 1rem;
}
.testimonial-video-placeholder-icon {
    font-size: 2rem;
    opacity: 0.6;
    filter: grayscale(0.3);
    line-height: 1;
}
.testimonial-video-placeholder-text {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

/* --- ABSENDER / BEZIEHUNG (Step 3) + Optionale Extra-Felder (Step 4) --- */
.beziehung-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}
.beziehung-chips .toggle-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.form-label-hint {
    font-weight: 400;
    color: var(--gray-light);
    opacity: 0.8;
    font-size: 0.9em;
    margin-left: 0.25rem;
}
.form-group-absender {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.tip-box-subtle {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.06);
    opacity: 0.9;
}

/* --- BUNDLE-CARD PHOTO (Plakette-Foto oben in Plakette-Bundles) --- */
.bundle-card-with-photo {
    overflow: hidden;
}
.bundle-card-photo {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
}
.bundle-card-photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.bundle-card-with-photo:hover .bundle-card-photo img {
    transform: scale(1.04);
}
@media (max-width: 640px) {
    .bundle-card-photo { height: 180px; }
}
.bundle-card-with-photo .bundle-card-inner {
    padding-top: 0.9rem;
}
/* Popular-Badge soll ueber dem Foto sichtbar bleiben */
.bundle-card-popular.bundle-card-with-photo {
    overflow: visible;
}
/* Bei Foto-Karten das Bild nach unten versetzen damit der */
/* "Am beliebtesten"-Badge nicht ins Produktbild reinragt. */
/* Bewusst auf BEIDEN Plakette-Karten, damit sie gleich aussehen. */
.bundle-card-with-photo .bundle-card-photo {
    padding-top: 1.4rem;
}
/* Badge einen Tick hoeher, damit er genau zentral auf der oberen Kante sitzt */
.bundle-card-popular.bundle-card-with-photo .bundle-popular-badge {
    top: -1rem;
}
.bundle-card-popular.bundle-card-with-photo .bundle-card-photo {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-top-right-radius: calc(var(--radius) - 2px);
}
.bundle-card-with-photo:not(.bundle-card-popular) .bundle-card-photo {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-top-right-radius: calc(var(--radius) - 2px);
}

/* --- BUNDLE-CARDS: Trennstrich/Preisblock auf gleicher Hoehe je Reihe --- */
/* Loesung: Preis-Block bekommt feste Mindesthoehe (damit Karten mit/ohne */
/* savings-badge identisch sind) + Features flex-grow:1 pusht Preis ans Bottom. */
.bundle-grid {
    align-items: stretch;
}
.bundle-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
}
.bundle-features {
    flex-grow: 1;
}
.bundle-price {
    margin-top: 0;
    min-height: 5.25rem;
    justify-content: center;
}
/* Popular-Card hat transform:scale(1.02) => wirkt sowieso leicht groesser. */
/* Min-height BEWUSST gleich halten, damit der Trennstrich pixelgenau auf einer Linie liegt. */
.bundle-card-popular .bundle-price {
    min-height: 5.25rem;
}
@media (max-width: 640px) {
    .bundle-price { min-height: 4.25rem; }
    .bundle-card-popular .bundle-price { min-height: 4.25rem; }
}

/* ===== Summary expand panel (Checkout-Step 'Details' ausklappen) ===== */
.summary-detail-preview {
    display: block;
    word-break: break-word;
}
.summary-expand-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 10px;
    background: transparent;
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.45);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.summary-expand-btn:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.8);
}
.summary-expand-panel {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}
.summary-expand-row {
    padding: 6px 0;
}
.summary-expand-row + .summary-expand-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.summary-expand-row strong {
    color: #ff6b35;
}

/* Error-State: Paket-Auswahl wenn kein Bundle gewaehlt beim Submit */
@keyframes bundleGridErrorShake {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75%  { transform: translateX(-7px); }
    30%, 60%, 90%  { transform: translateX(7px); }
}
.bundle-grid.bundle-grid-error {
    animation: bundleGridErrorShake 0.55s cubic-bezier(.36,.07,.19,.97) both;
    padding: 14px;
    margin: -14px;
    border-radius: 16px;
    border: 2px solid #ff4444;
    box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.25), 0 0 24px rgba(255, 68, 68, 0.4);
    background: rgba(255, 68, 68, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* ============================================================
   Hörprobe Scrub-Player (wiederverwendbar, klickbar/draggbar)
   Default: Schlager-Style. Override via .product-muttertag.
   ============================================================ */
.scrub-player {
    --sp-bg: transparent;
    --sp-track: rgba(255,255,255,0.18);
    --sp-fill: var(--orange, #FF6B00);
    --sp-thumb: #ffffff;
    --sp-thumb-ring: var(--orange, #FF6B00);
    --sp-time: rgba(255,255,255,0.75);
    --sp-btn-bg: var(--orange, #FF6B00);
    --sp-btn-fg: #ffffff;
    --sp-btn-shadow: 0 4px 14px rgba(255,107,0,0.35);
    --sp-border: none;

    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.4rem 0.55rem;
    background: var(--sp-bg);
    border: var(--sp-border);
    border-radius: 999px;
    width: 100%;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}
.scrub-player-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sp-btn-bg);
    color: var(--sp-btn-fg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    padding: 0;
    box-shadow: var(--sp-btn-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.scrub-player-btn:hover { transform: scale(1.06); }
.scrub-player-btn:active { transform: scale(0.94); }
.scrub-player-btn:focus { outline: none; }
.scrub-player-btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}
.scrub-player-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
    width: 16px;
    height: 16px;
}
.scrub-player-icon svg { display: block; width: 100%; height: 100%; }
.scrub-player-track {
    position: relative;
    flex: 1;
    height: 5px;
    background: var(--sp-track);
    border-radius: 999px;
    cursor: pointer;
    touch-action: none;
    min-width: 60px;
}
.scrub-player-track::before {
    content: '';
    position: absolute;
    inset: -14px 0;
}
.scrub-player-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0%;
    background: var(--sp-fill);
    border-radius: 999px;
    pointer-events: none;
    transition: width 0.05s linear;
}
.scrub-player-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--sp-thumb);
    border: 2px solid var(--sp-thumb-ring);
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    pointer-events: none;
    transition: left 0.05s linear;
}
.scrub-player-time {
    font-size: 0.8rem;
    color: var(--sp-time);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 70px;
    text-align: right;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.scrub-player-cur,
.scrub-player-dur,
.scrub-player-sep { display: inline; }

/* Muttertag-Theme: nahtlos auf Cream-Card, Rose Akzent */
.product-muttertag .scrub-player {
    --sp-bg: transparent;
    --sp-track: rgba(184, 95, 90, 0.22);
    --sp-fill: var(--mt-rose, #D4837E);
    --sp-thumb: #FFFFFF;
    --sp-thumb-ring: var(--mt-rose-deep, #B85F5A);
    --sp-time: var(--mt-text-muted, #8A7F76);
    --sp-btn-bg: var(--mt-rose, #D4837E);
    --sp-btn-fg: #FFFFFF;
    --sp-btn-shadow: 0 4px 14px rgba(184, 95, 90, 0.30);
}

/* Integration: Review-Cards — beim Playing alles in der Pille verstecken außer scrub-player */
.review-card.playing .idx-play-row > *:not(.scrub-player),
.review-card.playing .review-play-row > *:not(.scrub-player) {
    display: none !important;
}
.review-card .scrub-player {
    margin: 0;
    width: 100%;
    flex: 1 1 100%;
}

/* Integration: Tile-with-audio — Player ERSETZT den Hörprobe-Button (eine Box) */
.tile-with-audio.playing .tile-audio-btn { display: none !important; }
.tile-with-audio .scrub-player { margin-top: 0.45rem; }

/* Mobile-kompakt */
@media (max-width: 640px) {
    .scrub-player { padding: 0.3rem 0.45rem; gap: 0.6rem; }
    .scrub-player-btn { width: 40px; height: 40px; font-size: 1rem; }
    .scrub-player-time { font-size: 0.72rem; min-width: 60px; }
    .scrub-player-thumb { width: 14px; height: 14px; }
}
