/* ========================================
   TEERLOS.CH - MOBILE-OPTIMIERTE STYLES
   Version: 4.0 (MOBILE-FIRST PERFEKT)
   
   MOBILE OPTIMIERUNGEN:
   ✓ Responsive Typography mit clamp()
   ✓ Optimierte Paddings/Margins
   ✓ Touch-freundliche Buttons (min 44x44px)
   ✓ Kein horizontaler Scroll
   ✓ Fluid sizing statt fester Breiten
   ✓ Mobile-optimierte Tabellen
   ✓ Perfekte Lesbarkeit (min 16px Body-Text)
======================================== */


/* === CRITICAL: Prevent Horizontal Scroll === */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}


/* === PERFORMANCE: CSS Containment === */
.product-card,
.feature-card,
.blog-card,
.testimonial {
    contain: layout style paint;
}


/* === RESET & BASE === */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}


/* Reduced Motion Support für Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* === CSS CUSTOM PROPERTIES (CSS Variables) === */
:root {
    color-scheme: light only;
    
    /* Colors - Primary */
    --color-primary: #2c5aa0;
    --color-primary-dark: #1e3f72;
    --color-primary-light: #4a7bc8;
    
    /* Colors - Gradients */
    --color-gradient-1: #667eea;
    --color-gradient-2: #764ba2;
    
    /* Colors - Accent & Status */
    --color-accent: #e74c3c;
    --color-accent-dark: #c0392b;
    --color-success: #27ae60;
    --color-success-light: #2ecc71;
    --color-warning: #f39c12;
    
    /* Colors - Backgrounds */
    --color-bg: #ffffff;
    --color-light-bg: #f8f9fa;
    
    /* Colors - Text */
    --color-text: #2c3e50;
    --color-text-light: #555555;
    --color-text-muted: #666666;
    
    /* Colors - Borders */
    --color-border: #dee2e6;
    
    /* Typography */
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", Monaco, "Cascadia Code", monospace;
    
    /* MOBILE-FIRST Font Sizes (Fluid Typography mit clamp) */
    --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);     /* 12-14px */
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);         /* 14-16px */
    --font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);     /* 16-18px */
    --font-size-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);        /* 18-20px */
    --font-size-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);        /* 20-24px */
    --font-size-2xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);          /* 24-32px */
    --font-size-3xl: clamp(1.75rem, 1.5rem + 1.5vw, 3.5rem);       /* 28-56px */
    
    /* RESPONSIVE Spacing Scale (mit clamp für fluid sizing) */
    --spacing-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.625rem);         /* 8-10px */
    --spacing-sm: clamp(0.75rem, 0.6rem + 0.8vw, 1.25rem);         /* 12-20px */
    --spacing-md: clamp(1.25rem, 1rem + 1vw, 2.5rem);              /* 20-40px */
    --spacing-lg: clamp(2rem, 1.5rem + 2vw, 3.75rem);              /* 32-60px */
    --spacing-xl: clamp(2.5rem, 2rem + 2.5vw, 5rem);               /* 40-80px */
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 0.5rem;        /* 8px */
    --radius-md: 0.75rem;       /* 12px */
    --radius-lg: 0.9375rem;     /* 15px */
    --radius-xl: 1.25rem;       /* 20px */
    --radius-full: 50px;
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 100;
    --z-modal: 1000;
    --z-tooltip: 1010;
    
    /* Max Widths */
    --max-width-sm: 640px;
    --max-width-md: 768px;
    --max-width-lg: 1024px;
    --max-width-xl: 1200px;
    --max-width-2xl: 1400px;
}


/* ============================================
   DARK MODE VOLLSTÄNDIG ENTFERNT
   ============================================ 
   
   Diese Website unterstützt NUR Light Mode.
   Alle Dark Mode CSS wurde entfernt.
   */


/* === BASE TYPOGRAPHY === */
body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}


/* === ACCESSIBILITY === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

.visually-hidden,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

::selection {
    background: var(--color-primary-light);
    color: white;
}


/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem) clamp(1rem, 0.8rem + 1vw, 1.25rem);
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
}


/* === HEADER === */
header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    will-change: transform;
    width: 100%;
}

.header-container {
    max-width: var(--max-width-2xl);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.75rem, 0.6rem + 0.8vw, 1.25rem) clamp(1rem, 0.8rem + 1vw, 2.5rem);
    width: 100%;
}

