/* Maus25Euro.de - Clean Professional CSS */
/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
}

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

/* Header & Navigation - Wärmere Farben */
header {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

nav h1 {
    font-size: 1.4rem;
    color: #2d3748;
    font-weight: 600;
    letter-spacing: -0.02em;
}

nav h1 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

nav h1 a:hover {
    color: #0d9488;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
}

/* Hero Section - Wärmere Farben */
.hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #5eead4;
    font-weight: 500;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #e2e8f0;
    line-height: 1.7;
    position: relative;
}

/* Product Grid */
.products {
    padding: 5rem 0;
    background: #ffffff;
}

.products h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Siegerpodest Layout */
.product-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-grid .product-card {
    width: 320px;
    position: relative;
}

/* Platz 2 (Links) - Silber */
.product-grid .product-card:nth-child(1) {
    height: 480px;
    order: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #6c757d;
    transform: translateY(40px);
}

/* Platz 1 (Mitte) - Gold */
.product-grid .product-card:nth-child(2) {
    height: 520px;
    order: 2;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 3px solid #ffa726;
    transform: translateY(0px);
    box-shadow: 0 12px 40px rgba(255, 167, 38, 0.2);
}

/* Platz 3 (Rechts) - Bronze */
.product-grid .product-card:nth-child(3) {
    height: 480px;
    order: 3;
    background: linear-gradient(135deg, #fdf4e3 0%, #f4e4bc 100%);
    border: 2px solid #d4a574;
    transform: translateY(60px);
}

/* Product Cards */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.product-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.1);
}

.product-card.featured {
    border-color: #14b8a6;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
}

.product-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 0.6rem 1.2rem;
    border-radius: 8px 0 8px 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Podest Badges mit wärmeren Farben */
.product-badge.budget {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ffa726 0%, #f57c00 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(255, 167, 38, 0.4);
    font-size: 0.9rem;
}

.product-badge.premium {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.product-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

/* Price class hidden but preserved for compatibility */
.price {
    display: none;
}

.features ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Buttons */
.btn-amazon,
.btn-amazon-large,
.btn-amazon-big,
.btn-amazon-huge {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #2d3748;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.2);
}

.btn-amazon:hover,
.btn-amazon-large:hover,
.btn-amazon-big:hover,
.btn-amazon-huge:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border-color: #0d9488;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
    transform: translateY(-2px);
}

.btn-amazon-large {
    font-size: 1rem;
    padding: 1.1rem 2.2rem;
}

.btn-amazon-big {
    font-size: 1.1rem;
    padding: 1.3rem 2.8rem;
}

.btn-amazon-huge {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    margin: 1rem 0;
}

.btn-details {
    background: transparent;
    color: #666666;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.btn-details:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: #666666;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    margin: 0.5rem;
    display: inline-block;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #0d9488;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
}

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

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666666;
    line-height: 1.7;
}

.faq-answer a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.cta p {
    margin-bottom: 3rem;
    color: #cccccc;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.btn-cta {
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-cta:hover {
    transform: translateY(-1px);
}

.btn-cta.budget {
    background: transparent;
    color: white;
    border-color: #666666;
}

.btn-cta.budget:hover {
    border-color: #14b8a6;
    color: #14b8a6;
}

.btn-cta.featured {
    background: #14b8a6;
    color: white;
    border-color: #14b8a6;
}

.btn-cta.featured:hover {
    background: #0f9b8a;
}

.btn-cta.premium {
    background: transparent;
    color: white;
    border-color: #666666;
}

.btn-cta.premium:hover {
    border-color: #14b8a6;
    color: #14b8a6;
}

/* Product Detail Pages */
.product-hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #999999;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #5eead4;
    text-decoration: none;
    position: relative;
}

.product-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-box .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #14b8a6;
}

.price-note {
    font-size: 0.95rem;
    color: #999999;
    margin-top: 0.5rem;
}

