:root {
            --primary: #0ea5e9;
            --primary-light: #e0f2fe;
            --primary-dark: #0284c7;
            --secondary: #06b6d4;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --card-bg: #ffffff;
            --light-bg: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --star: #fbbf24;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px rgba(0,0,0,0.1);
            --radius: 10px;
            --radius-lg: 14px;
            --max-width: 1140px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-primary);
            background-color: var(--light-bg);
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: color 0.2s;
        }

        a:hover {
            color: var(--primary-dark);
        }

        .wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header-container {
            background: var(--card-bg);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            gap: 20px;
        }

        .header-top {
            display: none;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            gap: 8px;
            white-space: nowrap;
        }

        .logo i {
            color: var(--primary);
            font-size: 1.6rem;
        }

        .logo-text {
            display: inline;
        }

        .logo-text .highlight {
            color: var(--primary);
        }

        .search-bar {
            flex: 1;
            max-width: 340px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 14px 10px 40px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--light-bg);
            font-size: 13px;
            font-family: inherit;
            transition: all 0.2s;
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--card-bg);
        }

        .search-bar i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 13px;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 4px;
        }

        .main-nav ul li a {
            display: block;
            padding: 8px 14px;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 13px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .main-nav ul li a:hover,
        .main-nav ul li a.active {
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
        }

        /* Hero Section - Moderne Version mit Gradient */
        .hero {
            background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
            position: relative;
            padding: 48px 0 40px;
            text-align: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            opacity: 0.6;
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-badge i {
            font-size: 0.75rem;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .intro-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-text strong {
            color: white;
            font-weight: 600;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .hero-btn.primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .hero-btn.primary:hover {
            background: #f8fafc;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-btn.secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
        }

        .hero-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .stat-icon i {
            font-size: 1.1rem;
            color: white;
        }

        .stat-content {
            text-align: left;
        }

        .hero-stat .stat-number {
            font-size: 1.3rem;
            font-weight: 900;
            color: white;
            line-height: 1;
            margin-bottom: 2px;
            background: none;
            -webkit-background-clip: initial;
            -webkit-text-fill-color: initial;
            background-clip: initial;
        }

        .hero-stat .stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            text-transform: none;
            letter-spacing: 0;
            font-weight: 500;
        }

        /* Stats Bar - Kompakt */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            background: var(--card-bg);
            border: 2px solid var(--border);
            border-radius: 12px;
            padding: 14px 20px;
            min-width: 110px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .stat-item:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.12);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
            display: block;
        }

        .stat-label {
            font-size: 0.65rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
        }

        /* Filter Bar */
        .filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-info {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .filter-info strong {
            color: var(--text-primary);
        }

        .filter-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 7px 14px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--card-bg);
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .filter-btn i {
            margin-right: 5px;
        }

        /* Last Updated Badge - Pattern Design Version */
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--primary-light);
            border: 2px solid var(--primary);
            color: var(--primary-dark);
            border-radius: 24px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
        }

        .last-updated:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
        }

        .last-updated i {
            font-size: 0.8rem;
        }

        /* Filter Dropdowns */
        .filter-dropdowns {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .filter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: center;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
        }

        .filter-group label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 4px;
            display: block;
            font-weight: 500;
        }

        .filter-select {
            padding: 8px 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--card-bg);
            font-size: 0.85rem;
            min-width: 160px;
            font-family: inherit;
            color: var(--text-primary);
            transition: all 0.2s;
            cursor: pointer;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        .filter-select:hover {
            border-color: var(--primary);
        }

        /* Main Content */
        .container {
            padding: 24px 0 60px;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.25s ease;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 10;
        }

        .product-badge.best-choice {
            background: var(--success);
            color: white;
        }

        .product-badge.best-value {
            background: var(--warning);
            color: white;
        }

