/* ============================================
   TinniFree – Style.css (NEW)
   Conversion-optimized landing page
   Colors: Navy #1a2744 | Coral #e8604c | Cream #f5ede4
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #1a2744;
    --navy-light: #2a3a5c;
    --navy-dark: #0f1a30;
    --coral: #e8604c;
    --coral-hover: #d4503e;
    --coral-light: #f0816f;
    --coral-bg: rgba(232,96,76,.08);
    --cream: #f5ede4;
    --cream-dark: #ece2d6;
    --cream-light: #faf6f1;
    --white: #fff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --text: #1a2744;
    --text-sec: #4b5563;
    --text-muted: #6b7280;
    --gold: #f5a623;
    --green: #2e7d32;
    --shadow-sm: 0 2px 8px rgba(26,39,68,.04);
    --shadow-md: 0 8px 24px rgba(26,39,68,.06);
    --shadow-lg: 0 16px 40px rgba(26,39,68,.08);
    --shadow-xl: 0 24px 60px rgba(26,39,68,.10);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    --tr: .3s ease;
    --tr-slow: .6s ease;
    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Source Sans 3', 'Segoe UI', sans-serif;
    --max-w: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }`n  html { scroll-behavior: smooth; font-size: 17px; }
body {
    font-family: var(--font-b);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--tr); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-h); color: var(--navy); line-height: 1.25; font-weight: 700; }
h1 { font-size: 2.6rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; color: var(--text-sec); }
strong { color: var(--text); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-coral { color: var(--coral); }
.section-title { text-align: center; margin-bottom: .75rem; font-size: 2.1rem; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.08rem; margin-bottom: 2.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-overline { display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--coral); margin-bottom: .6rem; }
.lead-text { font-size: 1.12rem; line-height: 1.85; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .9rem 2.2rem; border-radius: var(--radius-md);
    font-family: var(--font-b); font-weight: 600; font-size: 1rem;
    cursor: pointer; border: 2px solid transparent;
    transition: all var(--tr); text-align: center; gap: .5rem; line-height: 1.4;
    position: relative; overflow: hidden;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
    transform: translateX(-100%); transition: transform .5s ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-hover); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(232,96,76,.45); }

@keyframes pulse-coral {
    0% { box-shadow: 0 0 0 0 rgba(232,96,76,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(232,96,76,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,96,76,0); }
}
.btn-pulse {
    animation: pulse-coral 2.5s infinite;
}
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--coral); border-color: var(--white); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-lg { padding: 1.15rem 3rem; font-size: 1.12rem; border-radius: var(--radius-lg); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--navy);
    color: var(--white);
    padding: .6rem 0;
    font-size: .82rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1001;
}
.announcement-inner {
    display: flex; justify-content: center; align-items: center;
    gap: .85rem; flex-wrap: wrap;
}
.announcement-bar .sep { opacity: .35; }
.announcement-bar i { margin-right: .35rem; font-size: .88rem; }

/* ===== HEADER ===== */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(26,39,68,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-h); font-size: 1.55rem; font-weight: 700; color: var(--navy); }
.logo-icon { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; transition: transform var(--tr); }
.logo:hover .logo-icon { transform: scale(1.08) rotate(5deg); }
.logo-accent { color: var(--coral); }
.logo-text { letter-spacing: -0.5px; }
.main-nav ul { display: flex; gap: 2rem; }
.main-nav a {
    font-size: .92rem; font-weight: 500; color: var(--text-sec);
    position: relative; padding: .25rem 0;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2.5px; background: var(--coral);
    border-radius: 2px; transition: width var(--tr);
}
.main-nav a:hover { color: var(--coral); }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: .85rem; }
.cart-toggle-btn {
    position: relative; background: none; border: none;
    cursor: pointer; color: var(--navy); padding: .4rem;
    transition: color var(--tr);
}
.cart-toggle-btn:hover { color: var(--coral); }
.cart-count {
    position: absolute; top: -5px; right: -9px;
    background: var(--coral); color: var(--white);
    font-size: .65rem; font-weight: 700;
    width: 19px; height: 19px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
}
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: .4rem; width: 34px; height: 34px; justify-content: center;
}
.mobile-menu-btn span {
    display: block; width: 100%; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all var(--tr);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 2000; opacity: 0; visibility: hidden;
    transition: all var(--tr); backdrop-filter: blur(3px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: -440px;
    width: 420px; max-width: 92vw; height: 100dvh;
    background: var(--white); z-index: 2001;
    box-shadow: -6px 0 40px rgba(0,0,0,.15);
    transition: right var(--tr); display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--gray-200);
}
.cart-drawer-header h3 { font-family: var(--font-b); font-size: 1.15rem; margin: 0; }
.cart-close-btn { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-muted); line-height: 1; transition: color var(--tr); }
.cart-close-btn:hover { color: var(--coral); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 3rem 0; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; color: var(--navy); font-size: .95rem; margin-bottom: .25rem; }
.cart-item-price { color: var(--coral); font-weight: 700; font-size: .95rem; }
.cart-item-actions { display: flex; align-items: center; gap: .5rem; margin-top: .4rem; }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--gray-300); border-radius: 4px; overflow: hidden; }
.cart-item-qty button { width: 28px; height: 28px; background: var(--gray-50); border: none; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
.cart-item-qty button:hover { background: var(--gray-200); }
.cart-item-qty span { padding: 0 .5rem; font-size: .85rem; font-weight: 600; }
.cart-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: .8rem; margin-left: auto; }
.cart-item-remove:hover { color: var(--coral); }
.cart-drawer-footer {
    padding: 1.3rem 1.5rem; border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1.1rem; }
.cart-total strong { font-size: 1.3rem; color: var(--coral); }
.cart-footer-note { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: .8rem; }

/* ===== HERO ===== */
.hero {
    background: var(--navy);
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Hintergrundbild – deutlich sichtbar, rechts positioniert */
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    opacity: .44;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Gradient-Overlay: dunkles Navy links für Textkontrast, rechts transparent → Bild sichtbar */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26,39,68,.97) 0%,
        rgba(26,39,68,.92) 28%,
        rgba(26,39,68,.66) 52%,
        rgba(26,39,68,.22) 76%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Subtiler Korallenschimmer unten rechts */
.hero::after {
    content: '';
    position: absolute;
    bottom: -12%;
    right: -4%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,96,76,.09) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero .container { position: relative; z-index: 2; width: 100%; }

/* ── Einspaltiges Layout ── */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 0;
}

/* ── Hero Copy ── */
.hero-copy { max-width: 620px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    padding: .44rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.88);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(255,255,255,.18);
}
.hero-badge i { font-size: .85rem; color: var(--coral); }