/* Product Details Grid */
.product-details {
    padding: 4rem 0;
    background: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.info-card {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pros,
.cons {
    list-style: none;
}

.pros li,
.cons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pros li:last-child,
.cons li:last-child {
    border-bottom: none;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 40%;
}

/* Sidebar */
.buy-box {
    background: #ffffff;
    border: 2px solid #14b8a6;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.price-display {
    margin: 1.5rem 0;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d9488;
    text-shadow: 0 2px 4px rgba(13, 148, 136, 0.1);
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #999999;
    margin-left: 0.5rem;
}

.savings {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 0.5rem;
}

.amazon-benefits {
    margin-top: 1.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.alternatives-box,
.highlight-box {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.alt-link {
    display: block;
    color: #e74c3c;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.alt-link:last-child {
    border-bottom: none;
}

/* Use Cases */
.use-cases {
    padding: 4rem 0;
    background: #f8f9fa;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.use-case {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.use-case h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-use-case {
    text-align: center;
    margin-top: 3rem;
}

/* Comparison Tables */
.comparison {
    padding: 4rem 0;
    background: #fff;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.current-product {
    background: #fff9f9;
    border-left: 4px solid #e74c3c;
}

.comparison-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.verdict {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.verdict-rating {
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #14b8a6;
}

.rating-text {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
}

.verdict-summary {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

.final-cta-buttons {
    margin-bottom: 3rem;
}

.alternative-links {
    margin-top: 1rem;
}

.why-choose {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.reason {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
}

.reason h4 {
    margin-bottom: 0.5rem;
}

/* Kaufratgeber Styles */
.guide-hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    text-align: center;
}

.guide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guide-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.guide-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.quick-recommendations {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.quick-recs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quick-rec {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quick-rec.featured {
    border-color: #0d9488;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.15);
    transform: translateY(-4px);
}

.quick-rec:hover {
    border-color: #0d9488;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.15);
    transform: translateY(-2px);
}

.btn-quick {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.btn-quick:hover {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

.quick-note {
    text-align: center;
    font-style: italic;
    color: #4a5568;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #0d9488;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Step by Step */
.step-by-step {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.step-number {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    padding: 2rem;
    flex: 1;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.use-case-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    border-color: #0d9488;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
}

.use-case-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #0d9488;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.btn-step {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.btn-step:hover {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

/* Features Table */
.features-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.features-table th,
.features-table td {
    padding: 1.2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.features-table th {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Tips & Mistakes */
.buying-tips,
.common-mistakes {
    padding: 4rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip,
.mistake {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tip h3,
.mistake h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mistakes-list {
    max-width: 800px;
    margin: 0 auto;
}

.mistake {
    margin-bottom: 2rem;
}

.mistake-solution {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 6px;
}

/* Final Products Grid */
.final-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.final-product {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
}

.final-product.featured {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.2);
}

.final-product .price {
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

.btn-final {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-final:hover {
    background: rgba(255,255,255,0.3);
}

.final-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: #fff;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.legal-content h4 {
    color: #34495e;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.note p {
    margin: 0;
    color: #856404;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: #14b8a6;
}

footer p {
    color: #999999;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1.5rem;
    color: #666666;
}

/* Zentrierte H2-Überschriften für Kaufratgeber - bessere Lesbarkeit */
.quick-recommendations h2,
.step-by-step h2,
.buying-tips h2,
.common-mistakes h2,
.faq h2,
.final-cta h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

/* Optional: Decorative line under centered h2 */
.quick-recommendations h2::after,
.step-by-step h2::after,
.buying-tips h2::after,
.common-mistakes h2::after,
.faq h2::after,
.final-cta h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6, #0d9488);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Tablet Podest-Layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-grid .product-card {
        width: 280px;
    }
    
    .product-grid .product-card:nth-child(2) {
        height: 480px;
    }
    
    .product-grid .product-card:nth-child(1) {
        height: 440px;
        transform: translateY(30px);
    }
    
    .product-grid .product-card:nth-child(3) {
        height: 440px;
        transform: translateY(50px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile Podest-Layout */
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .product-grid .product-card {
        width: 100%;
        max-width: 350px;
        height: auto !important;
        transform: none !important;
        order: unset !important;
        margin-bottom: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        width: 100%;
        height: 60px;
    }
    
    .features-table {
        font-size: 0.8rem;
    }
    
    .features-table th,
    .features-table td {
        padding: 0.5rem;
    }
    
    .guide-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .guide-header h1 {
        font-size: 1.8rem;
    }
    
    .quick-recs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        width: 100%;
        height: 60px;
        justify-content: center;
        font-size: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .final-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .products,
    .faq,
    .use-cases,
    .comparison,
    .final-cta {
        padding: 2rem 0;
    }
    
    .btn-amazon-huge {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-amazon,
    .btn-details {
        width: 100%;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.8rem;
    }
}