.product-image-container {
  padding: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

/* Blog-Bilder: Kein Padding, volle Breite */
.product-card:has(.product-image[style*="object-fit:cover"]) .product-image-container {
  padding: 0;
}

        .product-image-link {
            display: block;
            width: 100%;
        }

        .product-image {
            width: 100%;
            height: 160px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

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

        .product-content {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-brand {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 4px;
        }

        .product-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .product-title a {
            color: inherit;
            transition: color 0.2s;
        }

        .product-title a:hover {
            color: var(--primary);
        }

        .product-description {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 14px;
            flex-grow: 1;
            line-height: 1.5;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
        }

        .feature-tag {
            padding: 3px 8px;
            background: var(--light-bg);
            border-radius: 4px;
            font-size: 0.65rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            margin-bottom: 14px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-rating .score {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
        }

        .product-rating .stars {
            display: flex;
            gap: 1px;
        }

        .product-rating .stars i {
            color: var(--star);
            font-size: 0.7rem;
        }

        .product-rating .reviews {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-left: 4px;
        }

        .product-price {
            display: flex;
            align-items: center;
        }

        .product-price .price-amount {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
        }

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

        .product-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex: 1;
            padding: 11px 14px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.2s;
        }

        .product-button.primary {
            background: var(--primary);
            color: white;
        }

        .product-button.primary:hover {
            background: var(--primary-dark);
            color: white;
        }

        .product-button.secondary {
            background: var(--light-bg);
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        .product-button.secondary:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--primary-light);
        }

        .product-button i {
            font-size: 0.7rem;
            transition: transform 0.2s;
        }

        .product-button.primary:hover i {
            transform: translateX(3px);
        }

        /* Content Sections */
        .content-section {
            margin-top: 48px;
            padding: 32px;
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
        }

        .section-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .section-title i {
            color: var(--primary);
        }

        .section-subtitle {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Brands Carousel */
        .brands-section {
            margin-top: 48px;
            padding: 28px 0;
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .brands-section .section-header {
            padding: 0 32px;
        }

        .brands-carousel-wrapper {
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }

        .brands-carousel-wrapper::before,
        .brands-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 60px;
            z-index: 2;
            pointer-events: none;
        }

        .brands-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--card-bg), transparent);
        }

        .brands-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--card-bg), transparent);
        }

        .brands-carousel {
            display: flex;
            animation: scroll-brands 30s linear infinite;
            width: max-content;
        }

        .brands-carousel:hover {
            animation-play-state: paused;
        }

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

        .brand-item {
            padding: 14px 28px;
            margin: 0 10px;
            background: var(--light-bg);
            border-radius: 8px;
            border: 1px solid var(--border);
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
            white-space: nowrap;
            transition: all 0.2s;
            cursor: pointer;
        }

        .brand-item:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary-dark);
        }

        /* Kaufberatung */
        .buying-guide {
            margin-top: 48px;
        }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 24px;
        }

