/* Global utility styles */
i.icon-x {
    font-size: 20px;
}
a.place-order {
    text-align: center;
    background: #fe2402;
    padding: 8px;
    color: #fff;
    font-size: 20px;
    border-radius: 10px;
}
    

/*========== MODERN SEARCHBAR PREMIUM FLEX ==========*/

.modern-searchbar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 420px;  /* সার্চবক্সের মোট প্রস্থ */
    margin: 0 auto 12px auto;
    padding: 0 2vw;
    background: transparent;
    position: relative;
    z-index: 99;
}

.mobile-menu-toggle {
    background: #fff;
    border: 1.2px solid #e3eaf3;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #e3eaf319;
    cursor: pointer;
    margin: 0;
    padding: 0;
    transition: box-shadow 0.14s;
}
.mobile-menu-toggle:hover {
    box-shadow: 0 4px 16px #b1def819;
}

.modern-floating-searchbar {
    flex: 1 1 0;
    background: transparent;
    max-width: 360px;  /* সার্চ ইনপুট বক্সের প্রস্থ */
    margin: 0;
    padding: 0;
    position: static;
}

.modern-searchbar-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 16px #c8e7ff12;
    padding: 1.5px 6px 1.5px 9px;
    border: 1.2px solid #e3eaf3;
    min-height: 39px;
}

.modern-search-input {
    border: none;
    background: none;
    font-size: 1.01rem;
    padding: 7px 4px 7px 0;
    flex: 1;
    outline: none;
    font-weight: 500;
    color: #222c36;
    border-radius: 8px;
    transition: box-shadow 0.13s, background 0.18s;
}
.modern-search-input::placeholder {
    color: #b5b5c3;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
}
.modern-search-input:focus {
    background: #fafdff;
    box-shadow: 0 0 0 2px #4ebfff22;
}

.modern-search-btn {
    background: linear-gradient(120deg, #2196f3 65%, #0be3b3 120%);
    border: none;
    color: #fff;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .13s, box-shadow .13s;
    margin-left: 5px;
    box-shadow: 0 1.5px 6px #42aaff16;
    padding: 0;
}
.modern-search-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff !important;
}
.modern-search-btn:hover {
    background: linear-gradient(110deg, #137cdd 70%, #19bfa6 130%);
    box-shadow: 0 4px 14px #2de3cf1a;
}

.modern-search-results {
    position: absolute;
    top: 120px;
    left: 400px;
    width: 900px;
    background: #fff;
    border-radius: 0 0 13px 13px;
    box-shadow: 0 9px 32px #b3e6ff1c;
    max-height: 340px;
    overflow-y: auto;
    border: 1px solid #eaf0f6;
    display: none;
    z-index: 2100 !important;
    padding-top: 1px;
}

.modern-search-results ul {
    margin: 0;
    padding: 0;
}
.modern-search-results li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid #f2f4f7;
    background: none;
    transition: background .12s;
    font-size: 1.02rem;
    cursor: pointer;
}
.modern-search-results li:last-child {
    border-bottom: none;
}
.modern-search-results li:hover {
    background: #f5fcff;
}
.modern-search-thumb {
    width: 29px;
    height: 29px;
    object-fit: cover;
    border-radius: 7px;
    background: #f4f5f8;
    border: 1px solid #e9ebee;
    display: block;
}
.modern-search-title {
    font-size: .99rem;
    font-weight: 600;  /* front text bold*/
    color: #24324a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 0;
    min-width: 0;
    max-width: 70%;
    padding-right: 0;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .modern-searchbar-wrap {
        max-width: 98vw;
        padding: 0 1vw;
        gap: 5px;
    }
    .modern-floating-searchbar {
        max-width: 94vw;
        min-width: 0;
    }
    .modern-searchbar-box {
        border-radius: 8px;
        padding: 1px 2px 1px 6px;
        min-height: 35px;
    }
    .mobile-menu-toggle {
        width: 33px;
        height: 33px;
        border-radius: 7px;
    }
    .modern-search-btn {
        width: 25px;
        height: 25px;
        border-radius: 6px;
        margin-left: 2px;
    }
    .modern-search-results {
        left: 41px;
        width: 87vw;
        min-width: 140px;
        max-height: 80vh; /* Added to improve mobile usability */
        max-width: 95vw;
        top: 100%; /* Changed from 120px to sit right below the search bar */
        transform: translateY(10px);
        margin-left: -40px; /* Adjusting for wrapper padding */
    }
    
    .menu-top-area {
        position: relative;
        z-index: 10;  /* কম z-index */
    }
    .modern-searchbar-wrap {
        position: relative;
        z-index: 1500; /* বেশি z-index, যাতে always উপরে থাকে */
    }

    .modern-search-results {
        z-index: 2500 !important;
        position: absolute;
        left: 0 !important;
        top: 100%; /* Consistent positioning */
        width: 100% !important;
        min-width: 50px;
        max-width: 95vw;
        margin-left: 2.5vw;
        box-sizing: border-box; /* Added for safer width calculation */
    }
}
@media (max-width:600px) {
    .modern-search-results {
        left: 0 !important;
        width: 100vw !important;
        min-width: 120px;
        max-width: 100vw;
        margin-left: 0;
        border-radius: 0 0 13px 13px; /* Ensure mobile search results cover full width but keep border radius */
    }
}
.mascot-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.7px solid #c3eeff;
    border-radius: 50px;
    padding: 7px 16px 7px 12px;
    box-shadow: 0 2px 11px #daf4fd2a;
    color: #2472bd;
    font-weight: 600;
    font-size: 17.3px;
    gap: 7px;
    transition: all .16s;
    position: relative;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}