.hero-title {
    font-size: 2.95rem;
    line-height: 1.12;
    margin-bottom: .95rem;
    color: #fff;
    letter-spacing: -.5px;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.78;
    color: rgba(255,255,255,.72);
    margin-bottom: 1.55rem;
    max-width: 510px;
}
.hero-subtitle strong { color: #fff; }

.hero-points {
    display: grid;
    gap: .5rem;
    margin-bottom: 1.85rem;
}
.hero-points li {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    padding: .65rem 1rem;
    font-size: .95rem;
    color: rgba(255,255,255,.9);
    font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-points li i { color: var(--coral); font-size: .95rem; flex-shrink: 0; }

.hero-actions {
    display: flex;
    align-items: center;
    gap: .85rem 1.3rem;
    flex-wrap: wrap;
}
.hero-cta-btn {
    font-size: 1.08rem;
    box-shadow: 0 8px 28px rgba(232,96,76,.38);
    animation: ctaPulse 2.8s ease-in-out infinite 1.5s;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(232,96,76,.38); }
    50%       { box-shadow: 0 12px 40px rgba(232,96,76,.62); }
}
.hero-cta-btn:hover { box-shadow: 0 10px 36px rgba(232,96,76,.55); transform: translateY(-3px); }

.hero-note {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    font-weight: 600;
}
.hero-note i { color: var(--coral); }

/* ===== REVIEW STRIP (vor Produkten) ===== */
.review-strip {
    background: var(--cream-light);
    padding: 2.6rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.review-strip-hd {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.review-strip-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 3px; }
.review-strip-meta { font-size: .88rem; color: var(--text-muted); }
.review-strip-meta strong { color: var(--navy); }

.review-strip-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.8rem 2rem 1.4rem;
    box-shadow: 0 4px 20px rgba(26,39,68,.07);
    max-width: 660px;
}

/* ── Shared slide styles ── */
.hslides-wrap { position: relative; min-height: 148px; }
.hslide { display: none; }
.hslide.active { display: block; animation: hslideIn .38s ease both; }
@keyframes hslideIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hslide-stars {
    color: var(--gold);
    font-size: .96rem;
    letter-spacing: 2px;
    margin-bottom: .6rem;
}
.hslide-quote {
    font-size: .97rem;
    line-height: 1.75;
    color: var(--text-sec);
    font-style: italic;
    margin-bottom: .85rem;
    quotes: none;
}
.hslide-author {
    display: flex;
    align-items: center;
    gap: .7rem;
}
.hslide-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    color: var(--navy);
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--gray-200);
    letter-spacing: .5px;
}
.hslide-author strong {
    display: block;
    font-size: .92rem;
    color: var(--navy);
    line-height: 1.3;
}
.hslide-author footer > div > span,
.hslide-author span {
    font-size: .76rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .28rem;
    margin-top: .08rem;
}
.hslide-author .fa-circle-check { color: var(--green); font-size: .78rem; }

/* Dots-Navigation */
.hslide-nav {
    margin-top: 1.1rem;
    padding-top: .85rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: center;
}
.hslide-dots { display: flex; gap: .45rem; align-items: center; }
.hslide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
}
.hslide-dot.active {
    background: var(--coral);
    width: 24px;
    border-radius: 4px;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    background: var(--white); padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.proof-inner {
    display: flex; justify-content: center; align-items: center;
    gap: 3rem; flex-wrap: wrap;
}
.proof-item {
    text-align: center; animation: fadeInUp .5s ease both;
}
.proof-item:nth-child(2) { animation-delay: .1s; }
.proof-item:nth-child(3) { animation-delay: .2s; }
.proof-item:nth-child(4) { animation-delay: .3s; }
.proof-number {
    font-family: var(--font-h); font-size: 2rem;
    font-weight: 800; color: var(--coral); line-height: 1;
}
.proof-label { font-size: .82rem; color: var(--text-muted); font-weight: 500; margin-top: .2rem; }

/* ===== PRODUCTS ===== */
.products-section { padding: 4rem 0 4.5rem; background: var(--white); }
.products-layout { display: flex; flex-direction: column; gap: 2rem; }
.products-main { display: flex; flex-direction: column; gap: 2rem; }
.product-row {
    display: grid; grid-template-columns: 260px 1fr;
    gap: 2rem; background: var(--white);
    border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 1.5rem; position: relative;
    transition: transform var(--tr), box-shadow var(--tr);
}
.product-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-badge-popular {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--coral), var(--coral-hover));
    color: var(--white); padding: .3rem 1.2rem;
    border-radius: var(--radius-full); font-size: .78rem;
    font-weight: 700; white-space: nowrap; z-index: 2;
    box-shadow: 0 4px 12px rgba(232,96,76,.3);
}
.product-image { display: flex; align-items: center; justify-content: center; }
.product-carousel { position: relative; width: 100%; max-width: 240px; margin: 0 auto; }
.product-carousel-img {
    width: 100%; height: auto; border-radius: var(--radius-md);
    display: none; animation: fadeInScale .5s ease forwards; object-fit: cover;
}
.product-carousel-img.active { display: block; }
.product-main-img {
    width: 100%; max-width: 240px; height: auto;
    border-radius: var(--radius-md); object-fit: cover;
    transition: transform var(--tr);
}
.product-main-img:hover { transform: scale(1.04); }
.product-title { font-family: var(--font-b); font-size: 1.45rem; font-weight: 700; margin-bottom: .3rem; }
.product-title span { color: var(--coral); }
.product-subtitle { font-size: .88rem; color: var(--text-muted); margin-bottom: .8rem; }
.product-features { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1rem; }
.product-features li { font-size: .92rem; color: var(--text-sec); }
.product-price-row { margin-bottom: 1rem; }
.product-price { font-family: var(--font-h); font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.product-actions { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap; }
.qty-selector { display: flex; align-items: center; border: 2px solid var(--gray-300); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
    width: 40px; height: 40px; background: var(--gray-50);
    border: none; cursor: pointer; font-size: 1.1rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--tr);
}
.qty-btn:hover { background: var(--gray-200); }
.qty-input {
    width: 46px; height: 40px; text-align: center;
    border: none; border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    font-size: 1rem; font-weight: 600; font-family: var(--font-b); color: var(--navy);
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input[type=number] { -moz-appearance: textfield; appearance: textfield; }
.buy-now-btn { flex: 1; min-width: 180px; }
.product-note { font-size: .8rem; color: var(--text-muted); margin-bottom: 0; }

/* Sidebar */
.products-sidebar { position: sticky; top: 95px; }
.sidebar-trust {
    background: var(--cream-light); border-radius: var(--radius-md);
    padding: 1.3rem; margin-bottom: 1rem;
}
.sidebar-trust h4 { font-family: var(--font-b); font-size: .92rem; font-weight: 700; margin-bottom: .8rem; color: var(--navy); }
.trust-item { display: flex; align-items: center; gap: .65rem; padding: .45rem 0; font-size: .82rem; }
.trust-icon {
    font-size: 1.15rem; flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    color: var(--coral);
}
.trust-item strong { display: block; font-size: .82rem; color: var(--navy); line-height: 1.3; }
.trust-item small { font-size: .72rem; color: var(--text-muted); }
.sidebar-payment { background: var(--gray-50); border-radius: var(--radius-md); padding: 1.1rem; margin-bottom: 1rem; }
.payment-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .65rem; }
.payment-icons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.payment-icon {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 6px; padding: .5rem;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--tr), box-shadow var(--tr);
}
.payment-icon:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.payment-icon i { font-size: 1.6rem; color: var(--navy-light); }
.sidebar-experts { background: var(--cream-light); border-radius: var(--radius-md); padding: 1.1rem; }
.experts-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .55rem; }
.expert-badge { display: flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600; color: var(--navy); padding: .3rem 0; }
.expert-badge i { color: var(--coral); font-size: .92rem; width: 20px; text-align: center; }

