/* Modern Wholesale & Distribution Page Styling */

/* Override any injected inline styles from wow.js, jarallax, or other libraries */
#content > section[style],
#content > div[style],
#content section[style],
#content div[style],
.wholesale-hero-modern[style],
.wholesale-hero-modern *[style],
.hero-background-overlay[style],
.animated-shapes[style],
.hero-content-wrapper[style],
.container[style],
.row[style],
.col-lg-10[style] {
    background-size: auto !important;
}

/* Remove all injected inline styles from wholesale page elements */
.wholesale-hero-modern,
.wholesale-hero-modern *,
.wholesale-section-modern,
.wholesale-section-modern * {
    background-size: auto !important;
}

/* Hero Section */
.wholesale-hero-modern {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29 0%, #24243e 50%, #302b63 100%) !important;
    background-size: auto !important;
    overflow: hidden;
    padding: 0;
}

/* Utilities */
.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 21, 58, 0.9) 0%, rgba(45, 45, 85, 0.8) 50%, rgba(30, 41, 89, 0.9) 100%) !important;
    background-size: auto !important;
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: auto !important;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(224, 103, 38, 0.1), rgba(244, 118, 31, 0.2));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    background-size: auto !important;
}

.hero-text-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 103, 38, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    
    margin-top: 7rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(224, 103, 38, 0.2);
    transform: scale(1.05);
}

.badge-icon {
    margin-right: 8px;
    font-size: 16px;
    color: #f4761f;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #e06726, #f4761f, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e06726, #f4761f);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(224, 103, 38, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 103, 38, 0.4);
    color: white;
}

.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Section Styling */
.wholesale-section-modern {
    padding: 100px 0;
    background: #0a0e1a;
    color: #ffffff;
    position: relative;
}

.wholesale-section-modern .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.wholesale-section-modern .row {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
}

/* Prevent wholesale section styles from affecting footer */
footer.site-footer-modern .row {
    display: block !important;
    justify-content: normal !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.wholesale-section-modern .row > .col-12 {
    padding-left: 15px;
    padding-right: 15px;
}

.wholesale-section-modern.alt-bg {
    background: #11131a;
}

.de-gradient-edge-top,
.de-gradient-edge-bottom {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(224, 103, 38, 0.5), transparent);
    margin: 0;
}

/* Base section badge styling for wholesale page */
.wholesale-section-modern .section-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(224, 103, 38, 0.3) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    margin: 0 auto 1.5rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    max-width: 100% !important;
}

/* Ensure parent container centers the badge - specifically for wholesale sections */
.wholesale-section-modern .col-12.text-center {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

/* Ensure badges are centered within text-center containers in wholesale sections */
.wholesale-section-modern .text-center .section-badge {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Fallback for section-badge class in wholesale sections */
.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 103, 38, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 0 auto 1.5rem;
    width: fit-content;
    max-width: 100%;
}

.section-badge .badge-icon {
    margin-right: 8px;
    font-size: 16px;
    color: #f4761f;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.space-border {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #e06726, #f4761f);
    margin: 30px auto;
    border-radius: 50px;
}

/* Company Overview Section - Ensure proper centering */
#section-overview .row:not(.company-overview-header-row) {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#section-overview .col-lg-10.offset-lg-1,
#section-overview .col-lg-10 {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
}

/* Override Bootstrap offset margin for overview section */
#section-overview .col-lg-10.offset-lg-1 {
    margin-left: auto !important;
}

/* Overview Card */
.overview-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 103, 38, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.overview-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Service Cards */
.service-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 103, 38, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 103, 38, 0.5);
    box-shadow: 0 15px 40px rgba(224, 103, 38, 0.2);
}

.service-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e06726, #f4761f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 15px rgba(224, 103, 38, 0.3);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

/* Benefit Cards */
#section-benefits .row.g-4 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#section-benefits .row.g-4 > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 103, 38, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    height: 100%;
    min-height: 100%;
}

.benefit-card.featured {
    flex-direction: column;
    text-align: center;
    padding: 50px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 103, 38, 0.5);
    box-shadow: 0 10px 30px rgba(224, 103, 38, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #e06726, #f4761f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 5px 15px rgba(224, 103, 38, 0.3);
    align-self: center;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

/* Contact Section - Ensure proper centering */
#section-contact .row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#section-contact .col-lg-8.offset-lg-2,
#section-contact .col-lg-8 {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
}

/* Override Bootstrap offset margin for contact section */
#section-contact .col-lg-8.offset-lg-2 {
    margin-left: auto !important;
}

/* Contact Card */
.contact-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 103, 38, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Specific styling for contact section items only, not footer */
#section-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(224, 103, 38, 0.1);
    width: 100%;
    max-width: 500px;
}

#section-contact .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #e06726, #f4761f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

#section-contact .contact-info {
    text-align: left;
}

#section-contact .contact-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

#section-contact .contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

#section-contact .contact-info a {
    color: #f4761f;
    text-decoration: none;
    transition: color 0.3s ease;
}

#section-contact .contact-info a:hover {
    color: #e06726;
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card-modern,
    .benefit-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .wholesale-section-modern {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .overview-card,
    .contact-card-modern {
        padding: 30px 20px;
    }
    
    .service-card-modern {
        padding: 30px 20px;
    }
    
    .benefit-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    #section-contact .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .overview-card p {
        font-size: 1rem;
    }
}

/* Company Overview Section - Specific Centering Styles */
.company-overview-header-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.company-overview-header-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.company-overview-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(224, 103, 38, 0.3) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    margin: 0 auto 1.5rem !important;
    width: fit-content !important;
    max-width: 100% !important;
}