.mascot-cart-btn:hover {
    background: #d8f6ff;
    border-color: #6ad1ff;
    color: #0b567c;
    box-shadow: 0 6px 16px #b6ecfd42;
    transform: translateY(-1.5px) scale(1.03);
}
.mascot-eye {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(120deg, #9ad1ff 55%, #fff 100%);
    border: 2.5px solid #2196f3;
    display: flex; align-items: center; justify-content: center;
    margin-right: 2px; box-shadow: 0 2px 9px #b3e8ff2b;
    position: relative;
}
.mascot-eye-pupil {
    width: 13px; height: 13px; background: #2196f3;
    border-radius: 50%; border: 2px solid #fff;
    position: absolute; left: 7px; top: 5px;
    box-shadow: 0 2px 4px #227ad9cc;
}
.mascot-eye-reflection {
    width: 4.2px; height: 4.2px; background: #fff;
    border-radius: 50%; position: absolute; left: 10px; top: 7px; opacity: 0.6;
}
.mascot-cart-bag { font-size: 18px; margin-left: 2px; margin-right: 0; }
.mascot-cart-label { font-size: 16.3px; font-weight: 500; margin-left: 3px; letter-spacing: 0.01em; }


/* CATEGORY SIDEBAR STYLING */
.category-sidebar-toggle {
    background: #fff;
    border: 1.5px solid #b6dbfd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px;
    font-weight: 600;
    color: #1096f5;
    box-shadow: 0 1.2px 9px #eaf7ff1c;
    font-size: 17px;
    transition: all .15s;
    margin-right: 9px;
    cursor: pointer;
}
.category-sidebar-toggle:hover {
    background: #e9f8ff;
    border-color: #1096f5;
    color: #137cd8;
    box-shadow: 0 5px 15px #c5e9fd35;
}
.cat-toggle-label {font-size: 16.2px;font-weight: 500;}

.category-sidebar {
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 300px;
    background: #fff;
    box-shadow: 6px 0 32px #1096f51b;
    z-index: 2040;
    transform: translateX(-120%);
    transition: transform 0.28s cubic-bezier(.9,.06,.29,.95);
    display: flex;
    flex-direction: column;
    border-radius: 0 19px 19px 0;
    border-right: 1.7px solid #eaf1fa;
    min-width: 220px;
}
.category-sidebar.open {
    transform: translateX(0);
}
.cat-sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px 10px 20px;
    border-bottom: 1.2px solid #e6eef7;
    font-size: 1.19rem;
    font-weight: 700;
    color: #1096f5;
    background: #f6fbff;
}
.cat-sidebar-close {
    background: transparent;
    border: none;
    outline: none;
    padding: 4px;
    margin-left: 9px;
    cursor: pointer;
    border-radius: 7px;
    transition: background .13s;
}
.cat-sidebar-close:hover {
    background: #e2f3ff;
}
.category-list {
    list-style: none; margin: 0; padding: 13px 0 0 0;
    flex: 1 1 auto; overflow-y: auto;
}
.category-list li {
    padding: 0;
    margin: 0;
}
.category-list a {
    display: flex; align-items: center; gap: 13px;
    padding: 12px 22px;
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background .13s, color .13s;
}
.category-list a:hover {
    background: #f0faff;
    color: #1096f5;
}
.cat-list-icon {
    width: 31px;
    height: 31px;
    border-radius: 7px;
    object-fit: cover;
    background: #f5faff;
    border: 1.3px solid #e2ecfa;
}