/* ===== TINNITUS INFO ===== */
.tinnitus-info-section { padding: 5rem 0; background: var(--cream); }
.tinnitus-info-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: start; }
.tinnitus-info-content h2 { margin-bottom: 1.1rem; }
.tinnitus-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.tinnitus-columns h3 { font-family: var(--font-b); font-size: 1.05rem; font-weight: 700; margin-bottom: .55rem; }
.info-list li {
    font-size: .92rem; color: var(--text-sec); padding: .25rem 0;
    padding-left: 1.1rem; position: relative;
}
.info-list li::before { content: ''; width: 6px; height: 6px; background: var(--coral); border-radius: 50%; position: absolute; left: 0; top: .65rem; }
.tinnitus-cta-box {
    background: var(--white); padding: 1.6rem; border-radius: var(--radius-md);
    border-left: 4px solid var(--coral); margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.tinnitus-cta-box p { margin-bottom: .8rem; }
.tinnitus-info-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.sound-types { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.sound-types h3 { font-family: var(--font-b); font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; text-align: center; }
.sound-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sound-item { text-align: center; padding: 1.1rem; background: var(--cream-light); border-radius: var(--radius-md); transition: transform var(--tr); }
.sound-item:hover { transform: translateY(-3px); }
.sound-icon-placeholder { font-size: 1.9rem; margin-bottom: .35rem; color: var(--coral); }
.sound-item span { font-size: .84rem; font-weight: 600; color: var(--navy); }

/* ===== PROBLEM SECTION ===== */
.problem-section { padding: 5rem 0; background: var(--white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.problem-image { display: flex; justify-content: center; align-items: center; }
.problem-section-img {
    width: 100%; max-width: 440px; border-radius: var(--radius-lg);
    object-fit: cover; box-shadow: var(--shadow-md);
}
.problem-content h2 { margin-bottom: 1.2rem; }
.problem-headline { font-size: 1.2rem; color: var(--navy); font-weight: 700; margin-bottom: .5rem; }
.problem-headline strong { font-size: 1.2rem; }
.problem-list-wrapper { margin-top: 1.5rem; }
.problem-list { display: flex; flex-direction: column; gap: .55rem; }
.problem-list li { display: flex; align-items: center; gap: .75rem; font-size: 1.08rem; font-weight: 500; color: var(--navy); }
.x-mark { color: var(--coral); font-weight: 700; font-size: 1.2rem; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 5rem 0; background: var(--cream); }
.how-header { text-align: center; margin-bottom: 2.8rem; }
.how-header .section-overline { margin-bottom: .6rem; }
.how-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how-step-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 1.8rem; text-align: center;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    transition: transform var(--tr), box-shadow var(--tr);
}
.how-step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
    width: 44px; height: 44px; background: var(--coral);
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.15rem;
    margin: 0 auto .85rem; box-shadow: 0 4px 12px rgba(232,96,76,.3);
}
.how-step-img {
    margin: .85rem auto; border-radius: var(--radius-md);
    max-width: 220px; width: 100%; height: auto;
    box-shadow: var(--shadow-sm); display: block;
}
.how-step-card h3 { font-family: var(--font-b); font-weight: 700; font-size: 1.08rem; margin-bottom: .45rem; }
.how-step-card p { font-size: .9rem; margin: 0; color: var(--text-sec); }

/* ===== TIMELINE / 4 WEEKS ===== */
.timeline-section { padding: 5rem 0; background: var(--white); }
.vier-wochen-image { text-align: center; margin-top: 2rem; }
.vier-wochen-img {
    max-width: 650px; width: 100%; height: auto;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    margin: 0 auto;
}

/* ===== BENEFITS ===== */
.benefits-section { padding: 5rem 0; background: var(--gray-50); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.benefit-card {
    background: var(--white); padding: 2.2rem 1.8rem;
    border-radius: var(--radius-lg); text-align: center;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    transition: transform var(--tr), box-shadow var(--tr);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.benefit-icon-slot { margin-bottom: .85rem; }
.icon-placeholder { font-size: 2.4rem; color: var(--coral); }
.benefit-card h3 { font-family: var(--font-b); font-weight: 700; font-size: 1.18rem; margin-bottom: .55rem; }
.benefit-card p { font-size: .92rem; margin-bottom: 0; }

/* ===== EXPERT SECTION ===== */
.expert-section { padding: 5rem 0; background: var(--cream); }
.expert-grid { display: grid; grid-template-columns: .4fr .6fr; gap: 3rem; align-items: center; }
.expert-section-img {
    width: 100%; max-width: 380px; border-radius: var(--radius-xl);
    object-fit: cover; box-shadow: var(--shadow-md); margin: 0 auto; display: block;
}
.expert-content h2 { margin-bottom: 1.3rem; }
.expert-content blockquote {
    background: var(--white); padding: 1.6rem;
    border-left: 4px solid var(--coral); border-radius: var(--radius-sm);
    margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.expert-content blockquote p { font-size: .97rem; font-style: italic; line-height: 1.8; }
.expert-content cite { display: block; font-style: normal; font-weight: 600; color: var(--navy); margin-top: .8rem; font-size: .92rem; }
.expert-creds { display: flex; flex-direction: column; gap: .45rem; }
.cred { font-size: .9rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: .55rem; }
.cred i { color: var(--coral); font-size: 1.05rem; width: 22px; text-align: center; }

  /* ===== REVIEWS ===== */
  .reviews-section { padding: 5rem 0; background: var(--white); text-align: center; }
  .reviews-overview {
      background: var(--cream-light); border-radius: var(--radius-lg);
      padding: 2.2rem; margin-bottom: 2.5rem; max-width: 800px; margin-left: auto; margin-right: auto;
  }
  .rating-summary { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; align-items: center; }
  @media (min-width: 768px) {
      .rating-summary { flex-direction: row; gap: 3rem; }
  }
  .rating-big { text-align: center; }
  .stars-large { font-size: 2.2rem; color: var(--gold); display: block; letter-spacing: 3px; }
  .rating-number { display: block; font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: .4rem 0 .2rem; }
  .rating-count { display: block; font-size: .85rem; color: var(--text-muted); }
  .rating-bars { display: flex; flex-direction: column; gap: .38rem; width: 100%; max-width: 320px; }
  .rating-bar-row { display: grid; grid-template-columns: 38px 1fr 38px; gap: .8rem; align-items: center; }
  .bar-label { font-size: .85rem; color: var(--text-muted); font-weight: 600; text-align: right; }
  .bar-track { height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
  .bar-fill { height: 100%; background: var(--gold); border-radius: 4px; transition: width 1.2s ease; }
  .bar-count { font-size: .85rem; color: var(--text-muted); text-align: left; }
  
  .reviews-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; text-align: left; }
  .review-card {
      background: var(--white); border: 1px solid var(--gray-100);
      border-radius: var(--radius-md); padding: 1.8rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      transition: transform var(--tr), box-shadow var(--tr);
      display: flex; flex-direction: column;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .review-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 1rem; }
  .review-author { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
  .author-avatar {
      width: 40px; height: 40px; background: var(--cream);
      color: var(--navy); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem; font-weight: 700;
  }
  .review-author strong { font-size: 1rem; }
  .verified { font-size: .75rem; color: var(--green); font-weight: 600; background: rgba(39, 174, 96, 0.1); padding: 2px 6px; border-radius: 4px; margin-left: auto; }
  .review-card > p { font-size: .95rem; line-height: 1.6; margin: 0; color: var(--text-sec); flex-grow: 1; }
  .reviews-pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
  .page-btn {
      width: 40px; height: 40px; background: var(--white);
      border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
      cursor: pointer; font-weight: 600; color: var(--text-sec);
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; transition: all var(--tr);
  }
  .page-btn:hover, .page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

  /* ===== GUARANTEE ===== */
.guarantee-section { padding: 5rem 0; background: var(--gray-50); }
.guarantee-grid { display: grid; grid-template-columns: .4fr .6fr; gap: 3rem; align-items: center; }
.guarantee-section-img {
    width: 100%; max-width: 280px; border-radius: var(--radius-xl);
    object-fit: contain; margin: 0 auto; display: block;
    filter: drop-shadow(0 8px 24px rgba(232,96,76,.2));
}
.guarantee-content h2 { margin-bottom: 1.1rem; }
.guarantee-content p { font-size: 1.02rem; line-height: 1.8; }
.guarantee-badges { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1.5rem; }
.g-badge {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); padding: .6rem .8rem;
    font-size: .84rem; font-weight: 600; color: var(--navy);
    display: flex; align-items: center; gap: .55rem;
    transition: transform var(--tr);
}
.g-badge:hover { transform: translateY(-2px); }
.g-badge i { color: var(--coral); font-size: 1.05rem; }

/* ===== LEAD GENERATION CTA ===== */
.lead-cta-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.lead-cta-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,96,76,.15) 0%, transparent 60%);
    border-radius: 50%;
}
.lead-cta-section h2 { color: var(--white); margin-bottom: .8rem; font-size: 2.2rem; }
.lead-cta-section p { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 600px; margin: 0 auto 1.8rem; }
.lead-form-inline {
    display: flex; gap: .6rem; max-width: 520px;
    margin: 0 auto 1.5rem; flex-wrap: wrap; justify-content: center;
}
.lead-form-inline input {
    flex: 1; min-width: 250px; padding: .9rem 1.2rem;
    border: 2px solid rgba(255,255,255,.2); border-radius: var(--radius-md);
    background: rgba(255,255,255,.1); color: var(--white);
    font-family: var(--font-b); font-size: 1rem;
    backdrop-filter: blur(4px);
    transition: border-color var(--tr);
}
.lead-form-inline input::placeholder { color: rgba(255,255,255,.5); }
.lead-form-inline input:focus { outline: none; border-color: var(--coral); background: rgba(255,255,255,.15); }
.lead-form-inline .btn { flex-shrink: 0; }
.lead-consent {
    max-width: 520px; margin: 0 auto;
    display: flex; align-items: flex-start; gap: .5rem;
    text-align: left;
}
.lead-consent input { margin-top: 4px; accent-color: var(--coral); }
.lead-consent small { font-size: .72rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.lead-consent a { color: var(--coral-light); }
.lead-success {
    display: none; text-align: center;
    max-width: 520px; margin: 0 auto;
}
.lead-success h4 { color: var(--white); font-family: var(--font-b); margin: .5rem 0; }
.lead-success p { color: rgba(255,255,255,.7); font-size: .92rem; }
.lead-success .success-icon { font-size: 2.5rem; }
.lead-trust-row {
    display: flex; justify-content: center; gap: 1.5rem;
    margin-top: 1.2rem; flex-wrap: wrap;
}
.lead-trust-row span { color: rgba(255,255,255,.5); font-size: .78rem; display: flex; align-items: center; gap: .3rem; }

/* ===== "FÜR WEN" SECTION (target audience) ===== */
.target-section { padding: 5rem 0; background: var(--white); }
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.target-card {
    background: var(--cream-light); border-radius: var(--radius-lg);
    padding: 2.5rem 2rem; text-align: center;
    border: 2px solid transparent;
    transition: all var(--tr);
}
.target-card:hover { border-color: var(--coral); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.target-card-icon { font-size: 3rem; color: var(--coral); margin-bottom: 1rem; }
.target-card h3 { font-family: var(--font-b); font-size: 1.2rem; margin-bottom: .8rem; }
.target-card p { font-size: .95rem; margin-bottom: 1.2rem; }
.target-card .btn { font-size: .92rem; }

/* ===== FAQ ===== */
.faq-section { padding: 5rem 0; background: var(--white); }
.faq-list { max-width: 740px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.3rem 0; cursor: pointer; font-size: 1.02rem;
    font-weight: 600; color: var(--navy); list-style: none;
    transition: color var(--tr);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; display: none; }
.faq-item summary:hover { color: var(--coral); }
.faq-toggle { font-size: 1.5rem; font-weight: 300; color: var(--coral); transition: transform var(--tr); flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.3rem; }
.faq-answer p { font-size: .94rem; line-height: 1.85; }

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; bottom: -40%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,96,76,.1) 0%, transparent 60%);
    border-radius: 50%;
}
.final-cta h2 { color: var(--white); margin-bottom: .8rem; font-size: 2.1rem; }
.final-cta p { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 580px; margin: 0 auto 1.8rem; }
.final-trust {
    display: flex; justify-content: center; gap: 1.6rem;
    margin-top: 1.6rem; flex-wrap: wrap;
}
.final-trust span {
    color: rgba(255,255,255,.65); font-size: .88rem;
    font-weight: 500; display: flex; align-items: center; gap: .45rem;
}
.final-trust i { font-size: .92rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.8rem; }
.footer-logo { font-family: var(--font-h); font-size: 1.35rem; font-weight: 700; color: var(--white); display: inline-block; margin-bottom: .55rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .87rem; }
.footer-tagline { font-size: .82rem !important; line-height: 1.55; }
.footer-links h4 { color: var(--white); font-family: var(--font-b); font-weight: 700; font-size: .97rem; margin-bottom: 1.1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .87rem; transition: color var(--tr); }
.footer-links a:hover { color: var(--coral); }
.footer-payment {
    text-align: center; padding: 2.2rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-payment p { color: rgba(255,255,255,.4); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .8rem; }
.footer-payment-icons { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.pay-icon {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px; padding: .45rem .8rem; min-width: 48px;
    text-align: center; display: flex; align-items: center; justify-content: center;
    transition: all var(--tr);
}
.pay-icon:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.pay-icon i { font-size: 1.65rem; color: rgba(255,255,255,.7); }
.pay-icon span { font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.5); }
.footer-bottom { padding: 1.3rem 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; margin: 0; }
.footer-bottom a { transition: color var(--tr); }
.footer-bottom a:hover { color: var(--coral); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 1.8rem; right: 1.8rem;
    width: 48px; height: 48px; background: var(--coral); color: var(--white);
    border: none; border-radius: 50%; font-size: 1.3rem; cursor: pointer;
    box-shadow: 0 6px 20px rgba(232,96,76,.35);
    opacity: 0; visibility: hidden;
    transition: all var(--tr); z-index: 999;
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--coral-hover); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(232,96,76,.45); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,.15);
    border-top: 3px solid var(--coral);
    animation: slideUpBanner .4s ease;
}
@keyframes slideUpBanner { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 1.5rem;
    display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 { font-family: var(--font-b); font-size: 1.02rem; margin-bottom: .45rem; color: var(--navy); }
.cookie-text p { font-size: .84rem; color: var(--text-sec); margin: 0; line-height: 1.6; }
.cookie-text a { color: var(--coral); text-decoration: underline; }
.cookie-actions { display: flex; gap: .65rem; align-items: center; flex-wrap: wrap; }
.cookie-actions .btn { font-size: .84rem; padding: .65rem 1.3rem; }
.cookie-settings-btn { background: none; border: none; color: var(--text-muted); font-size: .8rem; cursor: pointer; text-decoration: underline; padding: .4rem; }
.cookie-settings-btn:hover { color: var(--coral); }
.cookie-details {
    width: 100%; padding-top: 1rem; border-top: 1px solid var(--gray-200);
    margin-top: .5rem; display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
}
.cookie-option { display: flex; align-items: center; gap: .4rem; font-size: .87rem; cursor: pointer; }
.cookie-option input { accent-color: var(--coral); }
.cookie-option small { color: var(--text-muted); font-size: .74rem; }

/* ===== NEWSLETTER POPUP ===== */
.newsletter-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.newsletter-popup {
    background: var(--white); border-radius: var(--radius-xl);
    max-width: 800px; width: 92%; padding: 0;
    position: relative;
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
    animation: popIn .35s ease;
    overflow: hidden;
}
@keyframes popIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.newsletter-close {
    position: absolute; top: 1rem; right: 1rem;
    background: white; border: none; font-size: 1.8rem;
    cursor: pointer; color: var(--navy); line-height: 1;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all var(--tr); z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.newsletter-close:hover { background: var(--gray-100); color: var(--coral); }
.newsletter-split {
    display: flex;
    flex-direction: row;
    height: 100%;
}
.newsletter-image {
    flex: 1;
    display: block;
    min-height: 300px;
}
.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.newsletter-content {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.newsletter-icon { font-size: 3rem; margin-bottom: .8rem; color: var(--coral); }
.newsletter-content h3 { font-family: var(--font-h); font-size: 1.55rem; margin-bottom: .8rem; }
.newsletter-content > p { font-size: .94rem; color: var(--text-sec); margin-bottom: 1.5rem; line-height: 1.65; }
.newsletter-input-group { display: flex; gap: .55rem; margin-bottom: .8rem; }
.newsletter-input-group input {
    flex: 1; padding: .8rem 1.1rem;
    border: 2px solid var(--gray-300); border-radius: var(--radius-sm);
    font-size: .97rem; font-family: var(--font-b);
    transition: border-color var(--tr);
}
.newsletter-input-group input:focus { outline: none; border-color: var(--coral); }
.newsletter-input-group .btn { white-space: nowrap; flex-shrink: 0; }
.newsletter-consent {
    display: flex; align-items: flex-start; gap: .5rem;
    text-align: left; margin-bottom: 1rem;
}
.newsletter-consent input { margin-top: 3px; accent-color: var(--coral); }
.newsletter-consent small { font-size: .74rem; color: var(--text-muted); line-height: 1.5; }
.newsletter-consent a { color: var(--coral); }
.newsletter-success h4 { font-family: var(--font-b); color: var(--navy); margin: .5rem 0; }
.newsletter-success p { font-size: .9rem; color: var(--text-sec); }
.success-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.newsletter-trust-icons { display: flex; justify-content: center; gap: 1.1rem; margin-top: 1rem; flex-wrap: wrap; }
.newsletter-trust-icons span { font-size: .74rem; color: var(--text-muted); }

/* ===== IMAGE LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(0,0,0,.88);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    backdrop-filter: blur(6px);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: 1.5rem; width: 50px; height: 50px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--tr); z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); transform: scale(1.1); }
.lightbox-content {
    max-width: 90vw; max-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    animation: lightboxZoom .3s ease;
}
.lightbox-img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.4); object-fit: contain; }
@keyframes lightboxZoom { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-trigger { cursor: pointer; transition: transform var(--tr), box-shadow var(--tr); }
.lightbox-trigger:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(26,39,68,.15); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroSlideIn { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }

/* Scroll-triggered animations */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-35px); transition: opacity .7s ease, transform .7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(35px); transition: opacity .7s ease, transform .7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(.88); transition: opacity .6s ease, transform .6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ===== SUBPAGE LAYOUT (for kontakt, impressum, agb, etc.) ===== */
.subpage-hero { background: var(--cream); padding: 3.5rem 0 2.5rem; text-align: center; }
.subpage-hero h1 { font-size: 2.1rem; margin-bottom: .5rem; }
.subpage-hero p { color: var(--text-muted); }
.subpage-content { padding: 3rem 0 4.5rem; }
.subpage-content .container { max-width: 800px; }
.content-narrow { max-width: 800px; }
.subpage-content h2 { margin: 2rem 0 .8rem; font-size: 1.45rem; }
.subpage-content h3 { margin: 1.5rem 0 .55rem; font-size: 1.18rem; font-family: var(--font-b); }
.subpage-content p, .subpage-content li { font-size: .97rem; line-height: 1.85; }
.subpage-content p { margin-bottom: 1rem; }
.subpage-content ul:not(.return-steps) { margin: .5rem 0 1rem 1.2rem; }
.subpage-content ul:not(.return-steps) li { list-style: disc; padding: .18rem 0; }
.subpage-content ol:not(.return-steps) { margin: .5rem 0 1rem 1.2rem; }
.subpage-content ol:not(.return-steps) li { list-style: decimal; padding: .18rem 0; }
.subpage-content a { color: var(--coral); text-decoration: underline; }
.subpage-content a:hover { color: var(--coral-hover); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; box-sizing: border-box;
    padding: .75rem .95rem; border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm); font-family: var(--font-b);
    font-size: .97rem; transition: border-color var(--tr);
    background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--coral); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message { padding: 1rem; border-radius: var(--radius-sm); font-weight: 500; display: none; }
.form-message.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-message.error { display: block; background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }

/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 3rem; padding: 3rem 0; max-width: 1000px; margin: 0 auto; }
.checkout-form h2 { font-family: var(--font-b); font-size: 1.35rem; margin-bottom: 1.2rem; }
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#card-element { padding: .75rem; border: 2px solid var(--gray-300); border-radius: var(--radius-sm); background: var(--white); min-height: 42px; }
#card-errors { color: #c62828; font-size: .82rem; margin-top: .35rem; }
.order-summary { background: var(--cream-light); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 95px; }
.order-summary h2, .order-summary h3 { font-family: var(--font-b); font-size: 1.12rem; margin-bottom: 1rem; }
.summary-item { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--gray-200); font-size: .92rem; }
.summary-total { display: flex; justify-content: space-between; padding: .8rem 0; font-size: 1.12rem; font-weight: 700; color: var(--navy); }
.summary-note { font-size: .78rem; color: var(--text-muted); margin-top: .55rem; }
.checkout-submit-btn {
    width: 100%; padding: 1.05rem; background: var(--coral); color: var(--white);
    border: none; border-radius: var(--radius-md);
    font-size: 1.12rem; font-weight: 700; font-family: var(--font-b);
    cursor: pointer; transition: all var(--tr); margin-top: 1.5rem;
}
.checkout-submit-btn:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,96,76,.35); }
.checkout-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.checkout-trust-row { display: flex; justify-content: center; gap: 1.2rem; margin-top: 1rem; flex-wrap: wrap; }
.checkout-trust-row span { font-size: .8rem; color: var(--text-muted); }
.stripe-card-element { padding: .75rem; border: 2px solid var(--gray-300); border-radius: var(--radius-sm); background: var(--white); min-height: 42px; transition: border-color var(--tr); }
.stripe-card-element:focus-within { border-color: var(--coral); }
.stripe-errors { color: #c62828; font-size: .82rem; margin-top: .35rem; }
.stripe-placeholder-msg { color: var(--text-muted); font-size: .87rem; text-align: center; padding: .5rem 0; }
.checkout-title { font-size: 1.9rem; text-align: center; margin-bottom: .55rem; }
.checkout-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2rem; font-size: .97rem; }
.checkout-footer { background: var(--navy-dark); padding: 1.5rem 0; text-align: center; }
.checkout-footer p { color: rgba(255,255,255,.4); font-size: .82rem; margin: 0; }
.checkout-footer a { color: rgba(255,255,255,.6); }
.checkout-footer a:hover { color: var(--coral); }
fieldset { border: none; padding: 0; margin: 0 0 1.5rem; }
legend { font-family: var(--font-b); font-weight: 700; font-size: 1.08rem; color: var(--navy); margin-bottom: .8rem; padding-bottom: .55rem; border-bottom: 1px solid var(--gray-200); width: 100%; }
.form-group.full { grid-column: 1 / -1; }
.payment-icons-checkout { display: flex; justify-content: center; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; align-items: center; }
.payment-icons-checkout .pay-icon { font-size: 2rem; color: #9ca3af; transition: color var(--tr); }
.payment-icons-checkout .pay-icon:hover { color: var(--navy); }
.back-to-shop { font-size: .87rem; color: var(--text-muted); font-weight: 500; transition: color var(--tr); }
.back-to-shop:hover { color: var(--coral); }
/* Touch-friendly form inputs */
.checkout-form input, .checkout-form select {
    width: 100%; box-sizing: border-box;
    min-height: 48px; font-size: 1rem;
    border: 2px solid var(--gray-300); border-radius: var(--radius-sm);
    padding: .6rem .85rem; font-family: var(--font-b);
    transition: border-color var(--tr);
    -webkit-appearance: none; appearance: none;
}
.checkout-form input:focus, .checkout-form select:focus { border-color: var(--coral); outline: none; }
/* Discount code row */
.discount-row { display: flex; gap: .5rem; }
.discount-row input { flex: 1; }
.discount-row .btn { flex-shrink: 0; white-space: nowrap; }
/* Sticky submit on mobile */
.checkout-page { padding-bottom: env(safe-area-inset-bottom, 0); }
/* Submit button touch target */
.checkout-submit-btn { touch-action: manipulation; min-height: 54px; }
.form-group--narrow { max-width: 140px; }
.summary-badges { margin-top: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.summary-badge { font-size: .8rem; color: var(--text-sec); font-weight: 500; }
.summary-divider { height: 1px; background: var(--gray-200); margin: 1rem 0; }
.summary-total-line { display: flex; justify-content: space-between; font-size: 1.18rem; color: var(--navy); }
.subpage-footer { background: var(--navy-dark); padding: 1.5rem 0; text-align: center; }
.subpage-footer p { color: rgba(255,255,255,.4); font-size: .82rem; margin: 0; }
.subpage-footer a { color: rgba(255,255,255,.6); margin: 0 .35rem; }
.subpage-footer a:hover { color: var(--coral); }

/* ===== SUBPAGE COMPONENTS (kontakt, versand, ruecksendung, etc.) ===== */

/* Small helper text */
.small-text { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* Responsive table wrapper */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0 1.5rem; border-radius: var(--radius-sm); }

/* Shipping / data tables */
.shipping-table {
    width: 100%; border-collapse: collapse;
    font-size: .95rem; min-width: 380px;
}
.shipping-table thead tr { background: var(--navy); }
.shipping-table th {
    padding: .75rem 1rem; text-align: left;
    font-weight: 700; font-size: .88rem;
    color: var(--white); letter-spacing: .3px;
}
.shipping-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--gray-200); color: var(--text-sec); }
.shipping-table tbody tr:nth-child(even) { background: var(--cream-light); }
.shipping-table tbody tr:hover { background: var(--cream); }

