:root {
    --primary: #D4A373;
    /* Warm Gold/Paper */
    --primary-dark: #b08255;
    --secondary: #CCD5AE;
    /* Soft Sage */
    --accent: #E9EDC9;
    /* Cream */
    --text: #333333;
    --text-light: #666666;
    --bg: #FAFAF5;
    --white: #FFFFFF;
    --success: #2A9D8F;
    --cta: #E76F51;
    /* Vibrant Terra Cotta for buttons */
    --cta-hover: #d65d40;

    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #2C3E50;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--cta);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 400px;
    background-color: #27AE60;
    /* Green for final conversion */
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large:hover {
    background-color: #219150;
    transform: scale(1.02);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFFDF5 0%, #F0F4E3 100%);
    overflow: hidden;
    text-align: center;
    /* Centering everything in hero */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    /* Limit width for readability since it's centered */
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.hero-image-container {
    margin: 1rem auto 2rem auto;
    /* Centered with auto margins */
    max-width: 400px;
    /* Control image size */
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image-container img,
.hero-image-container video {
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
    transform: rotate(-1deg);
    transition: transform 0.5s ease;
    margin: 0 auto;
    /* Ensure image itself is centered */
    border-radius: var(--radius);
    /* Ensure video has rounded corners too */
    max-width: 100%;
    /* Ensure responsiveness */
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-image-container:hover img,
.hero-image-container:hover video {
    transform: rotate(0deg) scale(1.02);
}

/* Brand Name */
.brand-name {
    display: block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Hero Image Container Update for Badge */
.hero-image-container {
    margin: 1rem auto 2rem auto;
    max-width: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    /* Needed for absolute positioning of badge */
}

.bonus-badge {
    position: absolute;
    bottom: -15px;
    right: 10px;
    background: var(--cta);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    z-index: 10;
    border: 3px solid white;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-5px);
    }
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.secure-badge i {
    width: 16px;
    height: 16px;
}

/* Animation Classes */
.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}


/* Emotional Hook */
.emotional-hook {
    padding: 5rem 0;
    background-color: white;
}

.hook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hook-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hook-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hook-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-feature {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 4px solid var(--primary);
}

.card-feature h3 {
    font-size: 1.2rem;
    margin: 0;
}

.icon-gold {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Product Showcase */
.product-showcase {
    padding: 3rem 0;
    /* Reduced from 5rem */
    background-color: #F8F9FA;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    /* Reduced margin */
}

.section-header h2 {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    /* Reduced gap */
}

.feature-item {
    background: white;
    padding: 1.5rem;
    /* Reduced padding */
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    /* Reduced icon size */
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Bonuses */
.bonuses {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #FFF 0%, #FFFDF5 100%);
}

.tag {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.bonus-card {
    background: white;
    border: 1px solid #EEE;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.bonus-img-wrapper {
    width: 90px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #f0f0f0;
}

.bonus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content-wrapper {
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

.offer-content-wrapper ul {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-top: 10px;
}

.offer-content-wrapper li {
    margin-bottom: 10px;
    display: flex;
    /* Align checkmark and text */
    gap: 8px;
}

.bonus-content h4 {
    color: var(--cta);
    margin-bottom: 0.5rem;
}

.bonus-content .value {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.bonus-content .free {
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

/* Testimonials Carousel */
.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    padding: 1rem 0;
    /* Mask to fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    /* Ensure seamless loop by matching gap */
    width: max-content;
    animation: scroll 48s linear infinite;
    -webkit-animation: scroll 48s linear infinite;
    will-change: transform;
}

.testimonial-image-card {
    width: 280px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
    transition: transform 0.3s ease;
    background: white;
}

.testimonial-image-card:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-track:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .testimonial-image-card {
        width: 220px;
    }
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: #2C3E50;
    color: white;
}

.offer-box {
    background: white;
    color: var(--text);
    width: 100%;
    /* Changed from max-width to width to work with flex */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid #EEE;
    /* Default border */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-box.highlight {
    border: 4px solid #FFD700;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.25);
    z-index: 10;
    position: relative;
}

.offer-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 768px) {
    .offer-wrapper {
        flex-direction: column;
        gap: 20px;
        /* Reduced gap */
        padding: 0 0.5rem;
        /* Reduced side padding */
    }

    .offer-box {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
        /* Lighter border for basic */
    }

    .offer-body {
        padding: 1.5rem 1rem;
        /* Much tighter padding */
        gap: 0.8rem;
        /* Reduced gap */
    }

    .offer-header {
        padding: 1rem;
        /* Reduced header padding */
    }

    .offer-header h3 {
        font-size: 1.5rem;
        /* Slightly smaller header */
    }

    /* Highlighted Offer Styles - POP OUT */
    .offer-box.highlight {
        transform: scale(1.02);
        border: 3px solid #FFD700;
        /* Stronger border */
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        z-index: 10;
        width: 100%;
        background: #fff;
    }

    .offer-box.highlight .offer-header {
        background: linear-gradient(135deg, var(--success) 0%, #176858 100%);
        padding: 1.2rem;
    }

    .offer-box.highlight .recommendation-badge {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    /* Price Highlighting */
    .new-price {
        font-size: 3rem;
        /* Slightly smaller but still big */
        font-weight: 800;
        color: var(--success);
        line-height: 1;
        margin-bottom: 2px;
    }

    .old-price {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    /* Benefits List - Compact */
    .offer-content-wrapper {
        margin-bottom: 10px;
    }

    .offer-content-wrapper p {
        font-size: 1.05rem;
        margin-bottom: 5px;
    }

    .offer-content-wrapper li {
        margin-bottom: 4px !important;
        font-size: 1rem !important;
        /* Smaller font for list */
        line-height: 1.3;
        align-items: flex-start;
        gap: 6px;
    }

    /* Footer Group */
    .offer-footer-group {
        margin-top: 5px;
        gap: 4px;
    }

    .payment-info {
        font-size: 0.9rem !important;
        color: #666;
    }

    .guarantee-badge {
        font-size: 0.9rem !important;
        gap: 4px;
        color: #666;
    }

    .btn-large {
        padding: 1rem;
        font-size: 1.15rem;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    /* Why Buy Box - Compact */
    .offer-body .why-buy-box {
        padding: 12px !important;
        margin-bottom: 12px !important;
        border-left-width: 3px !important;
    }

    .offer-body .why-buy-box p {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
}

.offer-header {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.offer-header h3 {
    color: white;
    margin: 0;
}

/* Shine Animation for Highlighted Title */
@keyframes titleShine {
    0% {
        background-position: -100% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.offer-box.highlight .offer-header h3 {
    background: linear-gradient(90deg, #ffffff 0%, #fffeb3 50%, #ffffff 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 3s linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.recommendation-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
    letter-spacing: 1px;
}

.offer-body {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.offer-summary {
    font-size: 1.2rem;
    font-weight: 500;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--success);
    line-height: 1;
}

.payment-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    /* Desktop default */
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 10px;
    /* Desktop default */
    font-size: 0.9rem;
    color: var(--text-light);
    justify-content: center;
    /* Center content */
}

.scarcity {
    color: #E74C3C;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
}

summary {
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: var(--text-light);
}

footer {
    background: #1a252f;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

/* Sales Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 320px;
    border-left: 4px solid var(--success);
}

.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.popup-icon {
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.popup-title {
    font-weight: 700;
    color: var(--text);
    font-size: 0.85rem;
}

.popup-text {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.3;
}

.popup-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .hero-content,
    .hook-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .cta-group {
        align-items: center;
    }

    .card-feature {
        text-align: left;
    }

    /* Mobile Bonus Carousel */
    .bonus-container {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-top: 2rem;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar for cleaner look */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .bonus-container::-webkit-scrollbar {
        display: none;
    }

    .bonus-card {
        flex: 0 0 85%;
        /* Show 85% of the card to hint at more content */
        scroll-snap-align: center;
        margin-right: 0;
        /* Reset margin if any */
    }

    /* Adjusting for the new centered hero layout */
    .hero-image-container {
        max-width: 80%;
    }

    /* Force 2 columns on mobile for features */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .bonus-badge {
        right: 0;
        bottom: -10px;
        font-size: 0.9rem;
    }

    .sales-popup {
        left: 50%;
        transform: translate(-50%, 100px);
        /* Start below screen */
        bottom: 10px;
        width: 90%;
    }

    .sales-popup.show {
        transform: translate(-50%, 0);
        /* Center horizontally and show */
    }
}

/* Urgency Banner */
.urgency-banner {
    background-color: #E74C3C;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 2000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.urgency-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.urgency-track span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Urgency Timer Section */
.urgency-timer-section {
    padding: 2rem 0;
    background-color: #fdf2f2;
    /* Light red background to bridge sections */
}

.urgency-card-timer {
    background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(239, 71, 58, 0.3);
    border: 2px solid #fff;
    outline: 4px solid rgba(239, 71, 58, 0.2);
}

.urgency-content h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.separator {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* Align with numbers */
    opacity: 0.6;
}

@media (max-width: 768px) {
    .urgency-card-timer {
        padding: 1.5rem;
    }

    .urgency-content h2 {
        font-size: 1.2rem;
    }

    .countdown-wrapper {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .countdown-item span:first-child {
        font-size: 1.8rem;
    }

    .separator {
        font-size: 1.5rem;
    }
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    /* Changed from flex to none to ensure it's hidden */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.exit-popup-overlay.show {
    display: flex;
    /* Show when active */
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid var(--success);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.exit-popup-overlay.show .exit-popup-content {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .exit-popup-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .exit-title {
        font-size: 1.4rem;
    }

    .exit-description {
        font-size: 0.9rem;
    }

    .exit-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #eee;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: background 0.2s;
}

.exit-popup-close:hover {
    background: #ddd;
    color: #333;
}

.exit-badge {
    background: #E74C3C;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.exit-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2C3E50;
}

.exit-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.exit-price-box {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.exit-from {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.exit-to {
    color: var(--success);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exit-save {
    color: #E74C3C;
    font-weight: bold;
    font-size: 1rem;
    display: block;
    margin-top: 0.2rem;
}

.exit-coupon {
    background: #fff;
    border: 2px dashed #ccc;
    padding: 0.8rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

/* Kit Showcase */
.kit-showcase {
    padding: 4rem 0;
    background-color: #F8F9FA;
    overflow: hidden;
}

.kit-carousel {
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.kit-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollKit 30s linear infinite;
}

.kit-track img {
    height: 280px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@keyframes scrollKit {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.kit-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.kit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #EEE;
    transition: transform 0.2s;
}

.kit-card:hover {
    transform: translateY(-3px);
}

.kit-icon {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.kit-card span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .kit-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .kit-track img {
        height: 250px;
    }
}