:root {
    --primary-red: #e21f26;
    --primary-blue: #002d5c;
    --primary-yellow: #ffcc00;
    --dark-blue: #001a35;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 900;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 45, 92, 0.98);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    transition: transform 0.5s ease, opacity 0.5s ease;
    backdrop-filter: blur(10px);
    display: none;
    /* Hidden by default */
    opacity: 0;
    transform: translateY(100%);
}

.cookie-popup.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: bold;
    color: var(--primary-blue);
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 45, 92, 0.7), rgba(0, 45, 92, 0.7)), url('../images/88.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 12rem 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--primary-yellow);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--light-gray);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.trust-bar>.container>p {
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    color: #666;
}

/* Problem & Solution */
.problem-section {
    padding: 6rem 0;
    text-align: center;
    background-color: #fff;
}

.problem-section h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.problem-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.solution-section {
    padding: 6rem 0;
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.solution-section h2 {
    font-size: 2.2rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.solution-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.benefit-item p {
    color: #555;
}

/* Product Showcase */
.showcase {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: contain;
}

.showcase-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-yellow);
}

.product-image {
    padding: 2rem;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.3;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.product-description-list {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-description-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.product-description-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-blue);
}

/* Comparison Table */
.comparison-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: white;
}

.comparison-table .feature {
    text-align: left;
    font-weight: bold;
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--primary-blue);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-red);
}

.blog-content p {
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-red);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.read-more:hover {
    gap: 0.8rem;
    color: var(--primary-blue);
}

/* FAQ Accordion */
.faq-section {
    padding: 6rem 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(rgba(226, 31, 38, 0.92), rgba(180, 20, 30, 0.92)), url('../images/cta-bg.jpg');
    background-size: cover;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Form */
.subscription-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.subscription-form input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-buy {
    background-color: #FFD814;
    color: #0F1111;
    width: 100%;
    text-align: center;
    border-radius: 100px;
    box-shadow: 0 2px 5px 0 rgba(213, 217, 217, .5);
    border: 1px solid #FCD200;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
}

.btn-buy:hover {
    background-color: #F7CA00;
    border-color: #F2C200;
    transform: none;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.affiliate-disclosure {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Product Detail Page Styles */
.product-detail {
    padding: 8rem 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.product-detail-image {
    background: #fff;
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 140px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-detail-image:hover {
    box-shadow: 0 60px 100px rgba(0, 0, 0, 0.12);
}

.product-detail-image:hover img {
    transform: scale(1.08);
}

.product-gallery {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
    padding: 0.5rem;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    border-color: var(--primary-yellow);
}

.gallery-thumb.active {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(226, 31, 38, 0.2);
}

.product-detail-info h1 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
}

.product-detail-info .price {
    font-size: 3rem;
    color: var(--primary-red);
    font-weight: 900;
    margin-bottom: 2.5rem;
    display: block;
    letter-spacing: -1px;
}

.product-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #444;
}

.product-features {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.product-features li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    list-style: none;
    font-size: 1.1rem;
}

.product-features li::before {
    content: '🔥';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.product-reviews {
    padding: 8rem 0;
    background: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.review-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 30px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card .stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-video {
    padding: 8rem 0;
    background: var(--primary-blue);
    color: white;
    border-radius: 50px;
    margin: 6rem 0;
    text-align: center;
}

.product-video .section-title {
    color: var(--primary-yellow);
    margin-bottom: 3rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .showcase {
        grid-template-columns: 1fr;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .subscription-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}