.logo {
    font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--transition-base);
}

.logo:hover {
    color: var(--color-primary-light);
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--color-primary);
    padding: 0.625rem;
    touch-action: manipulation;
    /* Touch-Target min 44x44px */
    min-width: 44px;
    min-height: 44px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(1.25rem, 1rem + 1vw, 2.1875rem);
    flex-wrap: wrap;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: color var(--transition-base);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

nav a:hover {
    color: var(--color-accent);
}

nav a:hover::after {
    width: 100%;
}


/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--color-gradient-1) 0%, var(--color-gradient-2) 100%);
    color: white;
    padding: clamp(3rem, 2rem + 5vw, 6.25rem) clamp(1rem, 0.8rem + 1vw, 1.25rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(80px, 60px + 10vw, 150px);
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    max-width: min(900px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: var(--z-base);
}

.hero h1 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    hyphens: auto;
}

.hero p {
    font-size: var(--font-size-xl);
    margin-bottom: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    opacity: 0.95;
    line-height: 1.5;
}

/* Small Hero (for subpages) */
.hero-small {
    padding: clamp(2.5rem, 2rem + 2.5vw, 3.75rem) clamp(1rem, 0.8rem + 1vw, 1.25rem);
}

.hero-small h1 {
    font-size: var(--font-size-2xl);
}

.hero-small::before {
    height: clamp(60px, 50px + 5vw, 80px);
}


/* === BUTTONS === */
.cta-primary {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: clamp(0.875rem, 0.75rem + 0.6vw, 1.125rem) clamp(2rem, 1.5rem + 2vw, 3.125rem);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    will-change: transform;
    /* Touch-Target min 44x44px */
    min-height: 48px;
    text-align: center;
    white-space: nowrap;
}

.cta-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

.cta-primary:active {
    transform: translateY(-1px);
}

.buy-button {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: white;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    /* Touch-Target min 44x44px */
    min-height: 52px;
}

.buy-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.buy-button:active {
    transform: translateY(0);
}

/* Quantity Buttons */
.qty-btn {
    background: white;
    border: 2px solid var(--color-border);
    padding: clamp(0.75rem, 0.65rem + 0.5vw, 1rem);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 600;
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 0.9375rem);
    touch-action: manipulation;
    /* Touch-Target min 44x44px */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-light-bg);
}

.qty-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}


/* === CONTAINER === */
.container {
    max-width: var(--max-width-xl);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    margin-bottom: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
    font-weight: 700;
    word-wrap: break-word;
}


/* === PRODUCT SECTION === */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    align-items: center;
    margin-bottom: clamp(3rem, 2.5rem + 2.5vw, 5rem);
    width: 100%;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
}

.product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
    display: block;
}

.product-image:hover {
    transform: scale(1.03);
}

.swiss-badge {
    position: absolute;
    top: clamp(1rem, 0.8rem + 1vw, 1.875rem);
    right: clamp(1rem, 0.8rem + 1vw, 1.875rem);
    background: linear-gradient(135deg, #FF0000 50%, white 50%);
    color: white;
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem) clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.product-info h2 {
    font-size: clamp(1.625rem, 1.4rem + 1vw, 2.375rem);
    color: var(--color-primary);
    margin-bottom: clamp(0.875rem, 0.7rem + 0.8vw, 1.25rem);
    font-weight: 700;
    word-wrap: break-word;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    flex-wrap: wrap;
}

.stars {
    color: #ffc107;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
}

.rating-count {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.product-info p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1.125rem);
    color: var(--color-text-light);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    line-height: 1.8;
}


/* === PRICE BOX === */
.price-box {
    background: var(--color-light-bg);
    padding: clamp(1.25rem, 1rem + 1.2vw, 2.1875rem);
    border-radius: var(--radius-lg);
    margin: clamp(1.25rem, 1rem + 1vw, 1.875rem) 0;
    border: 2px solid var(--color-border);
    width: 100%;
    overflow-x: hidden;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 0.9375rem);
    margin-bottom: 0.625rem;
    flex-wrap: wrap;
}

.price {
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.price-old {
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
    text-decoration: line-through;
    color: #999;
}

.savings-badge {
    background: var(--color-success);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    white-space: nowrap;
}

.price-detail {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    line-height: 1.5;
}

/* Reusable Info Box */
.reusable-info {
    background: #e8f5e9;
    padding: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    border-radius: 0.625rem;
    margin: clamp(1rem, 0.8rem + 1vw, 1.25rem) 0;
    text-align: center;
}

.reusable-info p {
    color: #2e7d32;
    font-weight: 600;
    margin: 0;
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    line-height: 1.5;
}

.quantity-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-top: 0.75rem;
    line-height: 1.5;
}

