/* ============================================================
   Valentinos Eventspaß – Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---- Custom Properties ---- */
:root {
    --dark:       #0e1b2e;
    --nav-bg:     #111827;
    --yellow:     #f5c518;
    --blue-btn:   #3b7dd8;
    --blue-btn-h: #2c66c0;
    --page-bg:    #ebebeb;
    --white:      #ffffff;
    --text:       #1f2937;
    --text-muted: #555;
    --link:       #2563eb;
    --header-h:   62px;
    --radius:     6px;
    --container:  960px;
    --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    /* Verhindert weißen Bereich oberhalb der Seite beim Zurückscrollen */
    background: var(--nav-bg);
}
body {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--page-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Container ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    height: var(--header-h);
    display: flex;
    align-items: center;
    /* transform statt top → GPU-beschleunigt, kein weißer Streifen beim Einblenden */
    transition: transform var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.site-header.header-hidden { transform: translateY(-100%); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 24px;
    gap: 16px;
}
/* Navigation zentriert */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Logo im Header: Bild links, Text rechts */
.header-logo {
    display: flex;
    flex-direction: row;   /* explizit: Bild zuerst (links), dann Text (rechts) */
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.header-logo:hover { text-decoration: none; }
.header-logo-img {
    height: 46px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
.header-logo-text {
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
}

/* ---- Navigation ---- */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a, .main-nav .nav-kontakt-toggle {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    background: none;
    border: none;
    text-decoration: none;
    line-height: 1;
}
.main-nav a:hover,
.main-nav .nav-kontakt-toggle:hover,
.main-nav li.active > a { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }

/* Trigger-Zeile: Link + Pfeil-Button nebeneinander */
.nav-dd-trigger {
    display: flex;
    align-items: center;
}
.nav-dd-trigger .nav-kontakt-toggle {
    padding: 8px 6px;
}

/* Dropdown – öffnet per Hover (Desktop) und per Klick (Mobile via .open) */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1f2937;
    border-radius: var(--radius);
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    overflow: hidden;
    flex-direction: column;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #d1d5db;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }

.nav-dropdown-menu--left { right: auto; left: 0; }

.nav-arrow { font-size: 10px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

/* Search Button */
.search-btn {
    background: none;
    border: none;
    color: #e5e7eb;
    padding: 8px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    transition: background var(--transition);
}
.search-btn:hover { background: rgba(255,255,255,0.12); }
.search-btn svg { display: block; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Header Actions (CTA + Hamburger wrapper) ---- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ---- Header CTA (always-visible button in header bar) ---- */
.header-cta {
    width: auto;
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1;
    display: flex;
}
@media (min-width: 769px) {
    .header-cta--mobile { display: none !important; }
}

/* ---- Nav CTA Item (highlighted last nav entry) ---- */
.nav-cta-item--mobile { display: none; }

.nav-cta-item > a {
    background: var(--blue-btn);
    color: #fff !important;
    border-radius: 50px;
    padding: 7px 16px;
    margin-left: 4px;
}
.nav-cta-item > a:hover {
    background: var(--blue-btn-h);
    color: #fff !important;
    text-decoration: none;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    margin-top: var(--header-h);
    position: relative;
    background: var(--dark);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
}
.hero-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}
.hero-logo {
    flex: 0 0 auto;
    width: 240px;
}
.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.hero-text {
    flex: 1;
    min-width: 0;
}
.hero-claim {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--yellow);
    line-height: 1.25;
    margin-bottom: 12px;
}
.hero-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    color: #fff;
    line-height: 1.35;
}

/* ================================================================
   MAIN CONTENT
   ================================================================ */
.main-content { background: var(--page-bg); }

/* Intro */
.intro-text {
    padding: 28px 20px 12px;
    max-width: var(--container);
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-muted);
}

/* ================================================================
   PRODUCT SECTIONS
   ================================================================ */
.section-anchor {
    display: block;
    scroll-margin-top: 72px;
}

.product-section {
    padding: 52px 0;
    border-top: 1px solid #d8d8d8;
}
.product-section:first-of-type { border-top: none; }

.product-heading {
    max-width: var(--container);
    margin: 0 auto 24px;
    padding: 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-body {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ---- Product Info ---- */
.product-info { display: flex; flex-direction: column; gap: 14px; }

.price-block p,
.details-block p { margin: 0; line-height: 1.6; }

.price-block strong,
.details-block strong {
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.en-badge { font-size: 14px; color: var(--text-muted); }

.delivery-note { font-size: 14px; }
.delivery-note strong { font-weight: 700; }

.product-buttons { display: flex; flex-direction: column; gap: 10px; }

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform 0.1s;
    width: 100%;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-blue { background: var(--blue-btn); color: #fff; }
.btn-blue:hover { background: var(--blue-btn-h); color: #fff; }

.angebot-block {
    font-size: 14px;
    background: rgba(59,125,216,0.06);
    border-left: 3px solid var(--blue-btn);
    padding: 10px 14px;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text);
}
.angebot-block strong { font-weight: 700; }
.angebot-block a { color: var(--link); }

/* ================================================================
   SLIDER
   ================================================================ */
.slider {
    position: relative;
    user-select: none;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--page-bg);
    position: relative;
    isolation: isolate;
}

.slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    font-size: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition), border-color var(--transition);
    padding: 0;
    line-height: 1;
}
.slider-arrow:hover {
    background: rgba(0,0,0,0.85);
    border-color: rgba(255,255,255,0.9);
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 0 4px;
    background: transparent;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    border: 2px solid transparent;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
    flex-shrink: 0;
}
.slider-dot:hover { background: #888; }
.slider-dot.active {
    background: var(--blue-btn);
    transform: scale(1.25);
}

/* ================================================================
   INFO SECTIONS
   ================================================================ */
.info-section {
    padding: 52px 0 8px;
    border-top: 1px solid #d8d8d8;
}
.info-section .container { display: flex; flex-direction: column; gap: 28px; }

.info-intro { padding: 0; }
.info-intro p { margin-bottom: 10px; }
.info-intro p:last-child { margin-bottom: 0; }

.info-block { padding: 0; }
.info-block-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-block p { margin-bottom: 8px; }
.info-block p:last-child { margin-bottom: 0; }
.info-block a { color: var(--link); }

.steps-list { display: flex; flex-direction: column; gap: 8px; }
.steps-list li {
    display: block;
    font-size: 15px;
}
.step-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue-btn);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info { display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
.contact-info p { display: flex; align-items: center; gap: 6px; margin: 0; }
.contact-info a { color: var(--link); }

.kleinanzeigen-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}
.kleinanzeigen-note a { color: var(--link); font-weight: 600; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: #d4d4d4;
    border-top: 1px solid #bbb;
    padding: 32px 20px;
    margin-top: 60px;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.footer-inner h3,
.footer-legal-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a {
    color: var(--link);
    font-size: 14px;
    text-decoration: underline;
}
.footer-links a:hover { color: var(--blue-btn-h); }

/* ================================================================
   ANFRAGE-FORMULAR
   ================================================================ */
.page-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
.page-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}
.page-subtitle span { color: #e53e3e; }

.form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.form-group label .req { color: #e53e3e; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-btn);
    box-shadow: 0 0 0 3px rgba(59,125,216,0.15);
}
.form-group select {
    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 d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #b91c1c;
    font-size: 14px;
}
.form-error ul { padding-left: 18px; list-style: disc; }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--blue-btn);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
    transition: background var(--transition), transform 0.1s;
}
.btn-submit:hover { background: var(--blue-btn-h); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    opacity: 0.75;
}

/* ---- Formular: Feldzustand (Pastell-Hintergründe) ---- */
.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
    border-color: #86efac;
    background-color: #f0fdf4;
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: #fca5a5;
    background-color: #fef2f2;
}
.field-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    display: block;
}
.form-group.has-error .field-hint { color: #dc2626; }

/* ---- Progressives Formular ---- */
.form-group-step {
    /* Animation wird per JS gesetzt; hidden-Attribut steuert Sichtbarkeit */
}

/* ================================================================
   BESTÄTIGUNG / SUCCESS
   ================================================================ */
.success-card {
    background: var(--white);
    border-radius: 10px;
    padding: 48px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    text-align: center;
}
.success-icon { font-size: 56px; margin-bottom: 20px; }
.success-title { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.success-text { color: var(--text-muted); margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--blue-btn);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}
.btn-back:hover { background: var(--blue-btn-h); color: #fff; text-decoration: none; }

/* ================================================================
   LEGAL PAGES – Hero + Content
   ================================================================ */

/* Hero-Banner für Impressum / AGB / Datenschutz */
.legal-hero {
    margin-top: var(--header-h);
    position: relative;
    background: var(--dark);
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.legal-hero-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.legal-hero-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(36px, 6vw, 82px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.1;
    padding: 40px 24px;
}

/* Content-Bereich (weißer Hintergrund) */
.legal-content {
    background: #fff;
    padding: 52px 0 80px;
}
.legal-content .container {
    max-width: 860px;
}
.legal-section { margin-bottom: 40px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.legal-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 10px;
    color: var(--text);
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content strong, .legal-content b { font-weight: 700; }
.legal-content a { color: var(--link); }
.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}
.legal-content ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    color: var(--text);
}
.legal-content ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--blue-btn);
    font-size: 9px;
    top: 5px;
}
.legal-content ul ul {
    margin-top: 6px;
    margin-left: 4px;
}
.legal-content ul ul li::before { color: #9ca3af; }

/* ================================================================
   POPCORN & ZUCKERWATTE PAGE
   ================================================================ */
.pz-hero {
    background: var(--nav-bg);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    margin-top: var(--header-h);
}
.pz-hero h1 { font-size: 32px; margin-bottom: 12px; }
.pz-hero p { color: #d1d5db; max-width: 560px; margin: 0 auto; font-size: 16px; }

.pz-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin: 48px auto;
    padding: 0 20px;
}
.pz-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.pz-card-body { padding: 20px; }
.pz-card h2 { font-size: 20px; margin-bottom: 8px; }
.pz-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.pz-card .price-tag {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-btn);
    margin-bottom: 16px;
}
.pz-discount {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    color: #166534;
    max-width: 860px;
    margin: 0 auto 40px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    /* Header */
    .nav-toggle { display: flex; }
    .main-nav {
        /* Desktop-Transform zurücksetzen */
        position: fixed;
        transform: none;
        left: 0;
        display: none;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #1f2937;
        padding: 16px;
        flex-direction: column;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .main-nav.open { display: flex; }
    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .main-nav a, .main-nav .nav-kontakt-toggle {
        padding: 12px 16px;
        font-size: 15px;
        width: 100%;
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius);
        margin-top: 4px;
    }
    /* Hover deaktivieren auf Touch-Geräten – nur .open per Klick */
    .nav-dropdown:hover .nav-dropdown-menu { display: none; }
    .nav-dropdown.open .nav-dropdown-menu { display: flex; }
    .nav-dropdown-menu a { padding: 10px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }

    /* Trigger-Zeile auf Mobile: Link füllt Breite, Pfeil-Button bleibt schmal */
    .nav-dd-trigger { width: 100%; }
    .nav-dd-trigger > a { flex: 1; width: auto; }
    .nav-dd-trigger > .nav-kontakt-toggle { width: auto; }

    /* Logo-Text auf sehr kleinen Screens kürzen */
    .header-logo-text { font-size: 13px; }

    /* Nav CTA auf Mobile: Desktop-Version ausblenden, Mobile-Version einblenden */
    .nav-cta-item--desktop { display: none !important; }
    .nav-cta-item--mobile  { display: list-item; }
    .nav-cta-item {
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.12);
    }
    .nav-cta-item > a { margin-left: 0; }

    /* Hero */
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding: 32px 20px;
    }
    .hero-logo { width: 180px; }
    .hero-claim { font-size: clamp(24px, 7vw, 34px); }
    .hero-sub { font-size: clamp(18px, 5vw, 26px); }

    /* Products */
    .product-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-heading { font-size: 20px; }

    /* Slider arrows */
    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }

    /* PZ page */
    .pz-cards { grid-template-columns: 1fr; }
    .pz-hero h1 { font-size: 26px; }

    /* Footer */
    .site-footer { margin-top: 40px; }
}

@media (max-width: 480px) {
    .hero-logo { width: 140px; }
    .form-card { padding: 20px; }
    .product-section { padding: 36px 0; }
    .info-section { padding: 36px 0 4px; }
    .btn { font-size: 13px; padding: 11px 14px; }
}

@media (max-width: 425px) {
    /* Logo-Text ausblenden damit Hamburger-Button sichtbar bleibt */
    .header-logo-text { display: none; }
    .header-inner { padding: 0 12px; }
}

/* ---- Sticky Anfrage-Button ---- */
.scroll-cta {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    width: auto;
    padding: 15px 36px;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 0 0 0 5px #fff, 0 6px 20px rgba(0,0,0,0.30);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    white-space: nowrap;
}
.scroll-cta.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-cta:hover  { transform: translateX(-50%) translateY(-1px); }
.scroll-cta:active { transform: translateX(-50%) translateY(0); }

@media (max-width: 768px) {
    .scroll-cta--desktop { display: none !important; }
}
@media (min-width: 769px) {
    .scroll-cta--mobile  { display: none !important; }
}
