/* Page-wide centering fix for zoom */
html {
    /* Standard scroll behavior */
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0 auto;
}


/* Ensure all major sections stay centered */
.professional-header,
.hero-slider-section,
.concern-section,
.product-section,
.real-stories-section,
.youtube-section,
.trust-section,
.modern-footer {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Fix for sections with full-width backgrounds */
section {
    width: 100%;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

/* Ensure promo bar stays full width and centered */
.promo-bar {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
}

/* Container centering reinforcement */
.container {
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
}

/* Fix for grid layouts on zoom */
.products-row,
.footer-top,
.footer-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/* Products grid specific centering */
.product-section .products-row {
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    display: grid !important;
    justify-content: center !important;
}

/* Force all product cards to stay within bounds */
.product-card {
    max-width: 100% !important;
}

/* Additional section centering */
.product-section,
.lightning-sale {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* MOBILE FIX - Override desktop widths */
@media (max-width: 768px) {
    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .product-section .products-row {
        max-width: 100% !important;
        padding: 0 10px !important;
    }

    .hero-slider-section {
        max-height: 180px !important;
        height: 180px !important;
    }
}

/* REMOVE GAP BETWEEN HEADER AND BANNER - AGGRESSIVE FIX */
/* Forcefully pull the banner up to meet the header */
@media (min-width: 1025px) {
    .hero-slider-section {
        margin-top: -60px !important;
        padding-top: 0 !important;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 1024px) {
    .hero-slider-section {
        margin-top: -45px !important;
        padding-top: 0 !important;
        position: relative;
        z-index: 1;
    }
}

/* REDUCE GAP BELOW HERO BANNER */
.concern-section {
    padding-top: 5px !important;
    padding-bottom: 20px !important;
}

/* REDUCE GAP BETWEEN CONCERN AND PRODUCT SECTION */
.product-section {
    padding-top: 20px !important;
}

/* REDUCE GAP BETWEEN SECTION HEADER AND PRODUCTS */
.section-header {
    margin-bottom: 5px !important;
}

.section-title {
    margin-bottom: 0 !important;
}

/* REDUCE GAP FOR PROMISE SECTION */
.goodness-promise-section {
    padding: 20px 0 !important;
}

/* CUSTOMER SECTION REVAMP */
.testimonials-section {
    padding: 50px 0 !important;
    background: #f4f9f5 !important;
}

.testimonials-section .section-header {
    margin-bottom: 30px !important;
}

.testimonials-section .section-title {
    color: #1B4332 !important;
    font-weight: 800 !important;
}

.review-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 20px;
    border: 1px solid rgba(27, 67, 50, 0.05) !important;
}

.review-card-inner {
    padding: 25px !important;
}

.testimonial-text {
    color: #4b5563 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.testimonial-author strong {
    color: #1B4332 !important;
}


/* COMPACT REVIEW CARDS WITH FULL IMAGE */
.review-image-container {
    height: 250px !important;
    background: #f4f4f4 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.review-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* Show full image */
    border-radius: 10px !important;
}

.review-card-inner {
    padding: 20px !important;
}

.testimonial-text {
    font-size: 14px !important;
    margin-bottom: 15px !important;
    line-height: 1.5 !important;
}


/* OPTIMIZE CERTIFICATE SECTION (WHY CHOOSE US) */
.why-choose-section {
    padding: 30px 0 !important;
}

.why-choose-card {
    padding: 15px !important;
    min-height: auto !important;
}

.why-icon img {
    height: 80px !important;
    width: auto !important;
    margin-bottom: 10px !important;
}

.why-choose-card h3 {
    font-size: 16px !important;
    margin-bottom: 5px !important;
}

.why-choose-card p {
    font-size: 13px !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
}

/* MOBILE SEARCH BAR FIX - COMPACT - MOVED TO PREMIUM-HEADER.CSS */

/* HIDE GOODNESS CONTENT ON MOBILE (Only Video) */
@media (max-width: 768px) {
    .goodness-content {
        display: none !important;
    }

    /* HIDE REVIEW DOTS ON MOBILE */
    .review-dot,
    .review-dots,
    #reviewDots {
        display: none !important;
    }
}

/* HIDE GOODNESS BUTTONS ON MOBILE (Only Video) */
@media (max-width: 768px) {
    .goodness-buttons {
        display: none !important;
    }
}