.shipping-info {
    text-align: center;
    margin-top: 0.9375rem;
    font-size: var(--font-size-sm);
    color: var(--color-success);
}


/* === TRUST BADGES === */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(0.625rem, 0.5rem + 0.6vw, 0.9375rem);
    margin-top: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    width: 100%;
}

.trust-item {
    background: #e8f5e9;
    padding: clamp(0.625rem, 0.5rem + 0.6vw, 0.75rem);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    color: #2e7d32;
    font-weight: 600;
    transition: transform var(--transition-base);
    word-wrap: break-word;
    hyphens: auto;
}

.trust-item:hover {
    transform: translateY(-2px);
}


/* === PRODUCT DETAILS === */
.product-details {
    max-width: min(900px, 100%);
    margin: clamp(2.5rem, 2rem + 2.5vw, 3.75rem) auto;
    padding: 0 clamp(1rem, 0.8rem + 1vw, 2.5rem);
    width: 100%;
}

.product-details h2 {
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    color: var(--color-primary);
    margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 1.875rem);
    text-align: center;
    word-wrap: break-word;
}

.intro-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
}

.why-teerlos,
.how-it-works-detailed,
.advantages-overview {
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    box-shadow: var(--shadow-md);
    margin-top: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    width: 100%;
    overflow-x: hidden;
}

.why-teerlos h3,
.how-it-works-detailed h3,
.advantages-overview h3 {
    font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
    color: var(--color-primary);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    word-wrap: break-word;
}

.why-teerlos ul,
.advantages-overview ul {
    list-style: none;
    padding: 0;
}

.why-teerlos li,
.advantages-overview li {
    padding: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    line-height: 1.7;
    word-wrap: break-word;
}

.why-teerlos li:last-child,
.advantages-overview li:last-child {
    border-bottom: none;
}

.advantages-overview li {
    padding-left: clamp(1.25rem, 1rem + 1.2vw, 1.875rem);
    position: relative;
}

.check-icon {
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
}

.how-it-works-detailed {
    background: var(--color-light-bg);
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    margin-top: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(1.25rem, 1rem + 1.2vw, 1.875rem);
    width: 100%;
}

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

.step-emoji {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 3rem);
    margin-bottom: clamp(0.625rem, 0.5rem + 0.6vw, 0.9375rem);
}

.step-item p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    line-height: 1.7;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 1.5rem + 2.5vw, 3.125rem) clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    text-align: center;
    color: white;
    margin-top: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
}

.cta-box h3 {
    font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    color: white;
}

.cta-box p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 1.875rem);
    opacity: 0.95;
}


/* === FEATURES SECTION === */
.features-section {
    background: var(--color-light-bg);
    padding: var(--spacing-xl) var(--spacing-md);
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-xl);
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    max-width: var(--max-width-xl);
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    background: white;
    padding: clamp(1.75rem, 1.4rem + 1.8vw, 2.5rem) clamp(1.25rem, 1rem + 1.2vw, 1.875rem);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 3.125rem);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
}

.feature-card h3 {
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
    color: var(--color-primary);
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    font-weight: 600;
    word-wrap: break-word;
}

.feature-card p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    color: var(--color-text-muted);
    line-height: 1.7;
}


/* === HOW IT WORKS === */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(2rem, 1.5rem + 2.5vw, 3.125rem);
    width: 100%;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: clamp(60px, 55px + 2.5vw, 70px);
    height: clamp(60px, 55px + 2.5vw, 70px);
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    color: white;
    font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2rem);
    font-weight: 800;
    border-radius: 50%;
    line-height: clamp(60px, 55px + 2.5vw, 70px);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.step h3 {
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
    color: var(--color-primary);
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    word-wrap: break-word;
}

.step p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    color: var(--color-text-muted);
    line-height: 1.7;
}


/* === TESTIMONIALS === */
.testimonials {
    background: linear-gradient(135deg, var(--color-gradient-1), var(--color-gradient-2));
    padding: var(--spacing-xl) var(--spacing-md);
    color: white;
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-xl);
    width: 100%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    max-width: var(--max-width-xl);
    margin: 0 auto;
    width: 100%;
}