.company-overview-badge .badge-icon {
    margin-right: 8px;
    font-size: 16px;
    color: #f4761f;
}

.company-overview-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

/* What We Do Section - Specific Centering Styles */
.what-we-do-header-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.what-we-do-header-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.what-we-do-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(224, 103, 38, 0.3) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    margin: 0 auto 1.5rem !important;
    width: fit-content !important;
    max-width: 100% !important;
}

.what-we-do-badge .badge-icon {
    margin-right: 8px;
    font-size: 16px;
    color: #f4761f;
}

.what-we-do-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

/* Why Work With Us Section - Specific Centering Styles */
.why-work-with-us-header-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.why-work-with-us-header-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.why-work-with-us-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(224, 103, 38, 0.3) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    margin: 0 auto 1.5rem !important;
    width: fit-content !important;
    max-width: 100% !important;
}

.why-work-with-us-badge .badge-icon {
    margin-right: 8px;
    font-size: 16px;
    color: #f4761f;
}

.why-work-with-us-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

/* Ensure footer uses default styling and is not affected by wholesale page styles */
#content ~ footer.site-footer-modern,
body footer.site-footer-modern {
    background: linear-gradient(135deg, #1a2b4a 0%, #0f1729 100%) !important;
    color: #ffffff !important;
    padding: 60px 0 30px !important;
/*    margin-top: 80px !important;*/
    position: relative !important;
}

#content ~ footer.site-footer-modern *,
body footer.site-footer-modern * {
    color: inherit !important;
}

/* Reset any wholesale-specific styles that might affect footer */
#content ~ footer.site-footer-modern .container,
body footer.site-footer-modern .container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#content ~ footer.site-footer-modern .row,
body footer.site-footer-modern .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
    display: block !important;
    justify-content: normal !important;
}

/* Remove all box styling from footer contact items */
footer.site-footer-modern .contact-item,
footer.site-footer-modern .footer-contact-info .contact-item {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

/* Ensure footer contact icons don't have gradient backgrounds */
footer.site-footer-modern .contact-item i {
    width: auto !important;
    height: auto !important;
    min-width: 20px !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: inherit !important;
    color: #ffffff !important;
    margin-top: 4px !important;
    padding: 0 !important;
    display: inline-block !important;
}

/* Override footer-contact-info styling */
footer.site-footer-modern .footer-contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

/* Prevent any card/grid styling from being applied to footer */
footer.site-footer-modern .footer-contact-card,
footer.site-footer-modern .footer-contact-grid {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Ensure contact icon in footer is simple */
footer.site-footer-modern .footer-contact-icon,
footer.site-footer-modern .contact-icon {
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Final comprehensive footer reset - remove all card/box styling */
body footer.site-footer-modern *[class*="contact"],
html body footer.site-footer-modern *[class*="contact"] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Specifically target any div inside footer-contact-info with maximum specificity */
html body footer.site-footer-modern .footer-contact-info > div,
html body footer.site-footer-modern .footer-contact-info > .contact-item,
html body footer.site-footer-modern .footer-top-center > div > div,
html body footer.site-footer-modern .footer-top-center .footer-contact-info .contact-item {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Nuclear option - remove ALL backgrounds and borders from any element in footer */
html body div#wrapper footer.site-footer-modern div.footer-top div.footer-top-center div.footer-contact-info div.contact-item {
    all: unset !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    width: 100% !important;
}

/* Ensure proper text color for footer links and text with maximum specificity */
html body footer.site-footer-modern .contact-item a,
html body footer.site-footer-modern .contact-item span,
html body footer.site-footer-modern .phone-numbers a {
    color: #ffffff !important;
    opacity: 1 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

html body footer.site-footer-modern .contact-item a:hover,
html body footer.site-footer-modern .phone-numbers a:hover {
    opacity: 0.8 !important;
    text-decoration: none !important;
}

/* Comprehensive override for all injected inline styles from wow.js, jarallax, or other animation libraries */
/* This must be at the end of the file to have maximum specificity */

/* Target all elements on the wholesale page that might have injected inline styles */
#content[style],
#top[style],
section[aria-label="section"][style],
.wholesale-hero-modern[style],
.wholesale-hero-modern > *[style],
.wholesale-hero-modern div[style],
.hero-background-overlay[style],
.animated-shapes[style],
.hero-content-wrapper[style],
.hero-content-wrapper > *[style],
.hero-content-wrapper div[style],
.container[style],
.row[style],
.row > *[style],
.col-lg-10[style],
.offset-lg-1[style],
.text-center[style],
.de-gradient-edge-bottom[style],
.wholesale-section-modern[style],
.wholesale-section-modern > *[style],
.wholesale-section-modern div[style] {
    background-size: auto !important;
    background-attachment: scroll !important;
}

/* Nuclear option - remove background-size: cover from ALL elements on this page */
body #content * {
    background-size: auto !important;
}

/* Ensure hero section maintains its gradient background */
body #content .wholesale-hero-modern {
    background: linear-gradient(135deg, #0f0c29 0%, #24243e 50%, #302b63 100%) !important;
    background-size: auto !important;
}

/* Ensure overlay maintains its gradient */
body #content .hero-background-overlay {
    background: linear-gradient(135deg, rgba(14, 21, 58, 0.9) 0%, rgba(45, 45, 85, 0.8) 50%, rgba(30, 41, 89, 0.9) 100%) !important;
    background-size: auto !important;
}
