/* Font Display Optimization for Font Awesome */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Pro';
    font-display: swap;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

.container, .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

.col-lg-12, .col-md-6, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-10, .col-md-4, .col-12, .col-6, .col-4, .col-8, .col-10 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix potential Bootstrap conflicts */
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

img, video, iframe, embed, object {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .text-success {
    font-size: 1.4rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 3rem;
        min-height: 100vh;
    }
    
    .hero-title {
        margin-top: 2rem;
    }
    
    .hero-title .text-success {
        font-size: 0.7rem;
        font-weight: 600;
        line-height: 1.2;
        hyphens: none;
        word-break: keep-all;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        margin-top: -1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
}

/* Recipe Card Images */
.recipe-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: 1.5rem;
}

.recipe-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-card-image {
    transform: scale(1.05);
}

/* Hero Recipe Carousel */
.hero-carousel-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 320px; /* Reserve space for carousel to prevent CLS - 280px image + 40px for controls/indicators */
}

#recipeCarousel {
    max-width: 350px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.carousel-hero-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-size: 50%;
}

.carousel-indicators {
    margin-bottom: 10px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 3px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-carousel-container {
        margin: 1.5rem 0;
        min-height: 260px; /* Reserve space for mobile carousel - 220px image + 40px for controls/indicators */
    }
    
    #recipeCarousel {
        max-width: 280px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .carousel-hero-image {
        height: 220px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
}

/* Buttons */
.btn-cta {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.6);
    color: white;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        width: 100%;
    }
    
    .recipe-card-image, .testimonial-whatsapp-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .btn-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
    }
    
    .hero-section .row {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section .col-lg-12 {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix any potential text overflow */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        word-break: keep-all;
    }
    
    .hero-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        word-break: keep-all;
        font-size: 1.4rem !important;
        line-height: 1.2;
    }
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding-bottom: 5rem !important;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: auto !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f8f9fa;
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: none !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Bonus Items Hover Effects */
.bonus-item:hover {
    transform: scale(1.03) !important;
    background: #d0f5d0 !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Bonus Card Hover Effects for Offer Section - DISABLED */
/* .bonus-products-grid .bonus-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
} */

/* Recipe Cards */
.recipe-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f8f9fa;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.recipe-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.recipe-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.recipe-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.protein-amount {
    background: #27ae60;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.prep-time {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.recipe-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Recipe section spacing */
.recipes-section {
    margin-top: 3rem;
    padding-top: 3rem;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 4rem 0;
}

.offer-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #ff6b6b;
}

.offer-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.countdown-item label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-box {
    text-align: center;
}

.original-price {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.original-price span {
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.installments {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
}

.guarantee-box {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.guarantee-box i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.guarantee-box h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.security-text {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Bonus Section */
.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #f39c12;
    position: static;
    overflow: hidden;
    transform: none !important;
    transition: none !important;
}

/* .bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-icon {
    font-size: 3rem;
    color: #f39c12;
    margin: 1rem 0;
}

.bonus-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.bonus-value {
    background: #27ae60;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.total-value {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px dashed #27ae60;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: auto !important;
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: none !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.testimonial-whatsapp-image {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 10px;
    overflow: hidden !important;
    box-sizing: border-box !important;
    position: relative;
}

.testimonial-whatsapp-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    box-sizing: border-box !important;
    position: relative;
}

/* Testimonials Carousel */
#testimonialsCarousel {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 10px;
}


@media (max-width: 768px) {
    #testimonialsCarousel {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .testimonial-carousel-image {
        max-height: 500px;
    }
    
}

.stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.social-proof {
    background: #27ae60;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
}

.social-proof i {
    margin-right: 0.5rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.urgency-text {
    color: #f39c12;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .offer-section img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .bonus-card {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        height: auto !important;
        overflow: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .testimonial-card::-webkit-scrollbar {
        display: none !important;
    }
    
    .pricing-box {
        text-align: center;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .floating-discount {
        font-size: 0.8rem;
        padding: 0.5rem;
        max-width: calc(100vw - 40px);
        word-wrap: break-word;
    }
    
    .hero-section .min-vh-100 {
        min-height: auto;
        padding: 2rem 0;
        width: 100%;
    }
    
    .offer-book-image img {
        max-width: 280px !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .testimonials-section .row,
    .benefits-section .row,
    .recipes-section {
        margin-top: 4rem;
    }
    
    .recipes-section .row,
    .offer-section .row {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonials-section .col-md-6,
    .benefits-section .col-md-6,
    .recipes-section .col-md-6,
    .benefits-section .col-lg-4,
    .recipes-section .col-lg-4 {
        padding: 0 10px;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix modal issues on mobile */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
    }
    
    .modal-content {
        max-width: 100%;
    }
    
    /* Fix table responsiveness if any */
    table {
        width: 100%;
        table-layout: fixed;
    }
    
    /* Fix any forms */
    input, textarea, select {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
}

.urgency-text i {
    margin-right: 0.5rem;
}

/* Final Bug Prevention Rules */
/* Ensure no element can cause horizontal overflow */
section, div, header, footer, main, article, aside, nav {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix any potential Bootstrap grid issues */
.g-4 > *, .g-3 > *, .g-2 > *, .g-1 > * {
    max-width: 100%;
}

/* Prevent text from causing overflow */
.hero-title, .section-title, .cta-title, .offer-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    word-break: keep-all;
}

/* Ensure buttons don't cause overflow on small screens */
.btn {
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

/* Fix potential issues with floating elements */
.floating-discount {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: calc(100vw - 40px);
    z-index: 1000;
    box-sizing: border-box;
}

/* Mobile specific fixes */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.2;
        hyphens: none;
        word-break: keep-all;
    }
    
    .hero-title .text-success {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .btn-cta {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .floating-discount {
        right: 10px;
        bottom: 10px;
        max-width: calc(100vw - 20px);
        font-size: 0.7rem;
        padding: 0.4rem;
    }
}

/* Ultra small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1rem;
        line-height: 1.1;
        hyphens: none;
        word-break: keep-all;
    }
    
    .hero-title .text-success {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    .btn-cta {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .recipe-slide {
        flex: 0 0 110px;
        margin-right: 8px;
    }
    
    .recipe-image {
        height: 90px;
    }
}

/* Landscape mobile fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section .min-vh-100 {
        min-height: 70vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        hyphens: none;
        word-break: keep-all;
    }
    
    .hero-title .text-success {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* Additional title text fitting rules */
.hero-title {
    display: block;
    white-space: normal;
}

.hero-title span {
    display: inline-block;
    margin: 0.1rem 0;
}

/* Prevent hyphenation on all title elements */
.hero-title, .section-title, .cta-title, .offer-title,
.hero-title *, .section-title *, .cta-title *, .offer-title * {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal;
}

/* Ensure no negative margins cause issues */
@media (max-width: 768px) {
    body, html {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .container, .container-fluid {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix specific elements that could cause overflow */
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Fix sections */
    section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Fix hero section */
    .hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .hero-section .row {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-section .col-lg-12 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* Final overflow prevention */
body, html {
    position: relative;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Absolute prevention of horizontal scroll */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Additional safety for all elements */
main, section, div, header, footer, article, aside, nav {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Complete scrollbar elimination for ALL cards */
.benefit-card, .testimonial-card, .recipe-card, .bonus-card,
.benefit-card *, .testimonial-card *, .recipe-card *, .bonus-card * {
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: auto !important;
    transform: none !important;
    transition: none !important;
    position: static !important;
}

.benefit-card::-webkit-scrollbar,
.testimonial-card::-webkit-scrollbar,
.recipe-card::-webkit-scrollbar,
.bonus-card::-webkit-scrollbar,
.benefit-card *::-webkit-scrollbar,
.testimonial-card *::-webkit-scrollbar,
.recipe-card *::-webkit-scrollbar,
.bonus-card *::-webkit-scrollbar {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
}

/* Force all card heights to auto to prevent overflow */
.row .col-md-6 .benefit-card,
.row .col-md-6 .testimonial-card,
.row .col-lg-4 .benefit-card,
.row .col-lg-4 .testimonial-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

/* Extra override for Bootstrap columns */
.col-md-6, .col-lg-4 {
    overflow: hidden !important;
}

/* Final nuclear option - hide all scrollbars everywhere in cards */
.benefits-section *, .testimonials-section * {
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.benefits-section *::-webkit-scrollbar, 
.testimonials-section *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Force box-sizing on all elements */
*, *::before, *::after {
    box-sizing: border-box !important;
    max-width: 100% !important;
}

/* Prevent scrolling on all cards */
.benefit-card, .recipe-card, .bonus-card, .testimonial-card,
.benefit-card *, .recipe-card *, .bonus-card *, .testimonial-card * {
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: none !important;
}

/* Hide scrollbars completely */
.benefit-card::-webkit-scrollbar,
.recipe-card::-webkit-scrollbar,
.bonus-card::-webkit-scrollbar,
.testimonial-card::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Remove height restrictions that cause scrolling */
.benefit-card,
.recipe-card,
.bonus-card,
.testimonial-card {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    transform: none !important;
    transition: none !important;
    position: static !important;
}

/* Specific overflow fixes for problematic elements */
.testimonial-whatsapp-image, .testimonial-whatsapp-image img {
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
}

/* Bootstrap overrides for scroll prevention */
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden !important;
}

/* Prevent any margins from causing issues */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 480px) {
    .container, .container-fluid {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-title .text-success {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .btn-cta {
        font-size: 1.4rem;
        padding: 1.3rem 3rem;
    }
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-title .text-success {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        font-size: 1.5rem;
        padding: 1.4rem 3.5rem;
    }
}

/* Footer */
.footer {
    background-color: #2c3e50 !important;
}

.security-info {
    font-size: 1.1rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Checkout Modal */
.checkout-summary ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.checkout-summary ul li:last-child {
    border-bottom: none;
}

.final-price {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .recipe-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .benefit-card,
    .recipe-card,
    .bonus-card,
    .testimonial-card {
        margin-bottom: 1rem;
        overflow: hidden !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure all card content doesn't scroll */
    .benefit-card *,
    .recipe-card *,
    .bonus-card *,
    .testimonial-card * {
        overflow: hidden !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .offer-card {
        padding: 2rem 1rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
}