.testimonial {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.1875rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-base);
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial .stars {
    color: #ffd700;
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
}

.testimonial p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    opacity: 0.95;
}

.testimonial-author {
    font-weight: 600;
    font-size: var(--font-size-sm);
    opacity: 0.9;
}


/* === FAQ === */
.faq-container {
    max-width: min(900px, 100%);
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    overflow: hidden;
    transition: border-color var(--transition-base);
    width: 100%;
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    background: var(--color-light-bg);
    border: none;
    padding: clamp(1rem, 0.8rem + 1vw, 1.25rem) clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
    text-align: left;
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1.125rem);
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-base);
    /* Touch-Target min 44x44px */
    min-height: 52px;
    gap: 1rem;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: clamp(1rem, 0.8rem + 1vw, 1.25rem) clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
    max-height: 500px;
}

.faq-icon {
    font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* === CTA FOOTER / NEWSLETTER === */
.cta-footer {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: white;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-xl);
    width: 100%;
}

.cta-footer h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
    word-wrap: break-word;
}

.cta-footer p {
    font-size: var(--font-size-lg);
    margin-bottom: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: min(500px, 100%);
    margin: clamp(1.25rem, 1rem + 1.2vw, 1.875rem) auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    border-radius: var(--radius-full);
    border: none;
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
}

.newsletter-form button {
    white-space: nowrap;
}


/* === BLOG STYLES === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    max-width: var(--max-width-xl);
    margin: 0 auto;
    width: 100%;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: clamp(1.25rem, 1rem + 1.2vw, 1.875rem);
}

.blog-card h3 {
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
    color: var(--color-primary);
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    font-weight: 600;
    word-wrap: break-word;
}

.blog-date {
    font-size: var(--font-size-sm);
    color: #999;
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
}

.blog-card p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
}

.blog-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

.blog-link:hover {
    color: var(--color-primary);
}


/* === CONTACT FORM === */
.contact-form {
    max-width: min(700px, 100%);
    margin: 0 auto;
    background: white;
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.form-group {
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5625rem);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: clamp(0.625rem, 0.5rem + 0.6vw, 0.9375rem);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    font-family: var(--font-body);
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    outline: none;
}

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


/* === FOOTER === */
footer {
    background: var(--color-primary-dark);
    color: white;
    padding: clamp(2.5rem, 2rem + 2.5vw, 3.75rem) clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem) clamp(1.5rem, 1.2rem + 1.5vw, 1.875rem);
    width: 100%;
}

.footer-content {
    max-width: var(--max-width-xl);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(2rem, 1.5rem + 2.5vw, 3.125rem);
    margin-bottom: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    width: 100%;
}

.footer-section h3 {
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    line-height: 1.6;
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
}

.powered-by {
    margin-top: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1.25rem, 1rem + 1.2vw, 1.875rem);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-bottom p {
    margin-bottom: 0.625rem;
}

.footer-bottom a {
    color: #66b3ff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.payment-methods {
    margin-top: 0.625rem;
    font-size: var(--font-size-xs);
}


/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
}

.mb-40 {
    margin-bottom: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
}

.mt-40 {
    margin-top: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
}


/* === LOADING STATES === */
.loading {
    opacity: 0.6;
    pointer-events: none;
}


/* ========================================
   BLOG-ARTIKEL STYLES
   Optimierte Typografie und Abstände
======================================== */

article h2 {
    margin-top: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    font-size: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    word-wrap: break-word;
}

article h2:first-of-type {
    margin-top: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
}

article h3 {
    margin-top: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 1rem);
    font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    word-wrap: break-word;
}

article h4 {
    margin-top: clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
    margin-bottom: clamp(0.625rem, 0.5rem + 0.6vw, 0.75rem);
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text);
    word-wrap: break-word;
}

article p {
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-text);
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
}

article ul,
article ol {
    margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
    padding-left: clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
    line-height: 1.7;
}

article li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
}

/* MOBILE-OPTIMIERTE TABELLEN */
article table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: clamp(1.25rem, 1rem + 1.2vw, 1.5rem) 0 clamp(1.5rem, 1.2rem + 1.5vw, 2rem) 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff !important;
}

/* Tabellen Header - WICHTIG: Überschreibt inline styles */
article table thead tr {
    background: #2c3e50 !important;
}