.cat-sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #17365c42;
    z-index: 2039;
    transition: opacity .2s;
}
.cat-sidebar-backdrop.active {
    display: block;
    opacity: 1;
}

@media (max-width: 991.9px) {
    .category-sidebar, .category-sidebar-toggle {
        display: none !important;
    }
}


/* ======== Category Dropdown (Sidebar) ======== */
.category-list {
    list-style: none;
    margin: 0;
    padding: 13px 0 0 0;
}
.category-list > li {
    position: relative;
}
.category-list > li > a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 22px;
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background .13s, color .13s;
    cursor: pointer;
}
.category-list > li > a:hover {
    background: #f0faff;
    color: #1096f5;
}
.dropdown-arrow {
    transition: transform 0.2s;
}
.cat-has-dropdown.has-subcats:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}
.subcat-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 98%;
    min-width: 180px;
    background: #fff;
    border-radius: 9px;
    box-shadow: 2px 4px 20px #1096f522;
    margin-left: 0;
    padding: 5px 0;
    z-index: 10;
}
.cat-has-dropdown.open > .subcat-dropdown {
    display: block !important;
}
.subcat-dropdown li {
    list-style: none;
}
.subcat-dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: .97rem;
    color: #1096f5;
    border-radius: 7px;
    transition: background .12s, color .13s;
    text-decoration: none;
    font-weight: 500;
}
.subcat-dropdown a:hover {
    background: #f5faff;
    color: #1666b7;
}
@media (max-width: 991.9px) {
    .subcat-dropdown {position: static;box-shadow: none;}
    .cat-has-dropdown.has-subcats:hover > .subcat-dropdown {display: none;}
}




/* Ecom Header 2025 Styles */
#ecom-header2025 {
    background: #f7fbff;
    border-bottom: 1.2px solid #eaf1fa;
    position: sticky;
    top: 0; left: 0;
    width: 100%;
    z-index: 1500;
    box-shadow: 0 2.5px 14px #e2f6ff0e;
}
.ecom2025-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 5px 10px 3px 10px;
    min-height: 55px;
    position: relative;
    background: transparent;
    flex-wrap: nowrap;
}
.ecom2025-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex: 1 1 auto;
}
.ecom2025-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16.2px;
    font-weight: 500;
    color: #1b335a;
    background: #f5faff;
    padding: 7px 19px 7px 14px;
    border-radius: 8px;
    transition: background 0.14s, color 0.13s;
    text-decoration: none;
    box-shadow: 0 1.2px 5px #d1eaff11;
    border: 1.1px solid #e5eff7;
    margin: 0 2px;
    position: relative;
}
.ecom2025-menu a.active, .ecom2025-menu a:hover {
    color: #1096f5;
    background: #e4f4ff;
    border-color: #bde5ff;
}
.ecom2025-menu a i {
    font-size: 1.13em;
    opacity: 0.86;
    margin-right: 4px;
    width: 10px;
    text-align: center;
}
.ecom2025-actions {
    display: flex !important;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    z-index: 20;
    flex-wrap: nowrap;
}
.ecom2025-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px 6px 12px;
    font-size: 14.7px;
    border-radius: 8px;
    font-weight: 500;
    background: #fff;
    color: #2196f3;
    border: 1px solid #e2f0fa;
    box-shadow: 0 1px 5px #d9f3ff0c;
    transition: background .13s, color .11s, box-shadow .12s;
    cursor: pointer;
    text-decoration: none;
    margin-right: 1px;
}
.ecom2025-btn.track {color: #24a88a; background: #eafcf9;}
.ecom2025-btn.login {color: #2f408f; background: #f3f6fd;}
.ecom2025-btn:hover {background: #d5f3ff; color: #025e9b;}
.mascot-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.7px solid #c3eeff;
    border-radius: 50px;
    padding: 7px 16px 7px 12px;
    box-shadow: 0 2px 11px #daf4fd2a;
    color: #2472bd;
    font-weight: 600;
    font-size: 17.3px;
    gap: 7px;
    transition: all .16s;
    position: relative;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}
.mascot-cart-btn:hover {
    background: #d8f6ff;
    border-color: #6ad1ff;
    color: #0b567c;
    box-shadow: 0 6px 16px #b6ecfd42;
    transform: translateY(-1.5px) scale(1.03);
}
.mascot-eye {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(120deg, #9ad1ff 55%, #fff 100%);
    border: 2.5px solid #2196f3;
    display: flex; align-items: center; justify-content: center;
    margin-right: 2px; box-shadow: 0 2px 9px #b3e8ff2b;
    position: relative;
}
.mascot-eye-pupil {
    width: 13px; height: 13px; background: #2196f3;
    border-radius: 50%; border: 2px solid #fff;
    position: absolute; left: 7px; top: 5px;
    box-shadow: 0 2px 4px #227ad9cc;
}
.mascot-eye-reflection {
    width: 4.2px; height: 4.2px; background: #fff;
    border-radius: 50%; position: absolute; left: 10px; top: 7px; opacity: 0.6;
}
.mascot-cart-bag { font-size: 18px; margin-left: 2px; margin-right: 0; }
.mascot-cart-label { font-size: 16.3px; font-weight: 500; margin-left: 3px; letter-spacing: 0.01em; }
#cartCount {
    position:absolute;top:-7px;right:-8px;
    min-width:22px;font-size:14px;
    background: #e02b2b !important;
    color: #fff !important;
    z-index:99999 !important;
    text-align:center;
}
/* Searchbar */
.ecom2025-search-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 13px 0;
    background: transparent;
    margin-top: 10px !important;
}
.ecom2025-search-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 410px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px #d1e9ff19;
    border: 1.1px solid #e5eef9;
    padding: 1.5px 8px 1.5px 10px;
    min-height: 44px;
    gap: 4px;
    margin-top: -6px;
}
.ecom2025-search-input {
    flex: 1 1 0;
    border: none;
    background: none;
    font-size: 1.04rem;
    font-weight: 500;
    color: #222c36;
    outline: none;
    border-radius: 7px;
    padding: 11px 6px 11px 0;
}
.ecom2025-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(100deg,#2196f3 60%,#0be3b3 120%);
    color: #fff;
    border: none;
    border-radius: 7px;
    width: 23px; height: 23px;
    cursor: pointer;
    box-shadow: 0 2px 6px #21d1f619;
    transition: background .11s, box-shadow .11s;
}
.ecom2025-search-btn svg {width: 15px; height: 15px;}
    
