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

/* Prevent horizontal scroll/slide on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

:root {
    --forest: #2d4a3e;
    --forest-dark: #1a2e25;
    --moss: #4a6741;
    --sage: #87a878;
    --cream: #f5f1e8;
    --warm-white: #faf9f6;
    --bark: #5c4033;
    --copper: #b87333;
    --sunset: #e07b53;
    --charcoal: #2c2c2c;
    --text: #3d3d3d;
    --text-light: #6b6b6b;
}

body {
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--warm-white);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 6%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    /* WebP: 109KB vs JPG: 450KB - 76% smaller. WebP supported by 97%+ browsers */
    background: linear-gradient(to bottom, rgba(20, 35, 28, 0.85), rgba(30, 50, 42, 0.92)),
                url('images/hero-bg.webp') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-background {
    display: none; /* Hidden - using real background image instead */
}

.hero-background .stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 160px 20px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 250px 90px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 300px 30px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 350px 70px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 400px 45px, rgba(255,255,255,0.6), transparent);
    background-size: 450px 120px;
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-background .mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
}

.hero-background .mountain-back {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 60%;
    height: 100%;
    background: var(--forest);
    clip-path: polygon(0% 100%, 25% 40%, 45% 70%, 70% 25%, 100% 100%);
    opacity: 0.6;
}

.hero-background .mountain-front {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 70%;
    height: 85%;
    background: linear-gradient(180deg, var(--forest-dark) 0%, #243b31 100%);
    clip-path: polygon(0% 100%, 30% 50%, 50% 75%, 75% 20%, 100% 60%, 100% 100%);
}

.hero-background .trees {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60'%3E%3Cpath d='M50 5 L58 25 L54 25 L60 40 L55 40 L62 55 L38 55 L45 40 L40 40 L46 25 L42 25 Z' fill='%231a2e25'/%3E%3C/svg%3E") repeat-x;
    background-size: 80px 100%;
    background-position: bottom;
}

.moon {
    position: absolute;
    top: 15%;
    right: 12%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #fffef0, #f0e68c);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 254, 240, 0.4), 0 0 80px rgba(255, 254, 240, 0.2);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 6% 3rem;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: #e8b84a;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--copper);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--copper);
}

.cta-button:hover {
    background: #a06429;
    border-color: #a06429;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(245, 241, 232, 0.5);
    color: var(--cream);
}

.cta-button.secondary:hover {
    background: rgba(245, 241, 232, 0.1);
    border-color: var(--cream);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.2rem;
    color: var(--copper);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.7);
    margin-top: 0.25rem;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 6%;
    background: var(--warm-white);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 1rem;
}

.comparison-section h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--forest-dark);
    font-weight: 700;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 750px;
}

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

