.elementor-2567 .elementor-element.elementor-element-4a6d6f6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2567 .elementor-element.elementor-element-4a6d6f6.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-2567 .elementor-element.elementor-element-4a6d6f6{--width:268.8px;}.elementor-2567 .elementor-element.elementor-element-cbfaf7e{text-align:center;}}/* Start custom CSS for text-editor, class: .elementor-element-cbfaf7e *//* ==================================================================
   1. DESKTOP & GLOBAL LAYOUT STYLES
   ================================================================== */

/* === THEME BYPASS: FULL WINDOW FIXED MEGA MENU === */
.ccb-mega-menu-wrapper {
    position: fixed !important; 
    top: auto !important; 
    left: 0 !important;
    
    /* Horizontal Scroller Fix */
    width: calc(100vw - 15px) !important; 
    max-width: calc(100vw - 15px) !important;
    box-sizing: border-box !important;
    
    background: #ffffff !important;
    padding: 40px 80px !important; 
    font-family: "Poppins", sans-serif !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important; 
    z-index: 999999 !important; 
    
    /* Vertical Scroller for Laptops */
    max-height: 75vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

/* Custom Smooth Scrollbar inside Mega Menu */
.ccb-mega-menu-wrapper::-webkit-scrollbar {
    width: 6px !important;
}
.ccb-mega-menu-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}
.ccb-mega-menu-wrapper::-webkit-scrollbar-thumb {
    background: #70CE4C !important; 
    border-radius: 10px !important;
}

/* ROW DESIGN (Exactly 4 Fluid Columns for Desktop Layout) */
.ccb-mega-menu-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; 
    grid-gap: 30px 50px !important;
    width: 100% !important;
    max-width: 1340px !important; 
    margin: 0 auto !important; 
    align-items: flex-start !important;
}

/* INDIVIDUAL COLUMN STYLING */
.ccb-mega-menu-column h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 0 14px 0 !important;
    color: #111 !important;
    text-transform: capitalize !important;
}

.ccb-mega-menu-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ccb-mega-menu-column ul li {
    margin-bottom: 9px !important;
    line-height: 1.4 !important;
}

.ccb-mega-menu-column ul li a {
    text-decoration: none !important;
    color: #444444 !important;
    font-size: 14px !important;
    transition: color .2s ease !important;
    display: inline-block !important;
}

.ccb-mega-menu-column ul li a:hover {
    color: #70CE4C !important;
}

/* RIGHT SIDE (IMAGE + BUTTON) */
.ccb-mega-menu-right-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;

    /* DESKTOP POSITION LOCK: Keeps image container on Row 1, Column 4 */
    grid-column: 4 !important;
    grid-row: 1 !important;
}

.ccb-mega-menu-img-holder {
    width: 100% !important;
    max-width: 280px !important;
    margin-bottom: 20px !important;
    border-radius: 8px !important;
    overflow: hidden;
}

/* --- IMAGE ANIMATION BASE --- */
.ccb-mega-menu-img-holder img {
    width: 100% !important;
    height: 160px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* --- IMAGE HOVER POP-UP EFFECT --- */
.ccb-mega-menu-img-holder img:hover {
    transform: scale(1.06) !important; 
    box-shadow: 0 12px 24px rgba(112, 206, 76, 0.25) !important; 
    filter: brightness(1.03) !important; 
}

/* --- BUTTON ANIMATION BASE --- */
.ccb-mega-menu-btn {
    display: inline-block !important;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 12px 35px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

/* --- BUTTON HOVER POP-UP EFFECT --- */
.ccb-mega-menu-btn:hover {
    background: #70CE4C !important; 
    transform: translateY(-5px) scale(1.04) !important; 
    box-shadow: 0 8px 20px rgba(112, 206, 76, 0.4) !important; 
}


/* ==================================================================
   2. RESPONSIVE BREAKPOINT: FIXED FOR FULL WIDTH & DEAD CENTER (< 1024px)
   ================================================================== */
@media (max-width: 1023px) {
    
    /* Wrapper ko absolute 100% full width stretch de kar side gaps zero kiye */
    .ccb-mega-menu-wrapper {
        position: relative !important; 
        display: flex !important;
        flex-direction: column !important;
        
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        
        max-height: none !important;
        padding: 25px 20px !important; 
        box-shadow: none !important;
        background: #ffffff !important; 
        gap: 20px !important;
        box-sizing: border-box !important; 
    }

    /* Content grid row single full-column layout width stretch */
    .ccb-mega-menu-row {
        grid-template-columns: 1fr !important;
        grid-gap: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .ccb-mega-menu-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .ccb-mega-menu-column h3 {
        font-size: 18px !important; 
        margin-bottom: 12px !important;
    }
    
    .ccb-mega-menu-column ul {
        width: 100% !important;
    }

    .ccb-mega-menu-column ul li {
        margin-bottom: 11px !important;
        width: 100% !important;
    }

    /* PERFECT DISPENSARY CENTER ALIGNMENT & EXTRA SPACE REMOVAL */
    .ccb-mega-menu-right-col {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 25px !important;
        padding: 0 !important;
        
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;     /* Direct horizontal center focus */
        justify-content: center !important;  /* Pure vertical focus link */
        text-align: center !important;
        box-sizing: border-box !important;

        grid-column: auto !important;
        grid-row: auto !important;
    }

    .ccb-mega-menu-img-holder {
        width: 100% !important;
        max-width: 320px !important; /* Perfect standard width lock */
        margin: 0 auto 20px auto !important; /* Mathematical auto centering */
        display: block !important;
        box-sizing: border-box !important;
    }

    .ccb-mega-menu-img-holder img {
        width: 100% !important;
        height: auto !important;
        max-height: 180px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .ccb-mega-menu-btn {
        display: inline-block !important;
        width: 100% !important; 
        max-width: 320px !important; /* Symmetric image width box matching */
        box-sizing: border-box !important;
        text-align: center !important;
        margin: 0 auto !important; 
    }
}/* End custom CSS */