/* Contact page two-column layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    margin-top: 1.5rem;
    align-items: start;
}
.contact-info h2 { margin-bottom: .8rem; font-size: 1.45rem; }
.contact-method { margin-bottom: 1.6rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--gray-200); }
.contact-method:last-child { border-bottom: none; }
.contact-method h3 { font-family: var(--font-b); font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.contact-method p { margin-bottom: .2rem; color: var(--text-sec); font-size: .97rem; }
.contact-method a { color: var(--coral); text-decoration: underline; }
.contact-method a:hover { color: var(--coral-hover); }
.contact-form-wrap h2 { margin-bottom: 1rem; font-size: 1.45rem; }

/* Checkbox label combo */
.checkbox-label {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .9rem; cursor: pointer; line-height: 1.6;
    color: var(--text-sec);
}
.checkbox-label input[type="checkbox"] {
    margin-top: 3px; flex-shrink: 0;
    accent-color: var(--coral); width: 17px; height: 17px; cursor: pointer;
}
.checkbox-label a { color: var(--coral); text-decoration: underline; }

/* Numbered return steps */
.return-steps {
    counter-reset: rstep; list-style: none;
    margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.return-steps > li {
    position: relative; padding: 1.1rem 1.3rem 1.1rem 3.8rem;
    background: var(--cream-light); border-radius: var(--radius-md);
    border: 1px solid var(--cream-dark);
    transition: box-shadow var(--tr);
}
.return-steps > li:hover { box-shadow: var(--shadow-sm); }
.return-steps > li::before {
    counter-increment: rstep; content: counter(rstep);
    position: absolute; left: 1rem; top: 1.1rem;
    width: 28px; height: 28px; background: var(--coral); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem; line-height: 1;
}
.return-steps > li strong { display: block; color: var(--navy); margin-bottom: .4rem; font-size: 1rem; }
.return-steps > li p { margin: 0; font-size: .92rem; color: var(--text-sec); }

/* Indented address block */
.indent {
    padding-left: 1.2rem;
    border-left: 3px solid var(--gray-300);
    line-height: 2.1; color: var(--text-sec);
}

/* CTA box at end of subpages */
.contact-cta {
    background: linear-gradient(135deg, var(--cream-light), var(--cream));
    border-radius: var(--radius-lg); padding: 2.2rem 2rem;
    margin-top: 2.5rem; text-align: center;
    border: 1px solid var(--cream-dark);
}
.contact-cta h2 { font-size: 1.45rem; margin-bottom: .55rem; }
.contact-cta p { color: var(--text-sec); margin-bottom: 1.3rem; font-size: .97rem; }

/* ===== KUNDENSERVICE – Service Cards ===== */
.service-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.2rem; margin: 1.5rem 0 2rem;
}
.service-card {
    background: var(--cream-light); border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md); padding: 1.4rem 1.3rem;
    transition: box-shadow var(--tr), transform var(--tr);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card h3 { font-family: var(--font-b); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.service-card p { font-size: .92rem; margin: 0; color: var(--text-sec); line-height: 1.7; }
.service-card a { color: var(--coral); text-decoration: underline; }

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: var(--coral-bg); padding: 1rem 0; text-align: center;
    border-bottom: 1px solid rgba(232,96,76,.15);
}
.urgency-bar p {
    font-size: .92rem; font-weight: 600; color: var(--coral); margin: 0;
}
.urgency-bar strong { color: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    html { font-size: 16px; }
    .hero { padding: 3.5rem 0 3rem; }
    .hero-layout { max-width: 100%; }
    .hero-title { font-size: 2.5rem; }
    .products-layout { display: flex; flex-direction: column; gap: 2rem; }
    .products-sidebar { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
    .product-row { grid-template-columns: 200px 1fr; }
    .tinnitus-info-grid { grid-template-columns: 1fr; }
    .tinnitus-info-visual { order: -1; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-image { max-width: 420px; margin: 0 auto; }
    .how-steps-grid { grid-template-columns: 1fr; }
    .expert-grid { grid-template-columns: 1fr; text-align: center; }
    .expert-creds { align-items: center; }
    .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
    .target-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .checkout-layout { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .proof-inner { gap: 2rem; }
}
@media (max-width: 768px) {
    .announcement-bar .sep { display: none; }
    .announcement-inner { justify-content: center; font-size: .78rem; }
    .ann-item { display: none; }
    .ann-item.active { display: inline-flex; align-items: center; animation: hslideIn .35s ease both; }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md); padding: 1rem; z-index: 999;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--gray-100); font-size: .97rem; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 2.6rem 0 2.2rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: .75rem; }
    .hero-cta-btn { width: 100%; max-width: 340px; text-align: center; justify-content: center; }
    .review-strip { padding: 2rem 0; }
    .review-strip-card { padding: 1.4rem 1.4rem 1.1rem; }
    .section-title { font-size: 1.55rem; }
    .products-sidebar { grid-template-columns: 1fr; }
    .product-row { grid-template-columns: 1fr; text-align: center; }
    .product-features { text-align: left; }
    .product-actions { justify-content: center; }
    .problem-grid { text-align: center; }
    .problem-content { text-align: left; }
    .benefits-grid { grid-template-columns: 1fr; }
    .tinnitus-columns { grid-template-columns: 1fr; }
    .reviews-list { grid-template-columns: 1fr; }
    .rating-summary { grid-template-columns: 1fr; text-align: center; }
    .guarantee-badges { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .final-trust { flex-direction: column; gap: .45rem; }
    .checkout-form .form-row { grid-template-columns: 1fr; }
    .form-group--narrow { max-width: 100%; }
    .checkout-summary-col { order: -1; }
    .order-summary { position: static; margin-bottom: 1.5rem; }
    /* Subpage components mobile */
    .contact-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .service-cards { grid-template-columns: 1fr; }
    .subpage-hero h1 { font-size: 1.65rem; }
    .contact-cta { padding: 1.6rem 1.2rem; }
    .contact-cta h2 { font-size: 1.25rem; }
    .return-steps > li { padding: 1rem 1rem 1rem 3.4rem; }
    .shipping-table th, .shipping-table td { padding: .55rem .7rem; font-size: .87rem; }
    .proof-inner { gap: 1.5rem; }
    .lead-form-inline { flex-direction: column; }
    .lead-form-inline input { min-width: 0; }
    .logo-icon { width: 38px; height: 38px; }
    .newsletter-popup { padding: 0; margin: 1rem; width: 95%; max-width: 500px; }
    .newsletter-split { flex-direction: column; }
    .newsletter-image { display: none; } /* Alternatively could be shown but small. Let's show it by default but restrict height: min-height: 150px; height: 150px; */
    .newsletter-image { min-height: 150px; max-height: 200px; display: block; }
    .newsletter-content { padding: 2rem 1.5rem; }
    .newsletter-content h3 { font-size: 1.25rem; }
    .newsletter-input-group { flex-direction: column; }
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
    .cookie-details { justify-content: center; }
    .expert-section-img { max-width: 300px; }
    .how-step-img { max-width: 100%; }
}
@media (max-width: 480px) {
    .hero { padding: 1.8rem 0 1.6rem; }
    .cart-drawer { width: 100vw; max-width: 100vw; right: -100vw; }
    .cart-drawer-header { padding: 1rem 1.2rem; }
    .cart-drawer-body { padding: 1rem 1.2rem; -webkit-overflow-scrolling: touch; }
    .cart-drawer-footer { padding: 1rem 1.2rem; padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
    .checkout-layout { padding: 1.5rem 0; gap: 1.5rem; }
    .checkout-title { font-size: 1.5rem; }
    .checkout-subtitle { font-size: .9rem; }
    .checkout-trust-row { gap: .6rem; }
    .checkout-trust-row span { font-size: .75rem; }
    .discount-row { flex-direction: column; }
    /* Subpage small screens */
    .subpage-hero { padding: 2.2rem 0 1.6rem; }
    .subpage-hero h1 { font-size: 1.45rem; }
    .subpage-content { padding: 2rem 0 3rem; }
    .contact-cta { padding: 1.4rem 1rem; }
    .return-steps > li { padding: .9rem 1rem .9rem 3.2rem; }
    .return-steps > li::before { left: .8rem; top: .9rem; width: 24px; height: 24px; font-size: .78rem; }
    legend { font-size: .97rem; }
    .hero-title { font-size: 1.72rem; }
    .hero-badge { font-size: .75rem; }
    .hero-points li { font-size: .88rem; padding: .6rem .85rem; }
    .hslide-quote { font-size: .9rem; }
    .hslides-wrap { min-height: 148px; }
    .review-strip { padding: 1.6rem 0; }
    .review-strip-card { padding: 1.2rem 1.1rem 1rem; max-width: 100%; }
    .sound-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-trust-icons { flex-direction: column; gap: .35rem; }
    .proof-inner { justify-content: center; min-height: 76px; }
    .proof-item { display: none; }
    .proof-item.active { display: block; animation: hslideIn .38s ease both; }
}

/* ===== FOCUS STYLES ===== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, details summary:focus-visible {
    outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 3px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}

/* ===== PRINT ===== */
@media print {
    .announcement-bar, .site-header, .back-to-top, .site-footer,
    .cart-drawer, .cart-overlay, .cart-toggle-btn, .mobile-menu-btn,
    .cookie-banner, .newsletter-overlay { display: none !important; }
    body { font-size: 12pt; color: #000; }
}


/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0.8rem 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 900;
    border-top: 1px solid var(--gray-200);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-sticky-cta.visible {
    transform: translateY(0);
}
.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}
.sticky-price {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
    display: block;
}
.sticky-rating {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}
.sticky-rating i {
    color: var(--gold);
}
.mobile-sticky-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(232, 96, 76, 0.3);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 70px; /* Space for the sticky CTA */
    }
}