.comparison-table th {
    background: var(--forest);
    color: var(--cream);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.comparison-table th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table tbody tr {
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: var(--cream);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

.comparison-table td strong {
    color: var(--forest-dark);
    font-weight: 600;
}

.score {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.score.high {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.score.medium {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    color: #f57f17;
}

.score.low {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
}

.score.total {
    font-size: 1rem;
    padding: 0.4rem 0.9rem;
    font-weight: 700;
}

.actions-cell {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-review,
.btn-buy {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-review {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn-review:hover {
    background: var(--forest);
    color: white;
}

.btn-buy {
    background: var(--copper);
    color: white;
    border: 1.5px solid var(--copper);
}

.btn-buy:hover {
    background: #a06429;
    border-color: #a06429;
    transform: translateY(-1px);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 6%;
    background: var(--cream);
}

.reviews-section .section-header {
    margin-bottom: 3.5rem;
}

.reviews-section h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.6rem;
    color: var(--forest-dark);
    font-weight: 700;
}

.review-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    color: var(--cream);
}

.review-header h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.review-score {
    background: var(--copper);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

.review-content {
    padding: 2rem;
}

.review-summary {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
    border-left: 3px solid var(--sage);
    padding-left: 1.25rem;
    font-style: italic;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.pros h4,
.cons h4 {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros h4 {
    color: #2e7d32;
}

.pros h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2e7d32;
    border-radius: 50%;
}

.cons h4 {
    color: #c62828;
}

.cons h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #c62828;
    border-radius: 50%;
}

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

.pros li,
.cons li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: 700;
}

.verdict {
    padding: 1.25rem 1.5rem;
    background: var(--cream);
    border-radius: 8px;
    color: var(--forest-dark);
}

.verdict strong {
    color: var(--copper);
}

/* Footer */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
}

.footer-main {
    padding: 4rem 6% 3rem;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
}

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

.footer-logo {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--copper);
}

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 6%;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.6;
}

/* Legacy footer-content for review pages */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 0;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .moon {
        width: 50px;
        height: 50px;
        top: 12%;
        right: 8%;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 7rem 5% 3rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        justify-content: center;
    }

    .comparison-section,
    .reviews-section {
        padding: 4rem 5%;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-column h4 {
        font-size: 0.85rem;
    }

    .comparison-section h2,
    .reviews-section h2 {
        font-size: 2rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

/* Product Cell with Thumbnail */
.product-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

/* Discount Badges */
.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--copper), #d4894a);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.discount-badge-none {
    display: inline-block;
    background: #e0e0e0;
    color: #666;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Discount Info Section */
.discount-info {
    margin-top: 4rem;
    text-align: center;
}

.discount-info h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.8rem;
    color: var(--forest-dark);
    margin-bottom: 2rem;
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.discount-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.partner-name {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-dark);
}

.discount-code {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--cream);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    color: var(--forest-dark);
    letter-spacing: 2px;
}

.discount-amount {
    color: var(--copper);
    font-weight: 600;
    font-size: 1.1rem;
}

.discount-link {
    display: inline-block;
    color: var(--forest);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--forest);
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.discount-link:hover {
    background: var(--forest);
    color: white;
}

/* Review Images */
.review-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Review CTA */
.review-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.price-tag {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 1rem;
}

.discount-note {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--copper);
    display: block;
    margin-top: 0.25rem;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-review,
.cta-buttons .btn-buy {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Partners Section */
.partners-section {
    padding: 5rem 6%;
    background: var(--warm-white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.partner-card .partner-name {
    font-size: 1.2rem;
}

.partner-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.partner-discount {
    background: var(--cream);
    color: var(--copper);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .discount-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-buy,
    .cta-buttons .btn-review {
        text-align: center;
        justify-content: center;
    }

    .price-tag {
        font-size: 1.3rem;
    }
}

/* New Discount Section */
.discount-section-new {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    border-radius: 20px;
    color: white;
}

.discount-section-new h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.discount-intro {
    text-align: center;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.discount-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.discount-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    color: var(--text);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.discount-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.discount-card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    min-height: 80px;
}

.discount-brand-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.discount-brand-text {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.discount-badge-new {
    background: var(--forest);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge-new.budget {
    background: var(--copper);
}

.discount-card-body {
    padding: 1.5rem;
    flex: 1;
}

.discount-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.discount-code-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.code-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.code-display code {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 2px;
}

.copy-btn {
    background: var(--forest);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--forest-dark);
    transform: scale(1.05);
}

.copy-btn.copied {
    background: #22c55e;
}

.discount-savings {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.savings-amount {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.savings-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.discount-card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.discount-cta-btn {
    flex: 1;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.discount-cta-btn.primary {
    background: var(--forest);
    color: white;
}

.discount-cta-btn.primary:hover {
    background: var(--forest-dark);
    transform: translateY(-1px);
}

.discount-details-link {
    color: var(--forest);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.discount-details-link:hover {
    text-decoration: underline;
}

.all-codes-cta {
    text-align: center;
    padding-top: 1rem;
}

.btn-all-codes {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-all-codes:hover {
    background: white;
    color: var(--forest);
    border-color: white;
}

@media (max-width: 1024px) {
    .discount-cards-grid {
        grid-template-columns: 1fr;
    }

    .discount-section-new {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .discount-card-footer {
        flex-direction: column;
    }

    .discount-cta-btn {
        width: 100%;
    }

    .discount-details-link {
        margin-top: 0.5rem;
    }
}

/* Region Popup */
.region-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.region-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.region-popup-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.region-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.region-popup-close:hover {
    background: var(--cream);
    color: var(--text);
}

.region-popup-content h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.region-popup-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.region-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.region-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.region-eu {
    background: linear-gradient(135deg, #003399 0%, #004db3 100%);
    color: white;
}

.region-eu:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 51, 153, 0.3);
}

.region-us {
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7a 100%);
    color: white;
}

.region-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.region-flag {
    font-size: 2rem;
}

.region-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.region-price {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.9;
}

.region-discount {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.region-discount strong {
    color: var(--forest);
    background: var(--cream);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
}

@media (max-width: 480px) {
    .region-popup-content {
        padding: 2rem 1.5rem;
    }

    .region-buttons {
        flex-direction: column;
    }

    .region-btn {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .region-flag {
        font-size: 1.5rem;
    }
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--forest-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
}

/* ===== TOUCH-FRIENDLY BUTTONS ===== */
@media (pointer: coarse) {
    .btn-review,
    .btn-buy,
    .cta-button,
    .nav-links a,
    .copy-btn,
    .discount-cta-btn,
    .btn-all-codes {
        min-height: 44px;
        min-width: 44px;
    }

    .btn-review,
    .btn-buy {
        padding: 0.7rem 1.2rem;
    }
}

@media (hover: none) {
    .cta-button:hover {
        transform: none;
    }
    .cta-button:active {
        transform: scale(0.98);
    }

    .btn-buy:hover {
        transform: none;
    }
    .btn-buy:active {
        transform: scale(0.98);
    }

    .partner-card:hover {
        transform: none;
    }
    .partner-card:active {
        transform: scale(0.98);
    }

    .discount-card-new:hover {
        transform: none;
    }
    .discount-card-new:active {
        transform: scale(0.99);
    }
}

/* ===== RESPONSIVE TABLES (Mobile Card Layout) ===== */
@media (max-width: 768px) {
    .table-container {
        overflow-x: visible;
        box-shadow: none;
        border: none;
    }

    .comparison-table {
        min-width: 0;
        border: none;
        background: transparent;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table tr {
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: 12px;
        padding: 1.25rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .comparison-table tbody tr:hover {
        background: white;
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
        text-align: right;
    }

    .comparison-table td:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        text-align: left;
    }

    .comparison-table td:first-child {
        border-bottom: 2px solid var(--sage);
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
    }

    .comparison-table td:first-child::before {
        display: none;
    }

    .product-cell {
        width: 100%;
        justify-content: flex-start;
    }

    .product-cell strong {
        font-size: 1.1rem;
    }

    .actions-cell {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .actions-cell .btn-review,
    .actions-cell .btn-buy {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 0.85rem 1rem;
    }
}

/* ===== 375px BREAKPOINT (Ultra-small phones) ===== */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .comparison-section h2,
    .reviews-section h2 {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .discount-section-new {
        padding: 1.5rem 1rem;
    }

    .discount-section-new h3 {
        font-size: 1.5rem;
    }

    .discount-code-box {
        padding: 0.75rem;
    }

    .code-display code {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .partners-grid {
        gap: 1rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .navbar {
        padding: 1rem 4%;
    }

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

/* ===== REVIEWS HUB PAGE ===== */
.reviews-hub {
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.reviews-hub .breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.reviews-hub .breadcrumb a {
    color: var(--forest-dark);
    text-decoration: none;
}

.reviews-hub .breadcrumb a:hover {
    text-decoration: underline;
}

.reviews-hub-hero {
    text-align: center;
    padding: 3rem 0;
}

.reviews-hub-hero h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--forest-dark);
    margin-bottom: 1rem;
}

.reviews-hub-hero p {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 650px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card-link {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.review-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--copper);
}

.review-card-link.featured {
    border-color: var(--copper);
    background: linear-gradient(135deg, #fff 0%, #faf7f0 100%);
}

.review-card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--forest);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.review-card-badge.value {
    background: var(--forest);
}

.review-card-badge.budget {
    background: var(--copper);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-card-brand {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.review-card-score {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
}

.review-card-score.high {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.review-card-score.medium {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    color: #f57f17;
}

.review-card-link h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.2rem;
    color: var(--forest-dark);
    margin-bottom: 0.25rem;
}

.review-card-type {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.review-card-summary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    flex: 1;
    margin-bottom: 1rem;
}

.review-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.review-card-discount {
    background: linear-gradient(135deg, var(--copper), #d4894a);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.review-card-cta {
    color: var(--copper);
    font-weight: 500;
}

/* Reviews CTA */
.reviews-cta {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    text-align: center;
}

.reviews-cta h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    color: var(--forest-dark);
    margin-bottom: 0.75rem;
}

.reviews-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.reviews-cta-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-link-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--forest);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.cta-link-primary:hover {
    background: var(--forest-dark);
    transform: translateY(-1px);
}

.cta-link-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: white;
    color: var(--forest);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--forest);
    transition: all 0.2s;
}

.cta-link-secondary:hover {
    background: var(--forest);
    color: white;
}

@media (max-width: 768px) {
    .review-cards {
        grid-template-columns: 1fr;
    }

    .reviews-cta {
        padding: 2rem 1.5rem;
    }

    .reviews-cta-links {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== RELATED REVIEWS SECTION ===== */
.related-reviews {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.related-reviews h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.6rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-review-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
}

.related-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--copper);
}

.related-review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--forest-dark);
}

.related-review-arrow {
    font-size: 1.2rem;
    color: var(--copper);
    transition: transform 0.2s;
}

.related-review-card:hover .related-review-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .related-reviews {
        padding: 2rem 1.5rem 3rem;
    }

    .related-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 1.5rem;
}

.lang-current {
    background: transparent;
    border: 1px solid rgba(245, 241, 232, 0.3);
    color: var(--cream);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: border-color 0.2s;
}

.lang-current:hover {
    border-color: rgba(245, 241, 232, 0.6);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--forest-dark);
    border: 1px solid rgba(245, 241, 232, 0.15);
    border-radius: 8px;
    list-style: none;
    padding: 0.4rem 0;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 200;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 6px;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
    display: block;
}

.lang-dropdown li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.15s;
}

.lang-dropdown li a:hover {
    background: rgba(245, 241, 232, 0.1);
}

.lang-dropdown li a.lang-active {
    font-weight: 600;
    background: rgba(245, 241, 232, 0.05);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-right: auto;
        position: absolute;
        top: 1.5rem;
        right: 60px;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }
}