.centered-logo-wrap {
    width: 100%;  /*centre*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0 5px 0;
    padding: 0;
}

.centered-logo-img {
    display: block;
    margin: 0 auto;
    max-width: 140px !important; /* ডেস্কটপে */
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 600px) {
    .centered-logo-img {
        max-width: 120px !important; /* মোবাইলে */
    }
}
    
/* =========== Mobile Button Compact Fix (Cart, Track, Login) =========== */
@media (max-width: 600px) {
    .ecom2025-actions {
        gap: 5px !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    .ecom2025-actions .mascot-cart-btn,
    .ecom2025-actions .ecom2025-btn {
        padding: 4px 9px 4px 7px !important;
        font-size: 13px !important;
        border-radius: 7px !important;
        min-width: 0 !important;
        height: 32px !important;
        margin: 0 1px !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 1px 3px #bfeaff19;
        line-height: 1.2 !important;
    }
    .ecom2025-actions .mascot-cart-btn {
        gap: 3px !important;
        font-size: 13.7px !important;
    }
    .mascot-cart-label { font-size: 12px !important; margin-left: 2px !important; }
    .mascot-cart-bag { font-size: 15px !important; }
    .mascot-eye { width: 16px !important; height: 16px !important; }
    .mascot-eye-pupil { width: 7px !important; height: 7px !important; left: 3.8px; top: 3.1px; }
    .mascot-eye-reflection { width: 1.7px !important; height: 1.7px !important; left: 5.3px; top: 3.7px; }
    .ecom2025-btn i,
    .mascot-cart-btn i { font-size: 13px !important; margin-right: 2px !important; }
    #cartCount {
        min-width: 12px !important;
        font-size: 10px !important;
        padding: 1.5px 0 !important;
        top: -3px !important;
        right: -6px !important;
        line-height: 1 !important;
    }
    .ecom2025-btn.track, .ecom2025-btn.login {
        font-size: 11.3px !important;
        padding: 4px 7px 4px 7px !important;
        border-radius: 6px !important;
    }
}
    

/* ========================================================= */
/* announcement-banner start */
/* ========================================================= */


/* General modal styling */
.announcement-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 50px;
    text-align: center;
    z-index: 99999;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

.announcement-banner a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