article table th,
article table td {
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem) !important;
    text-align: left;
    border: 1px solid #dee2e6 !important;
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem) !important;
    white-space: nowrap;
    background: #ffffff !important;
}

article table th {
    font-weight: 600 !important;
    color: #ffffff !important;
    background: #2c3e50 !important;
}

/* Alternierende Zeilen - Überschreibt inline styles */
article table tbody tr:nth-child(even) {
    background: #f8f9fa !important;
}

article table tbody tr:nth-child(even) td {
    background: #f8f9fa !important;
}

article table tbody tr:nth-child(odd) td {
    background: #ffffff !important;
}

/* Text in Tabellenzellen */
article table td {
    color: #2c3e50 !important;
}


/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* TABLET & ABOVE (768px+) */
@media (min-width: 768px) {
    .product-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    article table {
        display: table;
        overflow-x: visible;
    }
    
    article table th,
    article table td {
        white-space: normal;
    }
}

/* MOBILE & SMALLER TABLETS (max-width: 968px) */
@media (max-width: 968px) {
    .header-container {
        padding: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem) clamp(1rem, 0.8rem + 1vw, 1.25rem);
    }
    
    .mobile-menu-toggle {
        display: block;
        color: var(--color-primary);
        position: relative;
        z-index: calc(var(--z-sticky) + 2);
    }
    
    /* Ensure icon stays visible when menu is open */
    .mobile-menu-toggle[aria-expanded="true"] {
        color: var(--color-primary);
    }
    
    /* Mobile Menu Overlay */
    nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: white;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
        z-index: calc(var(--z-sticky) + 1);
        padding: 6rem 1.5rem 1.5rem;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav li {
        border-bottom: 1px solid var(--color-border);
    }
    
    nav a {
        display: flex;
        align-items: center;
        padding: 1.25rem 0.5rem;
        min-height: 48px;
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--color-text);
        transition: all var(--transition-base);
    }
    
    nav a:hover,
    nav a:focus {
        color: var(--color-primary);
        background-color: rgba(44, 90, 160, 0.05);
        padding-left: 1rem;
    }
}

/* MOBILE-SPECIFIC (max-width: 640px) */
@media (max-width: 640px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-primary {
        width: 100%;
        padding: clamp(0.875rem, 0.75rem + 0.6vw, 1rem) clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .features-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* EXTRA SMALL MOBILE (max-width: 375px) */
@media (max-width: 375px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   QUANTITY SELECTION - MOBILE OPTIMIERUNG
   ============================================ */

/* Toggle Button für "Mehr anzeigen" - IMMER SICHTBAR */
.toggle-quantities-btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #2c5aa0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    min-height: 44px;
}

.toggle-quantities-btn:hover {
    background: #e9ecef;
    border-color: #2c5aa0;
}

.toggle-quantities-btn:active {
    transform: scale(0.98);
}

/* Buttons 4-10 standardmäßig VERSTECKT (auf ALLEN Geräten) */
.extra-quantities-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    visibility: hidden;
}

/* Buttons 4-10 SICHTBAR nach Klick auf "Mehr anzeigen" */
.extra-quantities-visible {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
}


/* ============================================
   DARK MODE TOGGLE BUTTON
   ============================================ */

/* Theme Toggle ENTFERNT - Kein Dark Mode mehr */


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .announcement-bar,
    header,
    .mobile-menu-toggle,
    .cta-primary,
    .cta-footer,
    .buy-button,
    .qty-btn,
    .quantity-selector,
    footer,
    .newsletter-form,
    .theme-toggle,
    .skip-link,
    .social-proof {
        display: none !important;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
        color: black !important;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    @page {
        margin: 2cm;
        size: A4;
    }
}


/* ============================================
   UTILITY CLASSES - ERSATZ FÜR INLINE-STYLES
   (Mobile-optimiert mit responsive Werten)
   ============================================ */

/* Quantity Selection Grid */
.qty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 6px + 1vw, 10px);
    width: 100%;
}

.qty-container {
    margin: clamp(1.25rem, 1rem + 1.2vw, 1.5625rem) 0;
    width: 100%;
}

.qty-label {
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
    color: #333;
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
}

.qty-row-spacer {
    margin-top: clamp(8px, 6px + 1vw, 10px);
}

/* Shipping Notice */
.shipping-notice {
    text-align: center;
    margin-top: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    color: #e74c3c;
}