.guide-card {
            padding: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 12px;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .guide-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .guide-card:hover {
            border-color: var(--primary);
            box-shadow: 0 12px 28px rgba(14, 165, 233, 0.15);
            transform: translateY(-6px);
        }

        .guide-card:hover::before {
            transform: scaleX(1);
        }

        /* Header mit Icon + Titel nebeneinander */
        .guide-card > div:first-child {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .guide-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 6px 12px rgba(14, 165, 233, 0.25);
            transition: all 0.3s ease;
        }

        .guide-card:hover .guide-card-icon {
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 8px 18px rgba(14, 165, 233, 0.35);
        }

        .guide-card-icon i {
            font-size: 1.3rem;
            color: white;
        }

        .guide-card h3 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            flex: 1;
        }

        .guide-card p {
            font-size: 0.75rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .guide-card ul {
            margin-top: 8px;
            padding-left: 16px;
        }

        .guide-card ul li {
            font-size: 0.72rem;
            color: var(--text-secondary);
            margin-bottom: 4px;
            line-height: 1.5;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 48px;
        }

        .faq-list {
            margin-top: 24px;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--card-bg);
        }

        .faq-question {
            width: 100%;
            padding: 18px 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-family: inherit;
            transition: all 0.2s;
        }

        .faq-question:hover {
            background: var(--light-bg);
        }

        .faq-question i {
            color: var(--primary);
            font-size: 0.8rem;
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 24px 18px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* SEO Text Section */
        .seo-section {
            margin-top: 48px;
        }

        .seo-content {
            columns: 2;
            column-gap: 40px;
        }

        .seo-content h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 20px 0 10px;
            break-after: avoid;
        }

        .seo-content h3:first-child {
            margin-top: 0;
        }

        .seo-content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        .trust-badge i {
            font-size: 1.25rem;
            color: var(--primary);
        }

        /* Footer */
        .footer-container {
            background: var(--dark);
            margin-top: 60px;
        }

        .footer {
            padding: 60px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand {
            max-width: 280px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .footer-logo i {
            color: var(--primary);
            font-size: 1.6rem;
        }

        .footer-logo .highlight {
            color: var(--primary);
        }

        .footer-brand p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            border-radius: 8px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: white;
        }

        .footer-column h4 {
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

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

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
            transition: all 0.2s;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        /* Newsletter - Deaktiviert */
        .newsletter {
            margin-top: 16px;
        }

        .newsletter-disabled {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            font-size: 0.7rem;
            color: rgba(255,255,255,0.4);
            margin-bottom: 12px;
        }

        .newsletter-disabled i {
            font-size: 0.65rem;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            opacity: 0.4;
            pointer-events: none;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 0.8rem;
            font-family: inherit;
            min-width: 0;
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .newsletter-form button {
            padding: 10px 16px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: not-allowed;
            font-family: inherit;
            flex-shrink: 0;
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .copyright {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
        }

        .copyright a {
            color: rgba(255,255,255,0.6);
            transition: color 0.2s;
        }

        .copyright a:hover {
            color: var(--primary);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom-links a:hover {
            color: white;
        }

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

        /* Large Tablets & Small Desktops */
        @media (max-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .guide-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .footer-brand {
                grid-column: 1 / -1;
                max-width: none;
            }
        }

        /* Tablets */
        @media (max-width: 900px) {
            .header {
                flex-wrap: wrap;
            }

            .search-bar {
                order: 3;
                max-width: 100%;
                width: 100%;
                margin-top: 10px;
            }

            .seo-content {
                columns: 1;
            }

            .stats-bar {
                gap: 20px;
            }

            .stat-label {
                font-size: 0.65rem;
            }
        }

        /* Mobile Breakpoint */
        @media (max-width: 768px) {
            /* Header nicht mehr sticky auf Mobile */
            .header-container {
                position: relative;
            }

            .wrapper {
                padding: 0 24px;
            }

            /* Container mehr Abstand nach Hero-Section */
            .container {
                padding-top: 48px;
            }

            /* Blog-Kategorie-Filter Abstand */
            .wrapper > div[style*="display:flex"][style*="justify-content:center"] {
                padding-left: 8px;
                padding-right: 8px;
                margin-top: 16px;
            }

            /* Produkt-Grid zusätzlicher Abstand */
            .product-grid {
                margin-top: 8px;
            }

        /* Produktbild in Detailseite: max-width 100% und zentriert */
        .content-section div[style*="background:#fff; border:1px solid var(--border)"] img {
            max-width: 100% !important;
            width: auto !important;
            height: auto !important;
            margin: 0 auto;
            display: block;
        }

        /* Div mit Bild, Preis, Bewertung und Kauf-Link: immer 100% Breite */
        .content-section div[style*="background:#fff; border:1px solid var(--border)"] {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box;
        }

            /* Neue Header-Struktur für Mobile */
            .header {
                flex-direction: column;
                padding: 16px 0;
                gap: 0;
            }

            .header-top {
                display: flex;
                width: 100%;
                justify-content: center;
                align-items: center;
                position: relative;
                margin-bottom: 14px;
                padding: 0 44px; /* Platz für Hamburger-Icon */
            }

            .header .logo {
                display: none;
            }

            .header-top .logo {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }

            /* Suchleiste mit Abstand zu den Rändern */
            .search-bar {
                order: 0;
                margin-top: 0;
                width: 100%;
                max-width: 100%;
            }

            .main-nav {
                display: none;
                width: 100%;
                margin-top: 14px;
                padding-top: 14px;
                border-top: 1px solid var(--border);
            }

            .main-nav.active {
                display: block;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 4px;
            }

            .main-nav ul li a {
                display: block;
                padding: 12px 16px;
                text-align: center;
                border-radius: 8px;
            }

            /* Hero Mobile */
            .hero {
                padding: 40px 0 32px;
            }

            .hero-badge {
                font-size: 0.65rem;
                padding: 6px 14px;
                margin-bottom: 20px;
            }

            .page-title {
                font-size: 1.75rem;
            }

            .intro-text {
                font-size: 0.95rem;
                margin-bottom: 24px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 32px;
            }

            .hero-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .hero-stat {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }

            .stat-icon {
                width: 48px;
                height: 48px;
            }

            .stat-icon i {
                font-size: 1.25rem;
            }

            .hero-stat .stat-number {
                font-size: 1.5rem;
            }

            .hero-stat .stat-label {
                font-size: 0.8rem;
            }

            .stats-bar {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }

            .stat-item {
                min-width: 100px;
            }

            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-buttons {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }

            .filter-btn {
                justify-content: center;
                text-align: center;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

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

            .content-section {
                padding: 24px 20px;
                margin-top: 32px;
            }

            .section-title {
                font-size: 1.1rem;
                flex-direction: column;
                gap: 8px;
            }

            .guide-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .guide-card {
                padding: 20px;
            }

            .brands-section {
                margin-top: 32px;
                padding: 24px 0;
            }

            .brands-section .section-header {
                padding: 0 20px;
            }

            .brand-item {
                padding: 12px 20px;
                font-size: 0.8rem;
            }

            .faq-question {
                padding: 16px 20px;
                font-size: 0.85rem;
            }

            .faq-answer-content {
                padding: 0 20px 16px;
                font-size: 0.8rem;
            }

            .trust-badges {
                gap: 20px;
            }

            .trust-badge {
                font-size: 0.75rem;
            }

            .trust-badge span {
                display: none;
            }

            .footer {
                padding: 40px 0 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

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

            .footer-logo {
                justify-content: center;
            }

            .footer-social {
                justify-content: center;
            }

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

            .footer-column ul li {
                margin-bottom: 10px;
            }

            /* Newsletter-Formular mit max-width */
            .newsletter-form {
                flex-direction: row;
                max-width: 320px;
                margin: 0 auto;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }

            /* ===============================
               SAFE-AREA + MOBILE PADDING FIX
               =============================== */

            /* Fallback + iOS Safe-Area (Notch / Home-Indicator) */
            .header-container,
            .footer-container {
                padding-top: 12px; /* Fallback wenn env() nicht unterstützt */
                padding-bottom: 12px;
                padding-top: max(12px, env(safe-area-inset-top));
                padding-bottom: max(12px, env(safe-area-inset-bottom));
            }

            /* Etwas mehr Luft im Header/Footer selbst */
            .header {
                padding-top: 18px;
                padding-bottom: 18px;
            }

            .footer {
                padding-top: 48px;
                padding-bottom: 40px;
            }
        }

        /* Phones */
        @media (max-width: 480px) {
            .wrapper {
                padding: 0 20px;
            }

            .header-top {
                padding: 0 40px;
            }

            .logo {
                font-size: 1.3rem;
            }

            .logo i {
                font-size: 1.4rem;
            }

            .page-title {
                font-size: 1.25rem;
            }

            .stats-bar {
                gap: 12px;
            }

            .stat-number {
                font-size: 1.1rem;
            }

            .stat-item {
                min-width: 80px;
            }

            .filter-buttons {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .filter-btn {
                padding: 8px 10px;
                font-size: 0.7rem;
            }

            .filter-btn i {
                display: none;
            }

            /* Filter Dropdowns Mobile */
            .filter-dropdowns {
                margin-top: 16px;
                gap: 10px;
            }

            .filter-form {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .filter-group {
                width: 100%;
            }

            .filter-select {
                min-width: 100%;
                width: 100%;
                font-size: 0.8rem;
                padding: 10px 12px;
            }

            .filter-group label {
                font-size: 0.75rem;
            }

            .product-image {
                height: 140px;
            }

            .product-content {
                padding: 16px;
            }

            .product-title {
                font-size: 0.9rem;
            }

            .product-description {
                font-size: 0.75rem;
            }

            .feature-tag {
                font-size: 0.6rem;
            }

            .content-section {
                padding: 20px 16px;
            }

            .guide-card {
                padding: 16px;
            }

            .guide-card-icon {
                width: 40px;
                height: 40px;
            }

            .guide-card-icon i {
                font-size: 1rem;
            }

            .guide-card h3 {
                font-size: 0.9rem;
            }

            .guide-card p,
            .guide-card ul li {
                font-size: 0.75rem;
            }

            .faq-question {
                padding: 14px 16px;
                font-size: 0.8rem;
            }

            .faq-answer-content {
                padding: 0 16px 14px;
                font-size: 0.75rem;
            }

            .seo-content h3 {
                font-size: 0.9rem;
            }

            .seo-content p {
                font-size: 0.8rem;
            }

            .footer-logo {
                font-size: 1.1rem;
            }

            /* Newsletter-Formular für kleine Bildschirme */
            .newsletter-form {
                flex-direction: column;
                max-width: 280px;
            }

            .newsletter-form input {
                width: 100%;
            }

            .newsletter-form button {
                width: 100%;
            }

            .copyright {
                font-size: 0.7rem;
            }

            .footer-bottom-links a {
                font-size: 0.7rem;
            }
        }

        /* Very Small Phones */
        @media (max-width: 360px) {
            .wrapper {
                padding: 0 16px;
            }

            .header-top {
                padding: 0 36px;
            }

            .logo {
                font-size: 1.1rem;
            }

            .logo i {
                font-size: 1.3rem;
            }

            .page-title {
                font-size: 1.1rem;
            }

            .last-updated {
                font-size: 0.6rem;
                padding: 5px 10px;
            }

            .filter-buttons {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }

            .filter-btn {
                padding: 8px 8px;
                font-size: 0.65rem;
            }

            .product-button {
                padding: 10px 12px;
                font-size: 0.7rem;
            }

            .newsletter-form {
                max-width: 100%;
            }

            .footer-bottom-links {
                gap: 12px;
            }
        }

        /* ===========================================
   iOS SAFE AREA FIXES (Notch, Home Bar)
   =========================================== */

/* verhindert, dass Header/Footer am iPhone abgeschnitten wirken */
body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* Header bekommt extra Luft auf iPhones */
.header-container {
  padding-top: env(safe-area-inset-top);
}

/* Footer bekommt Luft über der Home Bar */
.footer-container {
  padding-bottom: env(safe-area-inset-bottom);
}

/* verhindert seitliches Abschneiden auf iOS */
.wrapper {
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

/* ===========================================
   FIX: Mobile Header / Footer kleben nicht
   =========================================== */

@media (max-width: 768px) {
  .header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
}

/* ===========================================
   Images from external sources (hotlinking)
   =========================================== */

.product-image {
  display: block;
  max-width: 100%;
  height: auto;
  background-color: #fff;
}

/* Verhindert Layout Shift bei langsamem Laden */
.product-image-container {
  min-height: 180px;
}

/* ===========================================
   Prevent horizontal scrolling bugs on iOS
   =========================================== */

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
/* ===========================================
   Product image safety net (hotlinked images)
   =========================================== */

/* ===========================================
   FIX: Hotlinked Produktbilder - komplett sichtbar + kein Überdecken
   =========================================== */

.product-image-container {
  /* feste, stabile Bildfläche */
  height: 200px;
  padding: 20px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid var(--border);

  /* wichtig: Bild darf nicht über den Content laufen */
  overflow: hidden;
}

.product-image-link {
  /* sorgt dafür, dass das Bild wirklich in der Bildfläche zentriert bleibt */
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.product-image {
  /* GANZES Bild anzeigen */
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;

  object-fit: contain;
  display: block;

  /* sicherstellen, dass nichts "positioned" wird */
  position: static;
  z-index: 0;
}

/* optional: auf kleinen Phones etwas weniger Höhe */
@media (max-width: 480px) {
  .product-image-container { height: 170px; }
}

.brand-item {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.brand-item { text-decoration: none; color: inherit; display: inline-block; }

/* ===========================================
   STATISCHE SEITEN - BESSERE FORMATIERUNG
   =========================================== */

/* Content-Container für statische Seiten */
.content-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h2 i {
  color: var(--primary);
  font-size: 1.3rem;
}

.content-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-section h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.content-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.content-section p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-section ul,
.content-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.content-section ul li,
.content-section ol li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.content-section ul li strong,
.content-section ol li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-section a {
  color: var(--primary);
  text-decoration: none;
  text-decoration-color: var(--primary-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: all 0.2s;
}

.content-section a:hover {
  color: var(--primary-dark);
  text-decoration-color: var(--primary);
}

/* Info-Boxen für statische Seiten */
.content-section > div[style*="background"] {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Tipp-Boxen (z.B. im Ratgeber) */
.content-section div[style*="background: var(--primary-light)"] h3 {
  color: var(--primary-dark);
  margin-top: 0;
}

.content-section div[style*="background: var(--primary-light)"] p,
.content-section div[style*="background: var(--primary-light)"] ul li {
  color: var(--primary-dark);
}

/* Impressum/Datenschutz - Strukturierte Inhalte */
.content-section div[style*="background: var(--light-bg)"] h3 {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.content-section div[style*="background: var(--light-bg)"] h3:first-of-type {
  margin-top: 0;
}

.content-section div[style*="background: var(--light-bg)"] p {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Kontakt-Karten verbessern */
.guide-card p {
  margin-bottom: 12px;
}

.guide-card p:last-child {
  margin-bottom: 0;
}

.guide-card strong {
  color: var(--text-primary);
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
}

/* Sitemap-Links */
.content-section ul li a {
  text-decoration: none;
  font-weight: 500;
}

.content-section ul li a:hover {
  text-decoration: underline;
}

/* Erfolgs-Badges */
.success-light {
  background: rgba(16, 185, 129, 0.1) !important;
}

.success {
  color: #10b981;
}

.warning-light {
  background: rgba(245, 158, 11, 0.1) !important;
}

.warning {
  color: #f59e0b;
}

/* Mobile Optimierungen für statische Seiten */
@media (max-width: 768px) {
  .content-section h2 {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .content-section h3 {
    font-size: 1rem;
  }

  .content-section p {
    font-size: 0.9rem;
  }

  .content-section ul,
  .content-section ol {
    padding-left: 20px;
  }

  .content-section ul li,
  .content-section ol li {
    font-size: 0.85rem;
  }

  .content-section > div[style*="background"] {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .content-section h2 {
    font-size: 1.1rem;
  }

  .content-section h3 {
    font-size: 0.95rem;
  }

  .content-section p {
    font-size: 0.85rem;
  }

  .content-section ul li,
  .content-section ol li {
    font-size: 0.8rem;
  }
}

/* ===========================================
   PRODUKTDETAILSEITE - VERBESSERTES STYLING
   =========================================== */

/* Hero Badge für Produktdetailseite */
.hero .product-badge {
  position: static;
  display: inline-flex;
  font-size: 0.75rem;
  padding: 6px 12px;
  box-shadow: var(--shadow-sm);
}

/* Produktbild-Container */
.content-section > div[style*="grid-template-columns"] {
  gap: 40px !important;
}

/* Technische Daten Karten */
.content-section div[style*="background:var(--light-bg)"] > div[style*="display:grid"] {
  background: white !important;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px !important;
  margin: -4px;
}

.content-section div[style*="display:grid"][style*="repeat(auto-fill"] > div {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 12px !important;
  transition: all 0.2s;
}

.content-section div[style*="display:grid"][style*="repeat(auto-fill"] > div:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Eigenschaften Tags */
.content-section div[style*="flex-wrap:wrap"] .feature-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
  font-weight: 600;
  padding: 6px 12px;
  font-size: 0.75rem;
  transition: all 0.2s;
}

.content-section div[style*="flex-wrap:wrap"] .feature-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Bewertung Sterne */
.content-section .stars i {
  font-size: 0.95rem !important;
  margin: 0 1px;
}

/* Pro & Contra Listen */
.guide-card ul {
  list-style: none;
  padding-left: 0;
}

.guide-card ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}

.guide-card ul li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
}

/* Vorteile-Icon */
.guide-card:has(.guide-card-icon [style*="color:var(--success)"]) ul li::before {
  content: "\f00c"; /* fa-check */
  color: var(--success);
}

/* Nachteile-Icon */
.guide-card:has(.guide-card-icon [style*="color:var(--warning)"]) ul li::before {
  content: "\f00d"; /* fa-times */
  color: var(--warning);
}

/* Pro Card Styling */
.guide-card:has(.guide-card-icon [style*="color:var(--success)"]) {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, var(--light-bg) 100%);
  border-color: rgba(16, 185, 129, 0.2);
}

.guide-card:has(.guide-card-icon [style*="color:var(--success)"]):hover {
  border-color: var(--success);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Contra Card Styling */
.guide-card:has(.guide-card-icon [style*="color:var(--warning)"]) {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, var(--light-bg) 100%);
  border-color: rgba(245, 158, 11, 0.2);
}

.guide-card:has(.guide-card-icon [style*="color:var(--warning)"]):hover {
  border-color: var(--warning);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

/* Lieferumfang Liste */
.content-section ul[style*="padding-left:18px"] {
  list-style: none;
  padding-left: 0 !important;
}

.content-section ul[style*="padding-left:18px"] li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  background: var(--light-bg);
  padding: 12px 12px 12px 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.content-section ul[style*="padding-left:18px"] li::before {
  content: "\f466"; /* fa-box-open */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1rem;
}

.content-section ul[style*="padding-left:18px"] li:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateX(4px);
}

/* Affiliate Button am Ende */
.content-section[style*="background:var(--primary-light)"] {
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(224, 242, 254, 0.5) 100%) !important;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.content-section[style*="background:var(--primary-light)"] .product-button {
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  font-size: 0.9rem;
  padding: 14px 20px;
}

.content-section[style*="background:var(--primary-light)"] .product-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* Fazit-Box */
.content-section:has(.section-title:contains("Fazit")) p {
  font-size: 1rem;
  line-height: 1.9;
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

/* Mobile Optimierungen für Produktdetailseite */
@media (max-width: 768px) {
  .content-section > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .guide-card ul li {
    font-size: 0.85rem;
    padding-left: 24px;
  }

  .guide-card ul li::before {
    font-size: 0.75rem;
  }

  .content-section ul[style*="padding-left:18px"] li {
    padding: 10px 10px 10px 36px;
    font-size: 0.85rem;
  }

  .content-section ul[style*="padding-left:18px"] li::before {
    font-size: 0.9rem;
    left: 10px;
  }
}

@media (max-width: 480px) {
  .content-section[style*="background:var(--primary-light)"] .product-button {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}