/* UPDATED: .white-popup for PC (Default) positioning */
.white-popup {
    /* Fixed position - স্ক্রল করলেও স্থির থাকবে */
    position: fixed; 
    
    /* PC: উল্লম্বভাবে 50% (মাঝখান) থেকে 5% নিচে নামানো হয়েছে */
    top: 150%; 
    /* PC: -minus kore joto kom deya hobe, toto dan side e chapbe,  */
    left: -15%;
    
    /* নিজের আকার অনুযায়ী সেন্টারে আনার জন্য */
    transform: translate(25%, 25%); 
 
    /* PC: padding joto kombe toto white popup ta chardik theke kombe  */
    
    background: white;
    padding: 5px 20px 0px;
    /* বক্স শ্যাডো সামান্য উন্নত করা হলো */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2); 
    z-index: 10000;
    
    /* PC ভিউতে যেন অতিরিক্ত চওড়া না হয় */
    max-width: 400px; 
    width: 90%; 
    
    /* Viewport Height ব্যবহার করা হলো */
    max-height: 65vh; 
    overflow-y: auto;
    
    /* PC এর জন্য সবদিকে বর্ডার রেডিয়াস */
    border-radius: 15px; 
    text-align: center;
    
    /* Ensure backdrop is not active */
    backdrop-filter: none;
    filter: none;
    
    /* পূর্বের bottom: 0; right: 0; রুলসগুলো সরানো হয়েছে */
}