/* Product Description (im Product-Info Bereich) */
.product-description {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
}

/* Intro/Lead Text */
.intro-lead-text {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
    line-height: 1.8;
    margin-top: clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
    font-style: italic;
    text-align: center;
    color: #666;
}

/* Warning/Info Boxes */
.warning-notice {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 2rem) clamp(1.25rem, 1rem + 1.2vw, 2.5rem);
    border-radius: var(--radius-md);
    margin: clamp(3rem, 2.5rem + 2.5vw, 3.75rem) auto;
    max-width: min(900px, 100%);
    width: 100%;
}

.warning-notice h3 {
    color: #856404;
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
}

.warning-notice p {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
    line-height: 1.7;
    color: #856404;
    margin: 0;
}

/* CTA Text Blocks */
.cta-text-block {
    text-align: center;
    margin-top: clamp(2.5rem, 2rem + 2.5vw, 3.125rem);
}

.cta-text-block p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
    color: #666;
    margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
}

/* Mobile-optimierte Grid-Container */
.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
    gap: clamp(0.625rem, 0.5rem + 0.6vw, 0.9375rem);
    width: 100%;
}

/* Flexible margins/paddings */
.mt-25 {
    margin-top: clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
}

.mb-12 {
    margin-bottom: clamp(0.75rem, 0.6rem + 0.8vw, 0.9375rem);
}

.mb-25 {
    margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 1.5625rem);
}

.mt-50 {
    margin-top: clamp(2.5rem, 2rem + 2.5vw, 3.125rem);
}

/* Responsive font sizes */
.text-17 {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
}

.text-15 {
    font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 0.9375rem);
}

.text-14 {
    font-size: clamp(0.875rem, 0.8rem + 0.3vw, 0.875rem);
}

.text-18 {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

.text-20 {
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
}


/* ============================================
   MOBILE-SPECIFIC OPTIMIZATIONS
   ============================================ */

/* Verhindere Text-Overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll from specific elements */
.product-showcase,
.features-grid,
.testimonial-grid,
.blog-grid,
.footer-content,
.container,
.price-box,
.product-details {
    max-width: 100%;
    overflow-x: hidden;
}

/* Touch-friendly spacing between interactive elements */
button + button,
a + a {
    margin-left: clamp(0.5rem, 0.4rem + 0.5vw, 0.625rem);
}

/* Smooth scroll for mobile */
html {
    scroll-padding-top: 80px;
}

/* Better tap target sizes on all interactive elements */
a, button, input, select, textarea {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Exception for inline links in text */
p a, li a, span a {
    min-height: unset;
    display: inline;
}


/* ============================================
   FINAL MOBILE CHECKS & FIXES
   ============================================ */

/* Ensure no element exceeds viewport width */
* {
    max-width: 100%;
}

/* Exception for elements that need to be full-width */
html, body, header, footer, .hero, .features-section, .testimonials, .cta-footer {
    max-width: 100vw;
}

/* Safe area insets for notched devices (iPhone X, etc.) */
@supports (padding: env(safe-area-inset-left)) {
    .header-container,
    .container,
    .footer-content {
        padding-left: max(env(safe-area-inset-left), clamp(1rem, 0.8rem + 1vw, 2.5rem));
        padding-right: max(env(safe-area-inset-right), clamp(1rem, 0.8rem + 1vw, 2.5rem));
    }
}

/* Optimize for PWA/Standalone mode */
@media (display-mode: standalone) {
    .announcement-bar {
        padding-top: max(0.75rem, env(safe-area-inset-top));
    }
}


/* ============================================
   FORCE LIGHT MODE ONLY - NO DARK MODE
   ============================================ */

:root,
html,
body {
    color-scheme: light !important;
}

/* Override browser dark mode preference ONLY for body background */
@media (prefers-color-scheme: dark) {
    :root,
    html,
    body {
        color-scheme: light !important;
    }
    
    /* Nur body Hintergrund auf weiß setzen, NICHT alle Sections */
    body {
        background-color: #ffffff !important;
    }
}

/* Block any data-theme="dark" attribute attempts */
[data-theme="dark"] {
    color-scheme: light !important;
}

/* Hide theme toggle buttons completely */
.theme-toggle,
.dark-mode-toggle,
.theme-switcher,
button[aria-label*="theme"],
button[aria-label*="Theme"] {
    display: none !important;
    visibility: hidden !important;
}
