/* Make hero span full width when right slider banners are removed */
    .home-section-wrap .home-section-inner {
        display: block !important;               /* cancel any grid/2-column layout */
        grid-template-columns: none !important;  /* if it was a CSS grid */
    }
    .home-section-wrap .home-slider-wrap {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 0 100% !important;               /* if it was flex */
    }
    
/* Featured Categories: keep header stacked and centered on all widths */
    .featured-categories-header {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .featured-categories-header .featured-categories-text {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-bottom: 16px !important;
    }
    .featured-categories-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 8px;
    }
/* Featured Categories: center the tabs list */
    .featured-categories-header .featured-categories-tabs {
        margin-left: auto !important;   /* override theme */
        margin-right: auto !important;  /* pair with auto to center */
        justify-content: center !important;
        display: flex !important;       /* ensure flex for centering */
        flex-wrap: wrap;                /* allow wrapping on smaller widths */
        gap: 8px;
    }
    
/* Desktop-only: stop hero banner from cropping */
@media (min-width: 1200px) {
    .home-section-wrap .slider-bg-image {
        background-size: contain !important;      /* show whole image */
        background-position: center center !important;
        background-repeat: no-repeat;
    }
}

/* Floating WhatsApp Button (Default Desktop Positioning) */
#whatsapp-float {
    position: fixed;
    bottom: 50px;      /* lifted a bit */
    right: 30px;       /* more spacing from edge */
    z-index: 99999;
    background: #25D366;
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

#whatsapp-float:hover {
    transform: scale(1.08);
    opacity: .75;
}

#whatsapp-float .whatsapp-icon {
    width: 28px;
    height: 28px;
}

/* MOBILE ADJUSTMENT — moves button above bottom navigation */
@media (max-width: 768px) {
    #whatsapp-float {
        bottom: 120px;   /* lifts button above mobile menu bar */
        right: 20px;
        padding: 12px;
    }
}

/* Remove background number behind checkout/cart step labels only */
.step-tabs .bg-text {
    display: none !important;
}