/* Image style: Updated for 16:9 Aspect Ratio and Full Width */
.announcement-image {
    /* <<-- গুরুত্বপূর্ণ পরিবর্তন ১: ইমেজকে অবশ্যই 100% প্রস্থ নিতে হবে */
    max-width: 100%; 
    width: 50%; 
    
    /* <<-- গুরুত্বপূর্ণ পরিবর্তন ২: প্রস্থ অনুযায়ী উচ্চতা স্বয়ংক্রিয়ভাবে সেট হবে (16:9 বজায় থাকবে) */
    height: auto; 
    
    /* ইমেজকে অনুভূমিকভাবে মাঝখানে আনার জন্য */
    display: block;
    margin: 0 auto;
    
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


/* Title and description styles */
.announcement-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.announcement-details {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}


/* Remove any unwanted backdrop effect */
.mfp-bg {
    display: none; /* Ensure there is no backdrop */
}

/* ------------------------------------------------------------------ */
/* 💡 SWIPER JS SPECIFIC STYLES ADDED/MODIFIED BELOW */
/* ------------------------------------------------------------------ */

/* 1. Swiper Container (announcement-slider-main) কে Modal এর 100% প্রস্থ নিতে সাহায্য করা */
.white-popup .announcement-slider-main {
    /* স্লাইডারকে তার parent (.white-popup) এর প্রস্থের সাথে মানিয়ে নিতে সাহায্য করে */
    width: 100%; 
    /* স্লাইডারের উচ্চতা কন্টেন্ট অনুযায়ী সেট হবে */
    height: auto;
    /* যাতে নেভিগেশন পজিশনিং ঠিকভাবে কাজ করে */
    position: relative; 
    /* কন্টেন্ট থেকে স্লাইডারকে সামান্য আলাদা করে রাখা */
    margin-bottom: 40px; 
}

/* 2. Swiper Pagination (Dots) পজিশনিং ফিক্স করা */
.white-popup .swiper-pagination-popup {
    /* Absolute পজিশন ব্যবহার করা, যাতে এটি স্লাইডারের নিচে থাকে */
    position: absolute;
    bottom: 40px; /* স্লাইডারের নিচ থেকে একটু উপরে রাখা */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10; /* Arrow এর উপরে রাখার জন্য */
}

/* 3. Swiper Navigation (Arrows) পজিশনিং ফিক্স করা */
.white-popup .swiper-button-prev-popup,
.white-popup .swiper-button-next-popup {
    /* Arrow গুলোকে স্লাইডারের উল্লম্বভাবে মাঝে রাখা */
    top: 50%;
    transform: translateY(-50%);
    
    /* Dot/Pagination এর সাথে ওভাররাইড এড়াতে Z-index সেট করা */
    z-index: 10;
    
    /* Arrow এর সাইজ এবং ব্যাকগ্রাউন্ড আগের Owl-এর মতো করে তৈরি করা */
    width: 30px; /* ছোট করা হলো */
    height: 30px;
    margin-top: -15px; /* transform: translateY(-50%) এর সাথে সমন্বয় */
    
    /* Arrow এর আকার বৃত্তাকার করে দেওয়া */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8); /* সাদা ব্যাকগ্রাউন্ড */
    color: #000; /* Arrow এর কালার কালো করা */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
    /* Swiper এর ডিফল্ট Arrow স্টাইল বাতিল করা */
    /* content: none; */ 
    
    /* কাস্টম আইকন ব্যবহারের জন্য ডিফল্ট স্টাইল বাতিল */
    font-size: 0; 
    
    /* Flex ব্যবহার করে মাঝখানে আইকন আনা */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 4. Arrow এর ভেতরের আইকনের সাইজ ঠিক করা */
.white-popup .swiper-button-prev-popup i,
.white-popup .swiper-button-next-popup i {
    font-size: 14px; /* আইকনের সাইজ ঠিক করা */
}

/* 5. Arrow এর মার্জিন সেট করা যাতে ডটসের সাথে সংঘর্ষ না হয় */
.white-popup .swiper-button-prev-popup {
    left: 5px; /* স্লাইডারের বাম দিক থেকে দূরত্ব */
}

.white-popup .swiper-button-next-popup {
    right: 5px; /* স্লাইডারের ডান দিক থেকে দূরত্ব */
}

/* ------------------------------------------------------------------ */


/* UPDATED Media Queries for responsiveness (Mobile) */
@media (max-width: 768px) {
    
    /* Mobile-specific styling for the popup */
    .white-popup {
        /* PC-এর top সেটিং বাতিল করা হলো */
        top: initial; 
        
        /* মোবাইল ভিউতে নিচের দিক থেকে 20px উপরে বসান */
        bottom: -80px; 
        
        /* আনুভূমিকভাবে সেন্টারে আনার জন্য left: 50% */
        left: 50%; 
        
        /* শুধু X-অক্ষ বরাবর সেন্টারে আনার জন্য transform */
        transform: translateX(-50%); 
        
        /* আপনার পূর্বের max-height */
        max-height: 60%; 
        /* মোবাইলের জন্য প্রস্থ */
        max-width: 95%;
        
        /* মোবাইলের জন্য bottom-fixed লুকের জন্য border-radius ঠিক করা হলো */
        border-radius: 15px 15px 0 0;
    }
    
    .announcement-banner {
        font-size: 16px;
    }

    .announcement-title {
        font-size: 20px;
    }

    .announcement-details {
        font-size: 14px;
    }
    
    /* 💡 মোবাইল ভিউতে ইমেজ সাইজ বড় করার জন্য যোগ করা হলো */
    .announcement-image {
        width: 90%; /* <--- মোবাইলের জন্য ইমেজের প্রস্থ 90% সেট করা হলো */
        /* আপনি চাইলে 100% করতে পারেন, তবে 90% করলে দুই পাশে সামান্য মার্জিন থাকবে */
    }
}
/* ========================================================= */
/* announcement-banner END */
/* ========================================================= */








    


/* 1. Missing Component: Pulse Text Animation */
@keyframes pulseText {
    0% { transform: scale(1); text-shadow: 0 0 10px rgba(255,255,255,0.4); }
    50% { transform: scale(1.03); text-shadow: 0 0 20px rgba(255,255,255,0.8); }
    100% { transform: scale(1); text-shadow: 0 0 10px rgba(255,255,255,0.4); }
}


/* ==============================================
   Add to cart er Toster Notification CSS
   ============================================== */
   
    /* নোটিফিকেশন বক্স যাতে সাদা না দেখায় তার জন্য জোরপূর্বক কালার সেট */
    #toast-container > .toast-success {
        background-color: #28a745 !important; /* সবুজ রং */
        opacity: 1 !important;
    }
    #toast-container > .toast-error {
        background-color: #dc3545 !important; /* লাল রং */
        opacity: 1 !important;
    }
    .toast {
        opacity: 1 !important;
        box-shadow: 0 0 10px rgba(0,0,0,0.5) !important;
    }


/* ==============================================
   Important for tanslator,eita remove korle page e kichu likha dekhay, START 
   ============================================== */

/* Google Translate-এর বাড়তি ফ্রেম এবং ব্যানার লুকানোর জন্য */
    .goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, #goog-gt-tt {
        display: none !important;
    }
    body {
        top: 0px !important;
    }
    /* Google-এর ডিফল্ট বক্সটি লুকিয়ে রাখা */
    #google_translate_element {
        display: none !important;
    }
    .skiptranslate iframe {
        display: none !important;
    }
    /* ==============================================
   Important for tanslator,eita remove korle page e kichu likha dekhay, END 
   ============================================== */
    