@media (max-width: 480px) {
    .product-actions { flex-direction: column; width: 100%; gap: 10px; }
    .qty-selector { width: 100%; justify-content: space-between; }
    .qty-selector input { flex-grow: 1; }
    .product-actions .btn { width: 100%; font-size: 1.1rem; padding: 1rem; }
}

/* ===== COMPREHENSIVE MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    .section-title { font-size: 1.7rem; line-height: 1.2; text-align: center; }
    .section-subtitle { font-size: 1rem; text-align: center; margin-bottom: 2rem; }
    .hero-title { font-size: 2.1rem; line-height: 1.1; }
    .hero-subtitle { font-size: 1.1rem; }
    .product-row { padding: 1.5rem; border-radius: var(--radius-lg); }
    .product-image img { max-height: 250px; }
    .reviews-section { padding: 3rem 0; }
    .reviews-overview { padding: 1.5rem; margin-bottom: 1.5rem; }
    .guarantee-grid { gap: 2rem; }
    .footer-grid { text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 3rem 0 2rem; }
    .hero-title { font-size: 1.8rem; }
    .hero-stats-row { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .section-title { font-size: 1.5rem; }
    .btn { padding: 0.85rem 1.2rem; font-size: 1rem; }
    .product-title { font-size: 1.6rem; }
    .product-price { font-size: 1.7rem; }
    .trust-item { flex-direction: column; text-align: center; gap: 0.5rem; }
}



.products-trust-bar-container { margin-bottom: 2rem; }
.horizontal-trust-bar {
    background: var(--cream-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.htb-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}
.htb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}
.htb-item i {
    color: var(--coral);
    font-size: 1.1rem;
}
.htb-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.htb-bottom i {
    font-size: 1.4rem;
    color: var(--navy);
}
@media (max-width: 768px) {
    .htb-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        text-align: left;
    }
    .htb-item { font-size: 0.85rem; justify-content: flex-start; }
}
@media (max-width: 480px) {
    .htb-top { grid-template-columns: 1fr; }
}

