* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: linear-gradient(270deg, #5EB2A2 0.52%, #4EA0BF 99.48%);
    --tow-main-color: #68d391;
    --three-color: #4299e1;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

html {
    overflow-x: hidden !important;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}


* {
    scrollbar-width: thin;
    scrollbar-color: #5EB2A2 #f1f1f1;
}


.container {
    margin: 0 auto;
    max-width: 1500px;
    width: 100%;
    padding: 0 20px;
}


a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

@font-face {
    font-family: 'CAREEM';
    src: url('../font/CAREEM-BOLD.4E85A226FB03BDDC2CB7.otf') format('woff2'),
        url('../font/CAREEM-BOLD.4E85A226FB03BDDC2CB7.otf') format('woff');
    font-weight: 600;
}

@font-face {
    font-family: 'CAREEM';
    src: url('../font/CAREEM-REGULAR.DB5F2BCA26992ED25A89.otf') format('woff2'),
        url('../font/CAREEM-REGULAR.DB5F2BCA26992ED25A89.otf') format('woff');
    font-weight: 500;
}


body {
    direction: ltr !important;
    font-family: 'CAREEM', sans-serif;
    overflow-x: hidden !important;
}


input {
    font-family: 'CAREEM', sans-serif;
}

/*===================== HEADER TOP =====================*/

.header-animated {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.navbar-animated {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease;
}

.navbar-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

#toast-container {
    z-index: 9999999999999999 !important;
}

.header-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding-bottom: 10px;
}

.fs-9 {
    font-size: .4rem !important;
}

.fs-8 {
    font-size: .5rem !important;
}

.fs-7 {
    font-size: .75rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}




.main_toogel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_main .header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}

.main_logo img {
    max-width: 150px;
    height: auto;
    cursor: pointer;
}

.search-button {
    width: 50px;
    height: 40px;
    background: #F2971F !important;
    border: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.search-button svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}


.search-wrapper {
    background: #FCFCFC;
    border-radius: 20px !important;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 40px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}


.search-wrapper img {
    height: 25px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
    text-align: right;
}

.search-input::placeholder {
    color: #aaa;
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    border-radius: 6px;
    position: absolute;
    right: 15px;
}

.icon-button:first-of-type {
    right: 55px;
}

.icon-button:hover {
    background: #f5f5f5;
}

.icon-button svg {
    width: 24px;
    height: 24px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.scan-icon {
    stroke-width: 1;
}

.mic-icon {
    fill: #666;
}

.header_cart_hart {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-tool-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-decoration: none;
    color: #4b566b;
    font-size: 15px;
    font-weight: 600;
}

.navbar-tool-text small {
    font-size: 8px;
    margin-bottom: 3px;
    font-weight: 600;
}

.cart-total-price i {
    font-size: 12px;
    vertical-align: middle;
}


.header-icons {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.img_heart, .cart_header {
    position: relative;
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--tow-main-color);
    color: white;
    font-size: 10px;
    width: 16px;
    box-shadow: var(--box-shadow);
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.custom_auth_btn {
    background: var(--main-color);
    color: #fff !important;
    padding: 5px 24px !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px !important;
}

.custom_auth_wrapper {
    position: relative;
    display: inline-block;
}

.custom_auth_btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    border-radius: 5px;
}

.custom_auth_btn i {
    font-size: 16px;
}

.custom_auth_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    min-width: 130px;
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

.custom_auth_dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-weight: 500;
    border-bottom: 1px solid #efefef;
    text-decoration: none;
    color: #515151;
    font-size: 12px;
}

.custom_auth_dropdown a:hover {
    background-color: #f0f0f0;
}

.custom_auth_wrapper:hover .custom_auth_dropdown {
    display: block;
}

.topbar-link-wrapper {
    position: relative;
    display: inline-block;
}

.topbar-link-wrapper img {
    cursor: pointer;
    border-radius: 2px;
}

.topbar-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    min-width: 130px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.topbar-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
}

.topbar-dropdown a:hover {
    background: #5DB0A4;
    border-radius: 5px;
    color: #fff;
}

.topbar-link-wrapper:hover .topbar-dropdown {
    display: block;
}



.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    display: block;
    margin-top: 0px;
    width: 100%;
    padding: 5px;
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.continue-shopping:hover {
    color: #5EB2A2;
}


.brand-submenu li {
    border-bottom: 1px solid #e8e8e8;
}

.brand-submenu li:last-child {
    border-bottom: none;
}

.brand-submenu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    color: #333;
    text-decoration: none;
    text-align: right;
    transition: all 0.3s ease;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.brand-submenu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #5EB2A2;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.brand-submenu li a:hover::before {
    transform: scaleY(1);
    color: #fff;
}

.brand-count {
    color: #999;
    font-size: 0.9em;
    margin-left: 10px;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand-submenu li a:hover {
    background-color: #f8f9fa;
    color: #5EB2A2;
    padding-right: 25px;
}

.brand-submenu li a:hover .brand-count {
    background-color: #5EB2A2;
    color: #fff;
}

ul.brand-submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

li.brand-dropdown:hover>ul.brand-submenu {
    display: block !important;
}


/* Brand Dropdown with Smooth Animation */
.brand-dropdown {
    position: relative;
}

ul.brand-submenu {
    min-width: 320px;
}

li.brand-dropdown:hover>ul.brand-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brand-submenu li a {
    display: block;
    padding: 10px 10px;
    color: #333;
    text-decoration: none;
    text-align: right;
    transition: all 0.2s ease;
}

.brand-submenu li a:hover {
    background-color: #f8f9fa;
    color: #5EB2A2;
    padding-right: 25px;
}


.brand-submenu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    text-align: right;
    transition: all 0.2s ease;
}

.brand-count {
    color: #999;
    font-size: 0.9em;
}

.brand-submenu li a:hover {
    background-color: #f8f9fa;
    color: #5EB2A2;
}

.brand-submenu li a:hover .brand-count {
    color: #fff;
}

/* header top new */

.icon-wrapper {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.icon-wrapper img {
    display: block;
    width: 28px;
    height: 28px;
}

.icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background-color: #68D391;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}

.header-top {
    background-color: #fff;
}

.header-top .form-control {
    border: 2px solid #e0e0e0;
    padding: 0.6rem 3rem 0.6rem 1.5rem;
}

.header-top .form-control:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.header-top img {
    transition: transform 0.3s ease;
}

.header-top a:hover img {
    transform: scale(1.1);
}

.badge {
    font-size: 0.65rem;
    padding: 0.25em 0.5em;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
}

.dropdown-toggle::after {
    display: none;
}


.navbar-nav a {
    color: #000000;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
    display: flex;
    gap: 7px;
    align-items: center;
}

.navbar-nav a:hover {
    color: #0d6efd;
    text-decoration: none;
}



/* @media */

@media (max-width: 768px) {

    .header-top .container {
        padding: 10px 15px;
    }

    .header-top .row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        z-index: 999999;
    }

    /*.header-top .row>.col-md-2 {*/
    /*    flex: 0 0 40% !important;*/
    /*    max-width: 40% !important;*/
    /*    width: 40% !important;*/
    /*    order: 1 !important;*/
    /*    padding-right: 10px !important;*/
    /*    padding-left: 5px !important;*/
    /*}*/

    .header-top .col-md-2 .navbar-brand img {
        height: 35px !important;
    }

    .header-top .row>.col-md-5:last-child {
        flex: 1 0 70% !important;
        max-width: 60% !important;
        width: 60% !important;
        order: 2 !important;
        padding-left: 5px !important;
        padding-right: 10px !important;
    }

    .header-top .col-md-5:last-child>.d-flex {
        gap: 10px !important;
        justify-content: flex-end !important;
    }

    .header-top .row>.col-md-5:nth-child(2),
    .header-top .row>.col-md-5:first-of-type {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        order: 3 !important;
        padding: 0 10px !important;
    }

    .search-container {
        width: 100% !important;
    }

    .search-wrapper {
        padding: 10px 12px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    .search-input {
        font-size: 14px !important;
        flex: 1 !important;
    }

    .search-button {
        width: 50px !important;
        height: 50px !important;
    }

    .search-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .icon-wrapper img,
    .header-cart-icon img {
        width: 24px !important;
        height: 24px !important;
    }

    .icon-badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 10px !important;
    }

    .custom_auth_wrapper {
        position: relative;
    }

    .custom_auth_btn {
        font-size: 11px !important;
        padding: 6px 8px !important;
        white-space: nowrap;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .custom_auth_btn img {
        width: 18px !important;
        height: 18px !important;
    }

    .topbar-link-wrapper img {
        width: 26px !important;
        height: 20px !important;
    }

    .header-cart-dropdown {
        width: 95vw !important;
        max-width: 350px !important;
        right: 0 !important;
        left: auto !important;
        transform: none !important;
    }

    .header-cart-container:hover .header-cart-dropdown {
        transform: none !important;
        right: auto;
        left: 307px;
    }

    .dropdown-cart-header {
        padding: 15px !important;
    }

    .dropdown-cart-header h3 {
        font-size: 16px !important;
    }

    .dropdown-cart-item {
        padding: 12px !important;
        gap: 10px !important;
    }

    .cart-item-img {
        width: 65px !important;
        height: 65px !important;
    }

    .cart-item-title {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .cart-item-price {
        font-size: 13px !important;
    }

    .cart-item-qty-label {
        font-size: 12px !important;
    }

    .cart-footer-btn {
        font-size: 12px !important;
        padding: 10px 15px !important;
    }

    .cart-btn-checkout {
        padding: 12px 20px !important;
    }

    .custom_auth_dropdown {
        right: 0 !important;
        left: auto !important;
        width: 180px !important;
    }

    .topbar-dropdown {
        right: 0 !important;
        left: auto !important;
    }

    .header-cart-container {
        margin-top: 0px !important;
    }
}

@media (max-width: 480px) {
    /*.header-top .row>.col-md-2 {*/
    /*    flex: 0 0 35% !important;*/
    /*    max-width: 35% !important;*/
    /*}*/

    .header-top .row>.col-md-5:last-child {
        flex: 1 0 70% !important;
        max-width: 70% !important;
    }

    .header-top .col-md-5:last-child>.d-flex {
        gap: 6px !important;
    }

    .icon-wrapper img,
    .header-cart-icon img {
        width: 22px !important;
        height: 22px !important;
    }

    .icon-badge {
        width: 14px !important;
        height: 14px !important;
        font-size: 9px !important;
    }

    .custom_auth_btn {
        font-size: 10px !important;
        padding: 5px 6px !important;
    }

    .custom_auth_btn img {
        width: 16px !important;
        height: 16px !important;
    }

    .topbar-link-wrapper img {
        width: 22px !important;
        height: 16px !important;
    }

    .search-wrapper {
        padding: 8px 1px !important;
    }


    .header-top .row {
        padding: 3px 5px;
    }

    .search-input {
        font-size: 13px !important;
    }

    .search-button {
        width: 35px !important;
        height: 35px !important;
    }

    .header-cart-icon {
        margin-top: 0 !important;
    }
}


/* ================ HEADER BOTTOM =========================== */

.header_bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 10px;
}


.img_all_all_cats {
    background-color: #F1F8FA;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: #184C85;
}

.img_all_all_cats img {
    padding-left: 10px;
    width: 24px;
}

.header_bottom ul {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header_bottom ul li a {
    color: #231F20;
    font-weight: 500;
    font-size: 14px;
}



/* Mobile Header Styles */
@media (max-width: 991px) {

    /* ==================== HEADER TOP ==================== */

    .header-top .container {
        padding: 10px 8px !important;
    }

    .header-top .row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        position: relative;

    }

    /*.header-top .row>div:nth-child(1) {*/
    /*    flex: 0 0 30% !important;*/
    /*    max-width: 30% !important;*/
    /*    order: 1 !important;*/
    /*    padding-right: 5px !important;*/
    /*}*/

    .header-top .navbar-brand img {
        height: 32px !important;
        width: auto !important;
    }

    /*.header-top .row>div:nth-child(3) {*/
    /*    flex: 0 0 70% !important;*/
    /*    max-width: 70% !important;*/
    /*    padding-left: 5px !important;*/
    /*}*/

    /*.header-top .row>div:nth-child(3)>.d-flex {*/
    /*    gap: 8px !important;*/
    /*    justify-content: flex-end !important;*/
    /*    align-items: center !important;*/
    /*    flex-wrap: nowrap !important;*/
    /*}*/


    .icon_dir .d-flex {
        flex-direction: row-reverse !important;
    }


    /*.header-top .row>div:nth-child(2) {*/
    /*    flex: 0 0 100% !important;*/
    /*    max-width: 100% !important;*/
    /*    order: 3 !important;*/
    /*    margin-top: 12px !important;*/
    /*    border-top: 1px solid #eeeeee;*/
    /*    box-shadow: 0px 9.0754146576px 18.1508293152px -2.7226247787px rgba(145, 158, 171, 0.05),*/
    /*        0px 0px 1.8150832653px 0px rgba(145, 158, 171, 0.2);*/
    /*}*/

    .search-container {
        width: 100% !important;
        margin: 0 !important;
        padding-top: 10px;
    }

    .header-top .row>div:nth-child(3)>.d-flex {
        gap: 8px !important;
        justify-content: flex-end !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .search-wrapper {
        padding: 0 0 0 11px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    .search-input {
        font-size: 13px !important;
        flex: 1 !important;
    }

    .search-button {
        width: 35px !important;
        height: 35px !important;
    }

    .search-icon {
        width: 16px !important;
        height: 16px !important;
    }

    .search-wrapper {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }


    .icon-wrapper,
    .header-cart-container,
    .custom_auth_wrapper,
    .topbar-link-wrapper {
        display: flex !important;
        align-items: center !important;
    }

    .icon-wrapper img,
    .header-cart-icon img {
        width: 22px !important;
        height: 22px !important;
    }

    .icon-badge {
        width: 15px !important;
        height: 15px !important;
        font-size: 9px !important;
        top: -5px !important;
        right: -5px !important;
    }

    .custom_auth_btn {
        font-size: 10px !important;
        padding: 5px 7px !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        gap: 3px !important;
    }

    .custom_auth_btn img {
        width: 16px !important;
        height: 16px !important;
    }

    /* Language Flag */
    .topbar-link-wrapper img {
        width: 24px !important;
        height: 18px !important;
    }

    /* ==================== HEADER BOTTOM (NAVIGATION) ==================== */

    .navbar.navbar-expand-lg {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: white !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        z-index: 9999 !important;
        transition: right 0.3s ease !important;
        overflow-y: auto !important;
        display: block !important;
        padding: 0 !important;
    }

    .navbar.navbar-expand-lg.show {
        right: 0 !important;
        z-index: 999999999999999999999999999999999999999999999999 !important;
    }

    .navbar .container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .navbar-toggler {
        z-index: 10000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer !important;
    }



    .navbar-toggler-icon {
        width: 22px !important;
        height: 2px !important;
        background: #333 !important;
        position: relative !important;
        display: block !important;
        transition: all 0.3s ease !important;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '' !important;
        width: 22px !important;
        height: 2px !important;
        background: #333 !important;
        position: absolute !important;
        left: 0 !important;
        transition: all 0.3s ease !important;
    }

    .navbar-toggler-icon::before {
        top: -7px !important;
    }

    .navbar-toggler-icon::after {
        bottom: -7px !important;
    }

    .navbar .container::before {
        display: block !important;
        padding: 20px !important;
        border-bottom: 1px solid #eee !important;
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    .navbar-collapse {
        display: block !important;
        padding: 20px !important;
    }

    .navbar-nav {
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    .navbar-nav li {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .navbar-nav li a {
        display: flex !important;
        align-items: center !important;
        padding: 12px 0 !important;
        color: #333 !important;
        text-decoration: none !important;
        font-size: 14px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        transition: color 0.3s ease !important;
    }

    .navbar-nav li a:hover {
        color: #2c6ba4 !important;
    }

    .navbar-nav li a img {
        width: 20px !important;
        height: 20px !important;
        margin-right: 8px !important;
    }

    .brand-dropdown {
        position: relative !important;
    }

    .brand-submenu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding: 0 0 0 15px !important;
        background: #f9f9f9 !important;
        margin: 0 !important;
        max-height: none !important;
    }

    .brand-dropdown:hover .brand-submenu,
    .brand-dropdown.active .brand-submenu {
        display: block !important;
    }

    .brand-submenu li a {
        padding: 10px 0 !important;
        font-size: 13px !important;
    }

    body.menu-open::after {
        display: block !important;
        opacity: 1 !important;
    }

    body.menu-open {
        overflow: hidden !important;
    }

    /* Cart Dropdown للموبايل */
    .header-cart-dropdown {
        width: 90vw !important;
        max-width: 340px !important;
        right: 0 !important;
        left: auto !important;
        transform: none !important;
    }

    .dropdown-cart-header {
        padding: 12px 15px !important;
    }

    .dropdown-cart-header h3 {
        font-size: 15px !important;
    }

    .dropdown-cart-item {
        padding: 10px !important;
        gap: 8px !important;
    }

    .cart-item-img {
        width: 60px !important;
        height: 60px !important;
    }

    .cart-item-title {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .cart-item-price {
        font-size: 12px !important;
    }

    .cart-footer-btn {
        font-size: 11px !important;
        padding: 8px 12px !important;
    }

    .cart-btn-checkout {
        padding: 10px 15px !important;
    }

    /* Auth Dropdown */
    .custom_auth_dropdown {
        right: 0 !important;
        left: auto !important;
        width: 160px !important;
        font-size: 12px !important;
    }

    /* Language Dropdown */
    .topbar-dropdown {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    /*.header-top .row>div:nth-child(1) {*/
    /*    flex: 0 0 25% !important;*/
    /*    max-width: 25% !important;*/
    /*}*/

    /*.header-top .row>div:nth-child(3) {*/
    /*    flex: 0 0 75% !important;*/
    /*    max-width: 75% !important;*/
    /*}*/

    /*.header-top .row>div:nth-child(3)>.d-flex {*/
    /*    gap: 11px !important;*/
    /*    padding-top: 8px;*/
    /*}*/

    .icon-wrapper img,
    .header-cart-icon img {
        width: 20px !important;
        height: 20px !important;
    }

    .custom_auth_btn {
        font-size: 9px !important;
        padding: 4px 6px !important;
        display: none !important;
    }

    .custom_auth_btn img {
        width: 14px !important;
        height: 14px !important;
    }

    .navbar.navbar-expand-lg {
        width: 260px !important;
    }
}

.header-cart-container {
    position: relative;
    display: inline-block;
    margin-top: 0;
}

.header-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.header-cart-icon img {
    width: 28px;
    height: 28px;
}


.header-cart-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 400px;
    background: white;
    border-radius: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-cart-container:hover .header-cart-dropdown {
    opacity: 1;
    visibility: visible;
    top: 25px;
    padding: 10px;
}

.dropdown-cart-header {
    background: linear-gradient(to bottom, #dbeafe, #bfdbfe);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-cart-icon {
    font-size: 14px;
    color: #2c6ba4;
}

.dropdown-cart-header h3 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.dropdown-cart-items {
    padding: 0;
    max-height: 400px;
    overflow-y: scroll;
}

.dropdown-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #ddd;
    padding: 10px 0;
    border-radius: 10px;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.cart-item-delete {
    width: 10px;
    height: 10px;
    border: none;
    background: transparent;
    color: #ef4444;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.cart-item-delete:hover {
    background: #fee;
}

.cart-item-qty-number {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 25px;
    text-align: center;
}

.cart-item-qty-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cart-item-qty-btn {
    width: 18px;
    height: 18px;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.cart-item-qty-btn:hover {
    background: #e5e5e5;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.cart-item-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty-label {
    font-size: 13px;
    color: #666;
}

.cart-item-price {
    font-size: 15px;
    font-weight: bold;
    color: #3189A7;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dropdown-cart-footer {
    background: white;
}

.cart-footer-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cart-footer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
}

.cart-total-label {
    font-size: 16px;
    color: #666;
}

.cart-total-price {
    font-size: 16px;
    font-weight: bold;
    color: #3189A7;
}

.cart-footer-btn {
    padding: 10px 10px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cart-btn-view {
    background: white;
    color: #636363;
    border: 2px solid #e6e6e6;
    padding: 7px 13px;
}

.cart-btn-view:hover {
    background: #f0f7ff;
}

.cart-btn-checkout {
    background: #2c6ba4;
    color: white;
    padding: 14px 32px;
    width: 100%;
}

.cart-btn-checkout:hover {
    background: #2c6ba4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}


/*=============== HERO BANNER ============== */

.grid_banner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.col_slider {
    grid-column: span 5;
}

.col_reqoust {
    grid-column: span 2;
    background-color: #F6F6F6;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {

    .grid_banner {
        grid-template-columns: 1fr !important;
        gap: 0;
        margin: 0 !important;
    }
}


.col_slider {
    position: relative;
}


.slider img {
    width: 100%;
    display: block;
    height: 550px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single_nav_arrow {
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
}

.nav_left:hover {
    border: 1px solid #a9a7a8;
}

.card-modern {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 15px;
}

/* ===== Quantity Buttons ===== */
.custom-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.custom-qty-btn:hover {
    background: #e2e6ea;
}

/* ===== Responsive Cart Items ===== */
.cart-item-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-col {
    flex: 1 1 25%;
    text-align: left;
    padding: 5px;
}

.cart-item-qty {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ===== Addresses ===== */
.address-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.address-card:hover {
    border-color: #68d391;
}

/* ===== Cart Summary ===== */
.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .cart-item-col {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    .cart-item-qty {
        justify-content: center;
    }
}


@media (max-width: 991px) {
    .slider img {
        height: 200px !important;
    }

}

.col_slider {
    position: relative;
}


#my-prev,
#my-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

#my-prev {
    left: 0px;
}


#my-next {
    right: 0px;
}


#my-prev img,
#my-next img {
    width: 100%;
    height: 150px;
}


.prescription_bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.prescription_img img {
    max-width: 220px;
    display: block;
}

.prescription_title h2 {
    font-size: 27px;
    line-height: 42px;
    color: #65C08E !important;
    font-weight: 600;
}

.rquest_col {
    background: #fff;
    color: #000 !important;
    padding: 9px 15px !important;
    border-radius: 20px !important;
    margin-top: 20px;
}

.rquest_col a {
    color: #000 !important;
}


/* .feature-boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin: 20px 0;
}

@media (max-width: 991px) {
    .feature-boxes {
        display: none;
    }

    #my-prev img, #my-next img {
        height: 85px !important;
    }
}


.box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--main-color);
    padding: 14px 7px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: default;
    transition: 0.3s;
    box-shadow: var(--box-shadow);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.box:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.box img {
    width: 12%;
}

.box .text {
    font-size: 15px;
    font-weight: 500;
}


/* button */


.custom_btn_div {
    text-align: center;
    display: flex;
    align-items: center;
}

.custom_primary_button {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 50px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .custom_primary_button {
        align-items: normal !important;
    }
}

.custom_arrow {
    background-color: #4299e1;
    color: white;
    padding: 11px 35px 11px 16px;
    margin-right: -23px;
    font-size: 17px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_text {
    background-color: #68d391;
    color: white;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 991px) {
    .custom_text {
        font-size: 15px !important;
        padding: 1px 15px;
    }
}

/* slider_main_cardt */

.slider_main_cardt {
    padding-top: 24px;
    margin: 0 10px;
}

.slider_main_cardt .container {
    background-color: #4fa2bc14;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 20px;
}

.gird_cardtd {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
}

@media (max-width: 768px) {
    .slider_main_cardt .container {
        padding: 10px !important;
    }

    .slider_main_cardt {
        margin-top: 20px;
    }

    .gird_cardtd {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slider_main_cardt {
        padding-top: 0 !important;
    }

    .icon_col {
        order: 1
    }

    .logo_col {
        order: 2
    }

    .search_col {
        order: 3
    }
}


@media (max-width: 768px) {
    .gird_cardtd {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.main_card {
    background-color: #fff;
    border-radius: 22px;
    transition: all .3s ease;
    position: relative;
    box-shadow: 0px 8.1793107986px 16.3586215973px -2.4537930489px rgba(145, 158, 171, 0.05),
        0px 0px 1.635862112px 0px rgba(145, 158, 171, 0.2);
}


.main_card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
}


.icon-btn i {
    color: #AD1457;
}


.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #AA0000 !important;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
    z-index: 2;
}

.main_card_img {
    position: relative;
    overflow: hidden;
}

.card-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.main_card:hover .card-icons {
    opacity: 1;
    transform: translateX(0);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.grid_main_detels_prodect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 20px 0;
}

@media (max-width: 991px) {
    .grid_main_detels_prodect {
        grid-template-columns: repeat(1, 1fr);
    }

    .card-icons {
        right: 31px !important;
    }

    .slider_main_cardt .decripton p a {
        text-align: center !important;
    }
}

.grid_main_detels_prodect .cart_button_fixed {
    position: absolute;
    bottom: 0px !important;
    right: 0;
}


.main_prodect_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .main_prodect_row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main_prodect_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .main_prodect_row {
        grid-template-columns: 1fr;
    }
}


.main_card {
    background-color: #fff;
    border-radius: 22px;
    transition: all .3s ease;
    position: relative;
}

.offer_main {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    border: 2px solid #138496;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: #138496;
    cursor: pointer;
    margin-top: 20px;
}


@media (max-width: 992px) {
    .main_prodect_row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main_prodect_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .main_prodect_row {
        grid-template-columns: 1fr;
    }
}


.main_card_img {
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    border-radius: 12px;
}


.main_lin_pro {
    padding: 0 10px;

}

.main_card_title_prodect .main_lin_pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}


.main_card_title_prodect {
    position: relative;
    min-height: 59px;
    padding: 10px 10px 0 10px;
    border-radius: 0 0 5px 5px;
    transition: all ease 0.3s;
}

.main_card_title_prodect .main_lin_pro h3 {
    font-size: 10px;
    color: #000;
    margin-bottom: 7px;
    width: fit-content;
    background: #4FA1BE36;
    padding: 4px 14px;
    border-radius: 17px;
    font-weight: 500;
    order: -1 !important;
}

.main_card_title_prodect .main_lin_pro span {
    color: #4b566b;
    font-size: 14px;
}

.main_card_title_prodect .main_lin_pro span i {
    color: rgb(255 125 30);
}

.decripton {
    padding: 0 10px;
    text-align: end;
}

@media (min-width: 1600px) {
    .decripton p a {
        font-size: 16px !important;
        line-height: 1.5;
    }
}

.decripton p a {
    display: block;
    margin: 0;
    height: 64px;
    font-size: 15px;
    color: #3189A7;
    font-weight: 500;
    text-decoration: none;
    padding-top: 8px;
    line-height: 1.5;
    text-align: start;

}

.cart_button_fixed {
    position: absolute;
    bottom: 0;
    right: 0;
    background: none !important;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.cart_button_fixed button {
    background: none !important;
    border: none;

}

.cart_button_fixed img {
    width: 100px;
    height: 100px;
}

.price-container {
    display: flex;
    align-items: center;
    padding: 0 0 20px;
    margin-left: 10px;
    text-align: start;
}

.currency {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #3189A7 !important;
    font-weight: bold;
    font-size: 22px;
    margin-right: 4px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.old-price {
    text-decoration: line-through;
    color: #999 !important;
    font-size: 13px !important;
    text-align: center !important;
    font-weight: normal !important;
}

.prices {
    display: flex;
    flex-direction: column;
}

.new-price {
    font-size: 22px !important;
    font-weight: normal;
    color: #3189A7;
}


.slider_prodects {
    overflow: hidden;
}

.slider_prodects {
    overflow: hidden;
    margin: 0 -10px;
}

.col_main_prodect {
    box-sizing: border-box;
}

.main_card_img img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: contain !important;
    display: block;
    transition: transform 0.3s ease;
}

.main_card_img img:hover {
    transform: scale(1.1);
}



.main_card {
    width: 100%;
}


.col_title_main_cardt {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}



.col_title_main_cardt h2 {
    color: #454545;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}


.col_title_main_cardt p {
    color: #736F6F;
    font-size: 13px !important;
    margin-bottom: 13px;
    text-align: center;
}


@media (max-width: 991px) {
    .main_card_img img {
        height: 300px;
    }

    .slider_main_cardt .col_title_main_cardt {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .col_title_main_cardt h2 {
        font-size: 17px !important;
        font-weight: bold !important;
        text-align: start !important;
    }

    .col_title_main_cardt p {
        font-size: 15px !important;
        text-align: start !important;
    }
}

/* .category-card */

.category-card {
    position: relative;
    background: linear-gradient(to right, #4dc0b5, #38a89d);
    border-radius: 20px;
    padding: 0 20px 0 0;
    text-align: right;
    color: white;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px;
    margin-inline: 4px;
}

.custom-image-wrapper {
    position: absolute;
    bottom: -5px;
    right: 0;
    height: auto;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.custom-image-wrapper img {
    height: 180px;
    aspect-ratio: 128 / 186 !important;
    object-fit: contain;
}

.custom-card-body h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    max-width: 128px;
    color: #fff !important;
    width: 300px;
    text-align: start;
}


.category-card_main {
    position: relative;
    background: #859C74;
    border-radius: 20px;
    text-align: right;
    color: white;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px;
    margin-inline: 4px;
}


.category-card_main .custom-image-wrapper {
    position: absolute;
    bottom: -25px;
    left: 0;
    height: auto;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.category-card_main .custom-image-wrapper img {
    height: 210px;
    aspect-ratio: 128 / 186 !important;
    object-fit: contain;
}

.category-card_main .custom-card-body h3 {
    font-size: 22px;
    font-weight: 500;
    max-width: 100% !important;
    color: #fff !important;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 15px;
}

@media (min-width: 1600px) {
    .category-card_main .custom-card-body p {
        max-width: 36% !important;

    }
}


.category-card_main .custom-card-body p {
    font-size: 13PX;
    font-weight: 500;
    max-width: 50%;
    color: #fff !important;
    margin-top: 10px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-right: 15px;
}


.category-card_main_tow {
    position: relative;
    background: #FFDEE0;
    border-radius: 20px;
    text-align: right;
    color: white;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px;
    margin-inline: 4px;
}


.category-card_main_tow .custom-image-wrapper {
    position: absolute;
    bottom: -25px;
    left: 0;
    height: auto;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.category-card_main_tow .custom-image-wrapper img {
    height: 210px;
    aspect-ratio: 128 / 186 !important;
    object-fit: contain;
}

.category-card_main_tow .custom-card-body h3 {
    font-size: 22px;
    font-weight: 500;
    max-width: 100% !important;
    color: #63ABA1 !important;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 15px;
}

@media (min-width: 1600px) {
    .category-card_main_tow .custom-card-body p {
        max-width: 36% !important;

    }
}


.category-card_main_tow .custom-card-body p {
    font-size: 13PX;
    font-weight: 500;
    max-width: 50%;
    color: #736F6F !important;
    margin-top: 10px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-right: 15px;
}


/* main_top_prodect_all */
.all_card_prodect .container {
    background-color: #F1F8FA;
    padding: 30px;
    margin: 30px auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.main_top_prodect_all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*margin-top: 20px;*/
}

.amin_alin_all {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav_arrows .row {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.new_category_title {
    font-size: 26px;
    font-weight: normal;
    margin-bottom: 11px;
    margin-left: 25px;
    white-space: nowrap;
}


.colored_title {
    color: #65C08E !important;
}

.category_name_div {
    display: flex;
    align-items: center;
    flex-grow: 1;

}

.single_line {
    flex: 1;
    height: 2px;
    background: #4196D1;
    margin-left: 10px;
    margin-right: 10px;
}

/* slider_prodects_prodecrt_main */

.slider_prodects_prodecrt_main {
    margin-top: 50px;
}

.slider_prodects_prodecrt_main_tow {
    margin-top: 50px;
}

.slider_prodects_prodecrt_main_tow_lin {
    margin-top: 50px;
}

.all_card_prodect {
    margin: 30px 10px;
}

/*  */


.custom__brand-item {
    aspect-ratio: 1 / 1 !important;
    position: relative;
    border: 0;
}

.custom__brand-item {
    /* height: 180px; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: none;
    aspect-ratio: 220 / 360;
    position: relative;
    margin: 0 15px !important;
}


.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    background: #CBE2E980;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}


.custom__brand-item .logo-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 70px;
}

.custom__brand-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
    transition: all 300ms ease-in-out;
}


/* =============================== products ============================================== */
.prodect_main {
    margin: 0 20px;
}


.prodect_main .container {
    background-color: #F6F8F9;
    padding: 8px 10px;
    margin-top: 20px;
}


.prodect_main h5 {
    font-size: 18px;
    font-weight: 500;
}

.grid_main_prodect {
    display: grid;
    grid-template-columns: 3fr 10fr;
    margin-top: 10px;
    gap: 20px;
}

@media (max-width: 991px) {
    .all_card_prodect .container {
        padding: 0 !important;
    }

    .prodect_main .container {
        width: 100% !important;
    }

    .grid_main_prodect {
        grid-template-columns: 1fr;
        gap: 5px !important;
    }

    .main_top_prodect_all {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 10px;
    }

}


.main_top_col {
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.main_top_col .category-list {
    margin-bottom: 30px;
}

.main_top_col .category-item {
    border-bottom: 1px solid #f0f0f0;
}

.main_top_col .category-item:last-child {
    border-bottom: none;
}

.main_top_col .category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 4px 0;
}

.main_top_col .category-header:hover {
    transform: translateX(-5px);
}

.main_top_col .category-label {
    font-size: 15px;
    color: #4a5568;
    flex-grow: 1;
    text-align: right;
    padding: 0 10px;
    font-weight: 500;
}

.main_top_col .category-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main_top_col .category-icon {
    font-size: 10px;
    color: #666;
    transition: transform 0.3s;
}

.main_top_col .category-icon.open {
    transform: rotate(180deg);
}

.main_top_col .radio-custom {
    width: 15px;
    height: 15px;
    border: 2px solid #ececec;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.main_top_col .radio-custom.checked {
    border: none;
    background: var(--main-color);
}

.main_top_col .radio-custom.checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main_top_col .dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 30px;
}

.main_top_col .dropdown-content.open {
    max-height: 500px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.main_top_col .dropdown-item {
    padding: 12px 0;
    color: #718096;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding-right: 20px;
}

.main_top_col .dropdown-item::before {
    content: '◆';
    position: absolute;
    right: 0;
    /* color: var(--three-color); */
    font-size: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.main_top_col .dropdown-item:hover {
    color: var(--main-color);
    transform: translateX(-5px);
    font-weight: 500;
}

.main_top_col .dropdown-item:hover::before {
    opacity: 1;
}

.main_top_col .price-range-section {
    margin-top: 30px;
}

.main_top_col .price-range-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2d3748;
    text-align: center;
}

.main_top_col .price-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.main_top_col .price-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_top_col .price-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    direction: ltr;
    font-weight: 600;
    color: #5EB2A2;
    transition: all 0.3s ease;
    background: white;
}

.main_top_col .price-input:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.main_top_col .price-label {
    font-size: 13px;
    color: #5EB2A2;
    margin-top: 4px;
}

.main_top_col .separator {
    font-size: 14px;
    color: #5EB2A2;
    margin: 0 8px;
}

.main_top_col .range-slider-container {
    position: relative;
    height: 40px;
    margin-bottom: 20px;
}

.main_top_col .range-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(270deg, #5EB2A2 0.52%, #4EA0BF 99.48%);
    border-radius: 2px;
    transform: translateY(-50%);
}

.main_top_col .range-slider-fill {
    position: absolute;
    top: 50%;
    height: 2px;
    /* background: var(--main-color); */
    border-radius: 2px;
    transform: translateY(-50%);
}

.main_top_col .range-slider {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
}

.main_top_col .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--main-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s ease;
}

.main_top_col .range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.main_top_col .range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--main-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s ease;
}

.main_top_col .range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}


.slick-initialized .slick-slide {
    padding: 0 8px !important;
}


.col_main_prodect .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.col_main_prodect .cards-container .decripton p a {
    font-size: 16px;
}

.col_main_prodect .cards-container .price-container {
    margin-left: 13px;
}

.col_main_prodect .cards-container .main_card_title_prodect .main_lin_pro h3 {
    font-size: 10px;
}

.main_lopp {
    padding: 0 5px !important;
}


.col_main_prodect .cards-container .main_card {
    margin: 10px -12px;
}

@media (max-width: 1200px) {
    .col_main_prodect .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .col_main_prodect {
        z-index: 999999999;
    }


    .col_main_prodect .cards-container {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 17px;
    }

    .main_top_col {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: white;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.3s ease;
        padding: 60px 15px 20px 15px;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    }

    /* Show Sidebar when Active */
    .main_top_col.active {
        right: 0;
    }

    /* Show Overlay when Sidebar Active */
    .sidebar-overlay.active {
        display: block;
    }

    /* Show Close Button */
    .sidebar-close-btn {
        display: flex;
    }


}


/* Filter Toggle Button - Hidden by default */
.filter-toggle-btn {
    display: none;
    bottom: 20px;
    right: 20px;
    background: #F6F8F9;
    color: rgb(0, 0, 0);
    border: none;
    cursor: pointer;
    z-index: 999;
    font-size: 24px;
    align-items: center;
    width: 100% !important;
}

/* Overlay for Sidebar */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Close Button inside Sidebar */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4444;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}


.prodect_main .col_main_prodect {
    display: none;
}

/* Mobile & Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {

    /* Show Filter Button */
    .filter-toggle-btn {
        display: flex;
        width: 90% !important;
        margin-left: 20px;
        padding-left: 10px;
        gap: 10px;
    }

    .prodect_main .col_main_prodect {
        display: flex;
        flex-direction: column;
    }

    /* Sidebar - Hidden by Default, Slide from Right */
    .main_top_col {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: white;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.3s ease;
        padding: 60px 15px 20px 15px;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    }

    /* Show Sidebar when Active */
    .main_top_col.active {
        right: 0;
        z-index: 999999999999999999999999999999;
        width: 100%;
        max-width: 300px;
    }

    /* Show Overlay when Sidebar Active */
    .sidebar-overlay.active {
        display: block;
    }

    /* Show Close Button */
    .sidebar-close-btn {
        display: flex;
    }

    /* Products take full width */
    .main_lopp {
        width: 100%;
    }

    /* Products Grid - 2 Columns */
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

}

/* Mobile Small (max-width: 480px) */
@media screen and (max-width: 480px) {
    .filter-toggle-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }

    .filter-toggle-btn img {
        width: 20px;
    }
}


.filter-search-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.filters-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.filter-group select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-repeat: no-repeat;
    min-width: 140px;
}


@media (max-width: 991px) {
    .filter-group select {
        display: none;
    }

    .filter-group label {
        display: none;
    }

}

.filter-group select:hover {
    border-color: var(--main-color);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(var(--main-color-rgb, 66, 133, 244), 0.1);
}

.search-group {
    display: flex;
    align-items: stretch;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    max-width: 400px;
    min-width: 250px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}


.search-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #fff;
    border-left: none;
    background: white;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);

}

.search-group input:focus {
    outline: none;
    border: none;
}

.search-group input::placeholder {
    color: #999;
}

.search-group button {
    padding: 12px 20px;
    border: none;
    background: var(--main-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-group button:hover {
    background-color: var(--tow-main-color);
    transform: translateY(-1px);
}

.search-group button:active {
    transform: translateY(0);
}

.search-group button i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-search-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .filters-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .filter-group {
        flex: 1;
        min-width: 140px;
    }

    .filter-group select {
        width: 100%;
        min-width: auto;
    }

    .search-group {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .filters-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .filter-group {
        width: 100%;
    }

    .filter-group select {
        width: 100%;
    }
}


.main_map .header_main_area {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.main_map .header_main_area h2 {
    font-size: 2.2em;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease;
    color: #5EB2A2;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}


.main_map .header_main_area p {
    font-size: 1.2em;
    opacity: 0.95;
    color: #5EB2A2;

    animation: fadeInUp 0.8s ease;
}

.main_map .map-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    animation: fadeIn 0.6s ease;
}

.main_map .map-section h2 {
    color: #5EB2A2;
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.main_map .map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.main_map .branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.main_map .branch-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.main_map .branch-card:nth-child(1) {
    animation-delay: 0.1s;
}

.main_map .branch-card:nth-child(2) {
    animation-delay: 0.2s;
}

.main_map .branch-card:nth-child(3) {
    animation-delay: 0.3s;
}

.main_map .branch-card:nth-child(4) {
    animation-delay: 0.4s;
}

.main_map .branch-card:nth-child(5) {
    animation-delay: 0.5s;
}

.main_map .branch-card:nth-child(6) {
    animation-delay: 0.6s;
}

.main_map .branch-icon {
    width: 70px;
    height: 70px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #fff;
}

.main_map .branch-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.main_map .branch-info {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.main_map .branch-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.main_map .info-icon {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1em;
}

.main_map .contact-button {
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.main_map .contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main_map .header h2 {
        font-size: 2em;
    }

    .main_map .branches-grid {
        grid-template-columns: 1fr;
    }
}

.main_title h2 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    padding-right: 30px;
    font-weight: 500;
    padding-bottom: 10px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: rgb(238, 238, 238);
    border-radius: 4px;
    transition: 0.2s ease-in-out;
}

.custom-checkbox input:checked~.checkmark {
    background: #5AADA8;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark::after {
    display: block;
}


.overflow-y-scroll {
    overflow-y: scroll !important;
}

.__brands-cate-wrap {
    max-height: 25rem;
    padding: 20px 20px 5px;
    font-size: 13px;
    color: #212629;
}


/* barnds */

.brand_main {
    margin-top: 20px;
    margin-bottom: 25px;
}


.brand_main .header-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f4f8 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand_main .search-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand_main .search-button {
    background-color: #2c5f8d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    transition: background-color 0.3s;
}

.brand_main .search-button:hover {
    background-color: #1e4a6d;
}

.brand_main .search-input {
    flex: 1;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.brand_main .search-input:focus {
    outline: none;
    border-color: #2c5f8d;
}


.brand_main .main-title {
    color: #2c5f8d;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.brand_main .subtitle {
    color: #5a7a95;
    font-size: 16px;
}

.brand_main .brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.brand_main .brand-card {
    background: white;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    box-shadow: var(--box-shadow);
}

.brand_main .brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #20C997;
}

.brand_main .brand-logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand_main .brand-placeholder {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 12px;
    color: #999;
}

.brand_main .brand-placeholder img {
    width: 100%;
    height: auto;
}

.brand_main .brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.brand_main .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.brand_main .page-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.brand_main .page-btn:hover {
    background-color: #f0f0f0;
    border-color: #2c5f8d;
}

.brand_main .page-btn.active {
    background-color: #2c5f8d;
    color: white;
    border-color: #2c5f8d;
}

.brand_main .page-btn.dots {
    border: none;
    cursor: default;
}

.brand_main .page-btn.dots:hover {
    background: white;
}

@media (max-width: 768px) {
    .brand_main .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .brand_main .header-section {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .brand_main .main-title {
        font-size: 24px;
    }

    .brand_main .search-area {
        flex-direction: column;
    }

    .brand_main .search-input {
        max-width: 100%;
        width: 100%;
    }
}


/* footer */


.footer {
    background: linear-gradient(270deg, #5EB2A2 0.2%, #4EA0BF 100%) !important;
    color: white;
    padding: 20px 0;
}



.footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 45px;
    margin-bottom: 30px;
}

.footer .footer-section h3 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer .footer-section ul {
    list-style: none;
}

.footer .footer-section ul li {
    margin-bottom: 1px;
}

.footer .footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: opacity 0.3s;
}

.footer .footer-section ul li a:hover {
    opacity: 0.8;
}

.footer .about-section {
    max-width: 350px;
}

.footer .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer .logo img {
    width: auto !important;
    height: 104px !important;
    background: #fff !important;
    border-radius: 15px !important;
}

.footer .logo-text {
    font-size: 16px;
    line-height: 1.4;
}

.footer .description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.95;
    text-align: justify;
}

.footer .subscribe-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer .subscribe-box input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
}

.footer .subscribe-box button {
    padding: 10px 20px;
    background: #2d6b7f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
}

.footer .subscribe-box button:hover {
    background: #1f4d5e;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icons a {
    width: 35px;
    height: 35px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.footer .social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer .social-icons a i {
    color: #65C08E;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .footer .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer .footer-content {
        grid-template-columns: 1fr;
    }
}


.gallery-container {
    max-width: 550px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px 10px 20px;
    position: relative;
}


@media (max-width: 991px) {
    .gallery-container {
        max-width: 420px;

    }
}


@media (max-width: 390px) {
    .gallery-container {
        max-width: 370px;

    }
}

/* Icons */
.gallery-container .gallery-icons {
    position: absolute;
    top: 20px;
    right: -32px;
    gap: 12px;
    z-index: 10;
}


@media (max-width: 991px) {
    .gallery-container .gallery-icons {
        position: absolute;
        top: 49px;
        left: 25px;
        gap: 12px;
        z-index: 10;
    }
}

.gallery-container .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-container .icon-btn:hover {
    background: #f8f9fa;
    border-color: #17a2b8;
    transform: scale(1.1);
}

.gallery-container .icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: #666;
}

/* Title */
.gallery-container .gallery-title {
    text-align: right;
    margin-bottom: 30px;
}

.gallery-container .gallery-title h1 {
    font-size: 70px;
    font-weight: bold;
    color: #17a2b8;
    line-height: 0.9;
    letter-spacing: -2px;
}

/* Main Image Slider */
.gallery-container .main-slider {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-container .main-slide {
    outline: none;
}

.gallery-container .main-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Thumbnail Slider */
.gallery-container .thumb-slider {
    padding: 0 10px;
}

.gallery-container .thumb-slide {
    padding: 0 8px;
    outline: none;
    cursor: pointer;
}

.gallery-container .thumb-slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: all 0.3s;
    opacity: 0.6;
}

.gallery-container .thumb-slide img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-container .slick-current .thumb-slide img {
    border-color: #17a2b8;
    opacity: 1;
}

/* Custom Arrows for Thumbnails */
.gallery-container .thumb-slider .slick-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #17a2b8 !important;
    z-index: 10;
}

.gallery-container .thumb-slider .slick-arrow:hover {
    background: #138496 !important;
}

.gallery-container .thumb-slider .slick-arrow:before {
    font-size: 18px;
}

.gallery-container .thumb-slider .slick-next {
    left: -18px;
}

.gallery-container .thumb-slider .slick-prev {
    /* right: -18px; */
}

/* Hide arrows for main slider */
.gallery-container .main-slider .slick-arrow {
    display: none !important;
}

@media (max-width: 768px) {
    .gallery-container .gallery-title h1 {
        font-size: 50px;
    }

    .gallery-container .main-slide img {
        height: 300px;
    }

    .gallery-container .thumb-slide img {
        height: 80px;
    }
}


.gallery-container .slick-prev:before,
.slick-next:before {
    display: none !important;
}

.gallery-container .thumb-wrapper {
    display: flex;
    align-items: center;
}

.gallery-container .thumb-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.gallery-container .thumb-slide img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-container .prev-btn,
.next-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.gallery-container .prev-btn img,
.next-btn img {
    width: 35px;
    height: 35px;
}


.ma_in_oul .tabs {
    display: flex;
    background: #F7F9FE;
    border-bottom: 3px solid #e0e0e0;
    margin-top: 30px;
}

.ma_in_oul .tab {
    flex: 1;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    outline: none;
}

.ma_in_oul .tab:hover {
    color: #58ABAE;
}

.ma_in_oul .tab.active {
    color: #58ABAE;
}

.ma_in_oul .tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--main-color);
}

.ma_in_oul .tab-content {
    padding: 40px;
    line-height: 1.8;
    color: #333;
    display: none;
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.ma_in_oul .tab-content p {
    font-size: 20px;
    font-weight: 500;
    width: 700px;
    margin: 0 auto;
}

.ma_in_oul .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .ma_in_oul .tab-content p {
        width: 100%;
    }

    .ma_in_oul .tab {
        flex-basis: 50%;
        font-size: 16px;
        padding: 15px;
    }

    .ma_in_oul .tab-content {
        padding: 25px;
        font-size: 15px;
    }
}


/* .grid_main_slider_detels_main */


.grid_main_slider_detels_main {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .grid_main_slider_detels_main {
        grid-template-columns: repeat(1, 1fr);
    }
}

.main_lin_star {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.main_lin_star i {
    color: #FEA670;
}

.main_lin_star span {
    font-size: 14px;
    font-weight: 500;
}

.main_lin_text_star span {
    color: #8796B4;
    font-weight: 500;
    font-size: 14px;
}

.main_title_star_lin_slider h2 {
    font-size: 22px;
    color: #1f1f1f;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 2px;
}

.main_pric_star {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.main_pric_star h4 {
    color: #3189A9;
    font-weight: 600;
    font-size: 16px;
}

.main_pric_star h5 {
    background-color: #EFD33D;
    font-weight: 500;
    font-size: 13px;
    padding: 8px;
    border-radius: 7px;
}

.text-warning {
    font-size: 13px;
}

.lin_col_detels {
    display: flex;
    align-items: center;
    gap: 80px;
}

@media (max-width: 767px) {
    .lin_col_detels {
        display: block;
        gap: 0;
    }

    .main_title_star_lin_slider h2 {
        font-size: 25px !important;
    }
}

.lin_col_detels .main_lin_label {
    display: flex;
    gap: 10px;
}

.lin_col_detels .main_lin_label small {
    color: #80879C;
    font-weight: 500;
    font-size: 15px;
}

.lin_col_detels .main_lin_label p {
    font-size: 16px;
    font-weight: 500;

}



.main_lin_footer_main {
    border-bottom: 1px solid #E9EEF2;
}

.lin_cart_detels {
    border: 1px solid #e9eef2;
    padding: 10px;
    margin-top: 10px;
}

.lin_cart_detels h3 {
    font-size: 16px;
    font-weight: 500;
}

.main_btn_slider {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.product-add-and-buy-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom_auth_btn {
    background: linear-gradient(270deg, #5EB2A2 0.52%, #4EA0BF 99.48%);
    color: #fff !important;
    padding: 9px 24px !important;
    border-radius: 40px !important;
    border: none;
    cursor: pointer;
}


.buy_now_btn {
    padding: 9px 50px !important;
}

.rev_custom_auth_btn {
    border: 2px solid #3189A7 !important;
    color: #3189A7 !important;
    background: #fff !important;
    padding: 9px 24px !important;
    border-radius: 40px !important;
    cursor: pointer;
}

.all_card_prodect_to {
    background-color: #F6F8F9;
    padding: 10px;
    margin-top: 40px;
}

.slider_prodects_prodecrt_main_tow_lin_tow {
    margin-top: 20px;
    position: relative;
}

.slider_prodects_prodecrt_main_tow_lin_tow_main_lin::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    box-shadow: inset 100px 0 75px -35px rgba(255, 255, 255, 1), inset -100px 0 75px -35px rgba(255, 255, 255, 1);
    z-index: 99998;
}


.slider_prodects_prodecrt_main_tow_lin_tow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    box-shadow: inset 100px 0 75px -35px rgba(255, 255, 255, 1), inset -100px 0 75px -35px rgba(255, 255, 255, 1);
    z-index: 99998;
}


.all_card_prodect_to .container {
    position: relative;
}

.all_card_prodect_to .amin_alin_all {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 999999;
    pointer-events: none;
}

.all_card_prodect_to .amin_alin_all .nav_left_lin {
    position: absolute;
    left: -4px;
    pointer-events: auto;
}

.all_card_prodect_to .amin_alin_all .nav_right_lin {
    position: absolute;
    right: 28px;
    pointer-events: auto;
}


.col_slider_titel {
    line-height: 2.2;
}


/* register */


.main_container_form {
    padding: 50px 45px;
    width: 100%;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main_container_form h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 700;
    position: relative;
}

.main_container_form h2 i {
    color: #8DC6C8;
    margin-left: 10px;
}

.main_container_form .subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 15px;
}

.main_container_form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.main_container_form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main_container_form label {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.main_container_form label i {
    margin-left: 8px;
    color: #8DC6C8;
    font-size: 16px;
}

.main_container_form .required {
    color: #e74c3c;
    margin-left: 3px;
}

/*.main_container_form input[type="text"],*/
/*input[type="email"],*/
/*input[type="password"],*/
/*select {*/
/*    padding: 14px 45px 14px 15px;*/
/*    border: 2px solid #ffffff;*/
/*    border-radius: 10px;*/
/*    font-size: 15px;*/
/*    transition: all 0.3s;*/
/*    direction: rtl;*/
/*    background: #ffffff;*/
/*    width: 100%;*/
/*    box-shadow: var(--box-shadow);*/
/*}*/

/*.main_container_form input:focus,*/
/*select:focus {*/
/*    outline: none;*/
/*    border-color: #8DC6C8;*/
/*    background: white;*/
/*    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);*/
/*    transform: translateY(-2px);*/
/*}*/

.main_container_form .input-wrapper {
    position: relative;
}

.main_container_form .input-icon {
    /*position: absolute;*/
    /*right: 15px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    color: #95a5a6;
    font-size: 16px;
    pointer-events: none;
}

.main_container_form .input-wrapper input {
    padding-right: 45px;
}

.main_container_form input::placeholder {
    color: #aaa;
}

.main_container_form .phone-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.main_container_form .country-code-wrapper {
    position: relative;
    width: 140px;
}

.main_container_form .phone-group select {
    width: 100%;
    height: 100%;
    padding: 14px 15px 14px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    color: #2c3e50;
}

.main_container_form .country-code-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    pointer-events: none;
    font-size: 12px;
}

/*.main_container_form .phone-group select:focus {*/
/*    outline: none;*/
/*    border-color: #8DC6C8;*/
/*    background: white;*/
/*    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);*/
/*    transform: translateY(-2px);*/
/*}*/

.main_container_form .phone-group select:hover {
    border-color: #8DC6C8;
}

.main_container_form .phone-group .input-wrapper {
    flex: 1;
}

.main_container_form .password-wrapper {
    position: relative;
}

.main_container_form .password-toggle {
    /*position: absolute;*/
    /*right: 15px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    cursor: pointer;
    color: #95a5a6;
    font-size: 18px;
    transition: color 0.3s;
}

.main_container_form .password-toggle:hover {
    color: #8DC6C8;
}

.main_container_form .checkbox-group {
    display: flex;
    align-items: center;
    margin: 25px 0;
    gap: 10px;
}

.main_container_form .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #8DC6C8;
}

.main_container_form .checkbox-group label {
    margin: 0;
    cursor: pointer;
    color: #666;
    font-size: 14px;
}

.main_container_form .checkbox-group a {
    color: #8DC6C8;
    text-decoration: none;
    font-weight: 600;
}

.main_container_form .checkbox-group a:hover {
    text-decoration: underline;
}

.main_container_form .submit-btn {
    width: 100%;
    padding: 16px;
    background: #8DC6C8;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.main_container_form .submit-btn i {
    margin-right: 8px;
}

.main_container_form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.main_container_form .submit-btn:active {
    transform: translateY(0);
}

.main_container_form .login-link {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.main_container_form .login-link a {
    color: #8DC6C8;
    text-decoration: none;
    font-weight: 600;
}

.main_container_form .login-link a:hover {
    text-decoration: underline;
}

.main_container_form .flag-icon {
    display: inline-block;
    width: 20px;
    height: 15px;
    margin-left: 5px;
    background-size: cover;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .main_container_form {
        margin-top: 120px;
    }

    .slider_prodects_prodecrt_main_tow_lin_tow_main_lin::before {
        box-shadow: none !important;
    }

    .slider_prodects {
        margin: 10px 0 !important;
    }
}

@media (max-width: 640px) {
    .main_container_form .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .card_main_prodect {
        padding: 0 0 7px 7px;
    }

}


/* login */


.login-container {
    padding: 50px 45px;
    max-width: 550px;
    width: 100%;
    animation: fadeIn 0.6s ease-in-out;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container .user-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: #5DB0A4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

.login-container .user-avatar i {
    color: white;
    font-size: 60px;
}

.login-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
}

/*.login-container .form-group {*/
/*    margin-bottom: 25px;*/
/*}*/

.login-container label {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    display: block;
}

.login-container .required {
    color: #e74c3c;
    margin-right: 3px;
}

.login-container .input-wrapper {
    position: relative;
}

/*.login-container input[type="text"],*/
/*input[type="email"],*/
/*input[type="password"] {*/
/*    width: 100%;*/
/*    padding: 14px 45px 14px 15px;*/
/*    border: 2px solid #fff;*/
/*    border-radius: 10px;*/
/*    font-size: 15px;*/
/*    transition: all 0.3s;*/
/*    direction: rtl;*/
/*    background: #ffffff;*/
/*    box-shadow: var(--box-shadow);*/
/*}*/

/*.login-container input:focus {*/
/*    outline: none;*/
/*    border-color: #5DB0A4;*/
/*    background: white;*/
/*    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);*/
/*    transform: translateY(-2px);*/
/*}*/

.login-container input::placeholder {
    color: #aaa;
}

.login-container .input-icon {
    /*position: absolute;*/
    /*right: 15px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    color: #95a5a6;
    font-size: 16px;
    pointer-events: none;
}

/*.login-container .input-wrapper input {*/
/*    padding-right: 45px;*/
/*}*/
/*.login-container .password-wrapper {*/
/*    position: relative;*/
/*}*/

.login-container .password-toggle {
    /*position: absolute;*/
    /*left: 15px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    cursor: pointer;
    color: #95a5a6;
    font-size: 18px;
    transition: color 0.3s;
}

.login-container .password-toggle:hover {
    color: #5DB0A4;
}

.login-container .remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.login-container .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-container .remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #5DB0A4;
}

.login-container .remember-me label {
    margin: 0;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.login-container .forgot-password {
    color: #5DB0A4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.login-container .forgot-password:hover {
    color: #764ba2;
    text-decoration: underline;
}

.login-container .login-btn {
    width: 100%;
    padding: 16px;
    background: #5DB0A4;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
}

.login-container .login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.login-container .login-btn:active {
    transform: translateY(0);
}

.login-container .signup-link {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.login-container .signup-link a {
    color: #5DB0A4;
    text-decoration: none;
    font-weight: 600;
}

.login-container .signup-link a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .login-container {
        padding: 40px 30px;
    }

    .login-container h2 {
        font-size: 26px;
    }

    .login-container .user-avatar {
        width: 100px;
        height: 100px;
    }

    .login-container .user-avatar i {
        font-size: 50px;
    }
}


/* SHOP CART */

.pt-5 {
    padding-top: 3rem;
}

.footer-slider {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.footer-slider .slider-container {
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.footer-slider .slider-container.dragging {
    cursor: grabbing;
}

.footer-slider .slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0px;
}

.footer-slider .slider-track.no-transition {
    transition: none;
}

.footer-slider .slider-item {
    flex: 0 0 calc(33.333% - 14px);
    text-align: center;
    padding: 15px;
    user-select: none;
}

.footer-slider .order-summery-footer-image {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.footer-slider .deal-title {
    font-size: 9px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.footer-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}


.footer-slider .slider-prev {
    right: -50px;
}

.footer-slider .slider-next {
    left: -50px;
}

/* Dots */
.footer-slider .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.footer-slider .dot {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-slider .slider-item {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-slider .order-summery-footer-image {
        width: 50px;
        height: 50px;
    }

    .footer-slider .deal-title {
        font-size: 12px;
    }

    .footer-slider .slider-prev {
        right: 5px;
    }

    .footer-slider .slider-next {
        left: 5px;
    }

    .footer-slider .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .footer-slider .slider-item {
        flex: 0 0 100%;
    }

    .footer-slider .slider-track {
        gap: 0;
    }
}


.main_shop_cart {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .main_shop_cart {
        grid-template-columns: 1fr;
        margin-top: 130px;
    }
}

.main_shop_cart .cart-items_main {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.main_shop_cart .cart-title {
    font-size: 18px;
    font-weight: bold;
    color: #5EB2A4;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_shop_cart .cart-title::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
}

.main_shop_cart .product-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 15px 20px;
    background: #5EB2A4;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.main_shop_cart .product-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 20px;
    align-items: center;
    padding: 25px 10px;
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--box-shadow);
}

@media (max-width: 991px) {
    .main_shop_cart .product-item {
        grid-template-columns: 1fr;
    }
}

.main_shop_cart .product-item:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #5EB2A4;
}

.main_shop_cart .product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main_shop_cart .product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    color: #5EB2A4;
}

.main_shop_cart .product-image img {
    width: 100%;
    height: 80px;
}

.main_shop_cart .product-details a {
    font-size: 13px;
    color: #5EB2A4;
    margin-bottom: 15px !important;
    line-height: 1.4;
}

.main_shop_cart .product-details p {
    font-size: 13px;
    color: #718096;
    margin-top: 10px;
}

.main_shop_cart .quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
    border: 2px solid #fff;
    width: fit-content;
}

.main_shop_cart .quantity-btn {
    background: #5EB2A4;
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.main_shop_cart .quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.main_shop_cart .quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #5EB2A4;
}

.main_shop_cart .price {
    font-size: 14px;
    font-weight: bold;
    color: #5EB2A4;
}


.main_shop_cart .delivery-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: var(--box-shadow);
}

.main_shop_cart .delivery-title {
    font-size: 18px;
    font-weight: bold;
    color: #5EB2A4;
    margin-bottom: 20px;
}

.main_shop_cart .delivery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.main_shop_cart .delivery-options select {
    padding: 12px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

/*.main_shop_cart .delivery-options select:focus {*/
/*    outline: none;*/
/*    border-color: #5EB2A4;*/
/*    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);*/
/*}*/

.main_shop_cart .notes-section {
    margin-top: 20px;
}

.main_shop_cart .notes-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #5EB2A4;
    margin-bottom: 10px;
}

.main_shop_cart .notes-section textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

/*.main_shop_cart .notes-section textarea:focus {*/
/*    outline: none;*/
/*    border-color: #5EB2A4;*/
/*    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);*/
/*}*/

.main_shop_cart .summary-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 30px;
    height: fit-content;
}

.main_shop_cart .summary-title {
    font-size: 22px;
    font-weight: bold;
    color: #5EB2A4;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.main_shop_cart .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #4a5568;
}

.main_shop_cart .summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: #5EB2A4;
    padding-top: 15px;
    border-top: 2px solid #e2e8f0;
    margin-top: 15px;
}

.main_shop_cart .summary-row .value {
    font-weight: 600;
    color: #5EB2A4;
}

.main_shop_cart .summary-row.total .value {
    color: #5EB2A4;
}

.main_shop_cart .discount {
    color: #48bb78 !important;
}

.main_shop_cart .checkout-btn {
    width: 100%;
    padding: 18px;
    background: #5EB2A4;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.main_shop_cart .checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.main_shop_cart .promo-code {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f7fafc;
    border-radius: 12px;
}

.main_shop_cart .promo-code input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.main_shop_cart .promo-code button {
    padding: 12px 20px;
    background: #48bb78;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main_shop_cart .promo-code button:hover {
    background: #38a169;
    transform: scale(1.05);
}

.main_shop_cart .continue-shopping {
    display: block;
    text-align: center;
    color: #5EB2A4;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}

.main_shop_cart .continue-shopping:hover {
    color: #764ba2;
}

@media (max-width: 1024px) {

    .main_shop_cart .summary-card {
        position: static;
    }
}

@media (max-width: 768px) {

    .main_shop_cart .product-header,
    .product-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .main_shop_cart .product-header {
        display: none;
    }

    .main_shop_cart .delivery-options {
        grid-template-columns: 1fr;
    }
}


/* CHECKOUT */


/* Progress Bar */
.main_container_chack_out {
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}


.main_container_chack_out .progress-container {
    padding: 30px 50px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.main_container_chack_out .progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

.main_container_chack_out .progress-line {
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.main_container_chack_out .progress-line-fill {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #5DB1A3;
    transition: width 0.3s ease;
    z-index: 1;
}

.main_container_chack_out .step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #999;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.main_container_chack_out .step.active {
    background: #5DB1A3;
    border-color: #5DB1A3;
    color: white;
}

.main_container_chack_out .step.completed {
    background: #5DB1A3;
    border-color: #5DB1A3;
    color: white;
}

.main_container_chack_out .step-labels {
    display: flex;
    justify-content: space-between;
}

.main_container_chack_out .step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    flex: 1;
}

/* Form Content */
.main_container_chack_out .form-content {
    padding: 40px 50px;
}

.main_container_chack_out .form-step {
    display: none;
}

.main_container_chack_out .form-step.active {
    display: block;
}

.main_container_chack_out .form-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.main_container_chack_out .form-group {
    margin-bottom: 25px;
}

.main_container_chack_out label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.main_container_chack_out .required {
    color: #d32f2f;
}



.main_container_chack_out .phone-group {
    display: flex;
    gap: 10px;
}

.main_container_chack_out .phone-group select {
    flex: 0 0 120px;
}

.main_container_chack_out .phone-group input {
    flex: 1;
}

.main_container_chack_out .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.main_container_chack_out .checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.main_container_chack_out .checkbox-group label {
    margin: 0;
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
}

.main_container_chack_out .ownership-note {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

/* Buttons */
.main_container_chack_out .button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.button-group a {
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.main_container_chack_out button {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.main_container_chack_out .primary {
    background: #5DB1A3;
    color: white;
    border-color: #5DB1A3;
}

.main_container_chack_out button.primary:hover {
    background: #20C997;
}

.main_container_chack_out button:hover {
    background: #f5f5f5;
}

.main_container_chack_out button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.main_container_chack_out .link-button {
    text-align: center;
    margin-top: 20px;
}

.main_container_chack_out .link-button a {
    color: #5DB1A3;
    text-decoration: none;
    font-size: 14px;
}

.main_container_chack_out .link-button a:hover {
    text-decoration: underline;
}


/* checkout-payment */

.main_container_chack_out_tol .header_main_top_detels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.main_container_chack_out_tol a {
    background: none;
    border: none;
    display: flex;
    font-size: 14px;
    color: #5DB1A3;
    cursor: pointer;
    padding: 8px;
}

.main_container_chack_out_tol .title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    text-align: center;
}

.main_container_chack_out_tol .subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.main_container_chack_out_tol .payment-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.main_container_chack_out_tol .payment-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
}

.main_container_chack_out_tol .payment-option:hover {
    border-color: #5DB1A3;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.main_container_chack_out_tol .payment-option.selected {
    border-color: #5DB1A3;
    background-color: #f0f7ff;
}

.main_container_chack_out_tol .payment-text {
    flex: 1;
    font-size: 15px;
    color: #333;
}

.main_container_chack_out_tol .payment-icon {
    font-size: 24px;
}

.main_container_chack_out_tol .radio-btn {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.main_container_chack_out_tol .payment-option.selected .radio-btn {
    border-color: #5DB1A3;
}

.main_container_chack_out_tol .payment-option.selected .radio-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #5DB1A3;
    border-radius: 50%;
}

@media (max-width: 600px) {
    .main_container_chack_out_tol .payment-options {
        flex-direction: column;
    }

    .main_container_chack_out_tol .payment-option {
        width: 100%;
    }
}


/* offers */


.mailn_offers .discount-button {
    background: #f4f4f4dd;
    color: #479ACE;
    padding: 5px 40px;
    border: 2px solid #59ADA8;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    margin-top: 40px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.mailn_offers .divider {
    width: 40%;
    height: 2px;
    flex-grow: 1;
    background: #5AAEA9;
}

.mailn_offers .main-text {
    font-size: 20px !important;
    font-weight: bold;
    color: #333;
    text-align: right;
    line-height: 1.6;
}

.mailn_offers .highlight {
    background: #5AAEA9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .mailn_offers .discount-button {
        font-size: 18px;
        padding: 12px 30px;
    }

    .mailn_offers .main-text {
        font-size: 22px;
    }

    .mailn_offers {
        margin-top: 120px;
    }
}

.mailn_offers .main_dis {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media(max-width:991px) {
    .mailn_offers .main_dis {
        display: flex;
        flex-direction: column;
    }
}

/* profil */


.img_loaylt_main {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: right;
    font-family: 'Arial', sans-serif;
}

.img_loaylt_main h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.img_loaylt_main ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.img_loaylt_main ul li {

    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
}

.img_loaylt_main ul li::before {
    content: '•';
    color: #155724;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    right: 0;
    text-align: center;
}


.img_loaylt_main .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;

}

.img_loaylt_main .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

.img_loaylt_main .rounded {
    border-radius: 0.3rem;
}

.img_loaylt_main .btn--primary {
    background: var(--main-color);
    color: white;
}

.img_loaylt_main .btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.img_loaylt_main .alert-insufficient-loyalty-point {
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
}

.img_loaylt_main .alert-insufficient-loyalty-point span {
    display: inline-flex;
    align-items: center;
}

.img_loaylt_main .alert-insufficient-loyalty-point svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

.img_loaylt_main .alert-insufficient-loyalty-point .font-semibold {
    font-weight: 600;
}


.img_loaylt_main .font-semibold {
    font-weight: 600;
}


.main_profil {
    display: grid;
    grid-template-columns: 3fr 9fr;
    /* height: 100vh; */
    margin-bottom: 40px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .main_profil {
        grid-template-columns: 1fr;
        margin-top: 0px;
    }

    .main_profil .sidebar {
        height: 100% !important;
    }
}


/* Sidebar */
.main_profil .sidebar {
    flex-shrink: 0;
    height: 100vh;
    box-shadow: var(--box-shadow);
}

.main_profil .menu-item {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.main_profil .menu-item:hover {
    background: #f0f0f0;
    color: darkcyan;
}

.main_profil .menu-item.active {
    background: #e3f2fd;
    color: darkcyan;
    border-right: 3px solid darkcyan;
}

.main_profil .menu-item span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_profil .menu-icon {
    width: 20px;
    font-size: 18px;
}

.main_profil .content-wrapper {
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.main_profil .page-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

/* Profile Picture */
.main_profil .profile-picture {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.main_profil .profile-img-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.main_profil .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main_profil .profile-img i {
    font-size: 80px;
    color: #bdbdbd;
}

.main_profil .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_profil .camera-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: darkcyan;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid white;
}

.main_profil .camera-btn i {
    color: white;
    font-size: 16px;
}

.main_profil .profile-name {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
}

/* Form */
.main_profil .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    margin-bottom: 25px;
    width: 100%;
}

.main_profil .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
    width: 100%;
}

.main_profil .form-group {
    display: flex;
    flex-direction: column;
}

.main_profil .form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.main_profil .form-group input {
    padding: 12px 15px;
    border: 1px solid #ffffff;
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

/*.main_profil .form-group input:focus {*/
/*    outline: none;*/
/*    border-color: darkcyan;*/
/*    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);*/
/*}*/

.main_profil .form-group input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.main_profil .phone-input-wrapper {
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    transition: all 0.3s;
}

.main_profil .phone-input-wrapper:focus-within {
    border-color: darkcyan;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.main_profil .phone-input-wrapper input {
    border: none;
    padding: 12px 0;
    flex: 1;
}

.main_profil .phone-input-wrapper input:focus {
    box-shadow: none;
    border: none;
}

.main_profil .country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    padding-left: 10px;
    border-left: 1px solid #ddd;
    margin-left: 10px;
}

.main_profil .password-input-wrapper {
    position: relative;
}

.main_profil .password-input-wrapper input {
    padding-left: 45px;
}

.main_profil .toggle-password {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

.main_profil .submit-btn {
    background: darkcyan;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.main_profil .submit-btn:hover {
    background: #1565c0;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* Hidden pages */
.main_profil .page-content {
    display: none;
}

.main_profil .page-content.active {
    display: block;
}

.main_profil .hamburger {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.main_profil .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
}


.main_profil .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.main_profil .empty-state i {
    font-size: 100px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.main_profil .empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #666;
}

.main_profil .empty-state p {
    font-size: 14px;
}

.main_profil .table-container {
    overflow-x: auto;
}

.main_profil table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.main_profil table th {
    background: #f5f5f5;
    padding: 5px;
    text-align: right;
    font-weight: 600;
    font-size: 12px;
    border-bottom: 2px solid #ddd;
}

.main_profil table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.main_profil .status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.main_profil .status-pending {
    background: #fff3cd;
    color: #856404;
}

.main_profil .status-completed {
    background: #d4edda;
    color: #155724;
}

.main_profil .status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.main_profil .main_img_loaylt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .main_profil .main_img_loaylt {
        flex-direction: column;
    }

    .main_profil .content-wrapper {
        overflow-x: scroll;
        max-width: 450px;
    }

    .main_profil table th {
        font-size: 11px;
    }
}

.main_profil .img_loaylt {
    position: relative;
    display: inline-block;
    box-shadow: var(--box-shadow);
    color: #fff;
    background-color: #2c6ba4 !important;
    border-color: #2c6ba4 !important;
    width: 100%;
    border-radius: 10px;
}

.main_profil .img_loaylt_main {
    position: relative;
    display: inline-block;
    box-shadow: var(--box-shadow);
    color: #fff;
    /* background-color: #2c6ba4 !important;
            border-color: #2c6ba4 !important; */
    width: 100%;
    border-radius: 10px;
}

.main_profil .img_loaylt img {
    display: block;
    width: 30%;
    height: 100px;
}

.main_profil .img_loaylt span {
    position: absolute;
    top: 42px;
    right: 30px;
    color: rgb(255, 255, 255);
    width: 25px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    width: max-content;
}


.img_loaylt .btn-light {
    position: absolute;
    top: 10px;
    left: 30px;
    padding: 8px 16px;
    height: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    cursor: pointer;
}

.img_loaylt .btn-light:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.img_loaylt h2 {
    position: absolute;
    top: 10px;
    right: 30px;
    color: rgb(255, 255, 255);
    width: 25px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 23px;
    width: max-content;
}


.main_order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.main_order h2 {
    font-size: 18px;
    font-weight: 500;

}

.img_order {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.img_order img {
    margin-bottom: 20px;

}

.img_order h6 {
    font-size: 15px;
    font-weight: 600;
    color: #ddd;
}


.img_order h2 {
    font-size: 17px;
    font-weight: 600;
    color: #ddd;
}


.chat-container {
    display: flex;
    background: #fff;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.chat-container .chat-sidebar {
    width: 260px;
    background: #eef6ff;
    padding: 20px;
    border-left: 1px solid #d8e6f7;
}

.chat-container .tabs {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    border-bottom: 1px solid #cfd9e6;
}

.chat-container .tab {
    flex: 1;
    text-align: center;
    background: none;
    border: none;
    font-size: 16px;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    color: #5a6c7d;
    transition: 0.3s;
}

.chat-container .tab.active {
    color: #000;
    border-bottom: 3px solid #000;
}

.chat-container .content-box {
    display: none;
}

.chat-container .content-box.active {
    display: block;
}

.chat-container .search-box {
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-container .search-box input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
}

.chat-container .search-box i {
    color: #9aaab9;
    font-size: 14px;
}

.chat-container .chat-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #223344;
    font-size: 17px;
}

.chat-container .chat-empty img {
    width: 70px;
    margin-bottom: 10px;
}


.ticket-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.ticket-modal .ticket-content {
    background: #fff;
    width: 600px;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.ticket-modal .close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
}

.ticket-modal .form-group {
    margin-bottom: 15px;
}

.ticket-modal .form-row {
    gap: 15px;
}

.ticket-modal .form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.ticket-modal .upload-box {
    width: 60px;
    height: 10px;
    border: 2px dashed #cdd7e0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
}

.ticket-modal .upload-box i {
    font-size: 22px;
    color: #748a9d;
}

.ticket-modal .buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.ticket-modal .btn-submit {
    background: #2d518f;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.ticket-modal .btn-close {
    background: #4caf50;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
}


.ticket-modal .upload-box {
    width: 45px;
    height: 50px;
    border: 2px dashed #4da3ff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #f7fbff;
    transition: 0.3s;
}

.ticket-modal .upload-box i {
    font-size: 40px;
    color: #4da3ff;
    margin-bottom: 10px;
}

.ticket-modal .upload-box span {
    color: #4da3ff;
    font-size: 12px;
}

.ticket-modal .upload-box:hover {
    background: #eaf4ff;
    border-color: #1e7ee6;
}


.add-address-btn {
    background: #55A7B4;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
    transition: 0.3s;
}

.add-address-btn i {
    font-size: 16px;
}

.add-address-btn:hover {
    background: #55A7B4;
}


.add-address-btn .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.add-address-btn .address-type {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.add-address-btn .address-type span {
    font-size: 14px;
    font-weight: 500;
    color: #949494;
}

.add-address-btn .actions i {
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.add-address-btn .delete-icon {
    color: #ff4c4c;
}

.add-address-btn .delete-icon:hover {
    color: #d60000;
}

.add-address-btn .edit-icon {
    color: #68d391;
}

.add-address-btn .edit-icon:hover {
    color: #0056d1;
}

.add-address-btn .address-body p {
    font-size: 15px;
    color: #333;
    margin: 6px 0;
    display: flex;
    justify-content: space-between;
}

.add-address-btn .address-body span {
    color: #555;
}

.add-address-btn .submit-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-address-btn .submit-btn i {
    font-size: 16px;
}


.add-address-btn {
    background: #55A7B4;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
    transition: 0.3s;
}

.add-address-btn i {
    font-size: 16px;
}

.add-address-btn:hover {
    background: #55A7B4;
}

.address-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.address-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    border-top: 5px solid #55A7B4;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-type {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.address-type span {
    font-size: 14px;
    font-weight: 500;
    color: #949494;
}

.actions i {
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.delete-icon {
    color: #ff4c4c;
}

.delete-icon:hover {
    color: #d60000;
}

.edit-icon {
    color: #68d391;
}

.edit-icon:hover {
    color: #0056d1;
}

.address-body p {
    font-size: 15px;
    color: #333;
    margin: 6px 0;
    display: flex;
    justify-content: space-between;
}

.address-body span {
    color: #555;
}

.submit-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.submit-btn i {
    font-size: 16px;
}

@media (max-width: 991px) {
    .chat-empty p {
        font-size: 12px;
    }

    .address-card {
        width: 100%;
    }
}


/* contact  */

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.content .form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content .form-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.content .form-group {
    margin-bottom: 20px;
}

.content .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.content .form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

/*.content .form-group input:focus,*/
/*.form-group textarea:focus,*/
/*.form-group select:focus {*/
/*    outline: none;*/
/*    border-color: #667eea;*/
/*    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);*/
/*}*/

.content .phone-group {
    display: flex;
    gap: 10px;
}

.content .phone-group select {
    width: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.content .phone-group input {
    flex: 1;
}

.content textarea {
    min-height: 150px;
    resize: vertical;
}

.content .captcha {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.content .captcha-box {
    flex: 1;
    background: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    border: 2px dashed #667eea;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: #667eea;
    user-select: none;
}

.content .captcha input {
    flex: 1;
}

.content .captcha-refresh {
    width: 45px;
    height: 45px;
    border: 2px solid #667eea;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s;
    color: #667eea;
}

.content .captcha-refresh:hover {
    background: #667eea;
    color: white;
    transform: rotate(180deg);
}

.content .submit-btn {
    width: 100%;
    padding: 15px;
    background: #51A1AF;
    text-align: center;
    color: white;
    width: max-content;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.content .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.content .submit-btn:active {
    transform: translateY(0);
}

.content .illustration-section {
    position: relative;
}

.content .img_main_contact {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.content .img_main_contact img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.content .contact-info {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.content .info-item {
    background: #f9fafb;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.content .info-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(-5px);
}

.content .info-icon {
    width: 45px;
    height: 45px;
    background: #667eea;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.content .info-item:hover .info-icon {
    background: white;
    color: #667eea;
}

.content .required {
    color: #ef4444;
}

@media (max-width: 968px) {
    .content .form-row {
        grid-template-columns: 1fr;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content .form-section {
        padding: 25px;
    }

    .content .img_main_contact {
        padding: 25px;
    }
}


.page-header {
    padding: 25px 0;
    text-align: center;
}

.main_brand .page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}


.main_brand .map-wrapper {
    padding: 0;
    position: relative;
    height: 600px;
}

.main_brand #map {
    width: 100%;
    height: 100%;
    border: 0;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.main_brand .branch-info {
    padding: 50px 40px;
    background-color: #fafbfc;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.main_brand .branch-name {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: right;
}

.main_brand .branch-address {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: right;
}

.main_brand .phone-section {
    margin-bottom: 40px;
}

.main_brand .phone-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    border-bottom: 1px solid #e8e9eb;
}

.main_brand .phone-row:last-child {
    border-bottom: none;
}

.main_brand .phone-label {
    font-size: 18px;
    color: #5a6c7d;
    font-weight: 500;
}

.main_brand .phone-number {
    font-size: 18px;
    color: #dc3545;
    font-weight: 700;
    direction: ltr;
    letter-spacing: 0.5px;
}

.main_brand .btn-directions {
    background: linear-gradient(to right, #4a90e2, #357abd);
    color: #fff;
    border: none;
    padding: 7px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    text-transform: capitalize;
}

.main_brand .btn-directions:hover {
    background: linear-gradient(to right, #357abd, #2868a8);
    color: #fff;
    transform: translateY(-2px);
}

.main_brand .btn-directions:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .main_brand .map-wrapper {
        height: 400px;
    }

    .main_brand .branch-info {
        padding: 35px 25px;
    }

    .main_brand .branch-name {
        font-size: 26px;
        text-align: center;
    }

    .main_brand .branch-address {
        text-align: center;
        font-size: 15px;
    }

    .main_brand .phone-row {
        padding: 15px 0;
    }

    .main_brand .phone-label,
    .phone-number {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .main_brand .page-header h1 {
        font-size: 28px;
    }



    .main_brand .branch-name {
        font-size: 22px;
    }

    .main_brand .phone-label,
    .phone-number {
        font-size: 14px;
    }
}


.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-menu.active {
    right: 0 !important;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

body.sidebar-open {
    overflow: hidden;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px 10px;
    transition: color 0.3s;
}

.sidebar-close:hover {
    color: #e74c3c;
}

/* Sidebar User */
.sidebar-user {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.sidebar-user-icon {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}

.sidebar-user-info h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.sidebar-user-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 10px 0;
}

.sidebar-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-nav-item:hover {
    background: #f8f8f8;
}

.sidebar-nav-item span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav-item i {
    font-size: 16px;
}

.sidebar-section-title {
    padding: 15px 20px;
    font-weight: bold;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    opacity: 0.7;
}

.mobile-menu-btn i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .sidebar-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .sidebar-menu {
        width: 85%;
        max-width: 600px;
    }
}


.slider_prodects_prodecrt_main_tow_lin_tow_main_lin {
    position: relative;
}

.slider-cart-button {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-cart-button button {
    background: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.lib_main_card .main_img_lib {
    background-color: #D7F0E9;
    border-radius: 20px;
    padding: 5px;
}

.lib_main_card .main_img_lib img {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.lib_main_card .slider-container {
    position: relative;
}

.lib_main_card .custom-prev-btn,
.custom-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.lib_main_card .custom-prev-btn:hover,
.custom-next-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: #f2f2f2;
}

.lib_main_card .custom-prev-btn {
    left: 0;
}

.lib_main_card .custom-next-btn {
    right: 0;
}

.lib_main_card .custom-prev-btn img,
.custom-next-btn img {
    width: 40px;
    height: 40px;
    pointer-events: none;
}

/* Slick Styles */
.lib_main_card .main_lib .slick-slide {
    margin: 0 10px;
}

.lib_main_card .main_lib .slick-list {
    margin: 0 -10px;
}

@media (max-width: 768px) {

    .lib_main_card .custom-prev-btn,
    .custom-next-btn {
        width: 45px;
        height: 45px;
    }

    .banner_slider .slick-list {
        padding: 0 !important;
    }


    .slick-list {
        padding-left: 0 !important;
        padding-right: 89px !important;
    }

    .lib_main_card .main_img_lib img {
        height: 100px;
    }
}


.main_lib::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    right: -20px;
    pointer-events: none;
    box-shadow: inset 70px 0 40px -35px rgba(255, 255, 255, 1), inset -70px 0 40px -35px rgba(255, 255, 255, 1);
    z-index: 99998;
}

.lib_main_card h2 {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 10px 0;
    text-align: start;
    line-height: 1.2;
}

.lib_main_card {
    padding: 10px;
}


@media (max-width: 991px) {
    #productsFiltered .lin_list {
        width: 100% !important;
        max-width: 190px !important;
    }

    #productsFiltered {
        padding-left: 30px !important;
        padding-right: 0 !important;
    }
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.filter-header-mobile {
    display: none;
}

@media (max-width: 992px) {

    .separator {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .attribute-list {
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .main_col_prodect_row .container {
        padding: 0 !important;
    }

    .filter-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        margin-bottom: 20px;
        border-bottom: 2px solid #fff;
    }

    .filter-header-mobile h3 {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #212529;
    }

    .filter-close-btn {
        background: none;
        border: none;
        font-size: 32px;
        color: #6c757d;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .filter-close-btn:hover {
        color: #212529;
        background: #f8f9fa;
        border-radius: 50%;
    }

    .category-list {
        margin-bottom: 20px;
    }

    .category-header {
        padding: 12px 10px;
    }

    .category-label {
        font-size: 14px;
    }

    .dropdown-content {
        padding-right: 20px;
    }

    .price-range-section,
    .main_catgry {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .price-range-title h3 {
        font-size: 16px;
    }

    .price-input {
        padding: 10px;
        font-size: 14px;
    }

    .main_title h2 {
        font-size: 16px;
    }

    .attribute-list {
        max-height: 200px;
    }

    .custom-checkbox {
        font-size: 13px;
        padding: 10px 5px;
    }

    .search-group input {
        padding: 10px;
        font-size: 13px;
    }

    .single_line {
        display: none;
    }

    .new_category_title {
        font-size: 17px !important;
    }
}

@media (max-width: 480px) {
    .col_main_prodect {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
    }

    .price-range-section,
    .main_catgry {
        padding: 12px;
    }

    .price-inputs {
        gap: 8px;
    }

    .price-input {
        padding: 8px;
        font-size: 13px;
    }

    .category-header {
        padding: 10px;
    }

    .radio-custom {
        width: 16px;
        height: 16px;
    }

    .radio-custom::after {
        width: 8px !important;
        height: 8px !important;
    }

    .category-label {
        font-size: 13px;
    }

    .price-range-title h3,
    .main_title h2 {
        font-size: 15px;
    }
}


.filter-header-mobile {
    display: none;
}


.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.mobile-user-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.mobile-user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-user-icon i {
    font-size: 24px;
    color: #6c757d;
}

.mobile-user-info h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.mobile-user-info p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.mobile-nav-links {
    padding: 10px 0;
}

.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:hover {
    background: #f8f9fa;
}

.mobile-nav-item span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-item i {
    font-size: 16px;
    color: #666;
}

.mobile-nav-divider {
    padding: 15px 20px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 10px;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-nav-menu,
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* Show mobile menu on mobile/tablet */
@media (max-width: 991px) {
    .list_header {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .search-container {
        flex: 1;
        margin: 0 !important;
    }

    .search-icon {
        width: 20px;
        height: 20px;
    }

    .title_cart {
        display: none;
    }

    .custom_auth_wrapper {
        display: none;
    }
}


.submenu {
    left: 273% !important;
    top: 0% !important;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-right: 5px;
    z-index: 1001;
    text-align: start;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
    -ms-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
}


.dropdown-container {
    position: relative;
    display: inline-block;
}

.img_all_all_cats:hover {
    background: #f8f9fa;
    border-color: #68d391;
}

.img_all_all_cats img {
    width: 24px;
    height: 24px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
}


.dropdown-item:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.submenu h2 {
    font-size: 16px;
    padding: 15px 20px;
    color: rgb(22, 22, 22);
    border-radius: 8px 8px 0 0;
    margin: 0;
}

.submenu-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
}

.submenu-item:last-child {
    border-bottom: none;
}

.submenu-item:hover {
    background: #f8f9fa;
    padding-right: 25px;
}

.third-level-menu {
    position: fixed;
    right: 50%;
    top: -30px;

    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-right: 5px;
    z-index: 1002;
}


.submenu-item:hover>.third-level-menu {
    opacity: 1;
    visibility: visible;
}

.third-level-menu h3 {
    font-size: 14px;
    padding: 12px 20px;
    color: white;
    margin: 0;
}

.third-level-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.third-level-item:last-child {
    border-bottom: none;
}

.third-level-item:hover {
    background: #f8f9fa;
    padding-right: 25px;
    color: #68d391;
}


.custom_btn_div {
    text-align: center;
    display: flex;
    align-items: center;
    transform: scaleX(-1);
}

.custom_arrow i {
    transform: none !important;
}

.custom_text {
    transform: scaleX(-1);
}


.grid_main_slider_detels_main .slider-container {
    max-width: 700px;
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.grid_main_slider_detels_main {
    position: relative;
}

.grid_main_slider_detels_main .action-buttons {
    position: absolute;
    top: 2%;
    left: 52%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.grid_main_slider_detels_main .action-btn {
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 10%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
}

.grid_main_slider_detels_main .action-btn:hover {
    transform: scale(1.1);
}

.grid_main_slider_detels_main .action-btn i {
    font-size: 18px;
    color: #333;
}

.grid_main_slider_detels_main .main-slider {
    position: relative;
}

.grid_main_slider_detels_main .slide-item {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: zoom-in;
}

.grid_main_slider_detels_main .slide-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid_main_slider_detels_main .slide-item.zoomed {
    cursor: zoom-out;
}

.grid_main_slider_detels_main .slide-item.zoomed img {
    transform: scale(2);
}

.grid_main_slider_detels_main .navigation-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.grid_main_slider_detels_main .nav-btn {
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.grid_main_slider_detels_main .nav-btn:hover {
    transform: scale(1.1);
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.grid_main_slider_detels_main .nav-btn img {
    width: 40px;
    height: 40px;
}

.grid_main_slider_detels_main .thumbnail-wrapper {
    flex: 1;
    max-width: 600px;
}

.grid_main_slider_detels_main .main-slider .slick-prev,
.main-slider .slick-next {
    display: none !important;
}

.grid_main_slider_detels_main .thumbnail-slider {
    outline: none;
}

.grid_main_slider_detels_main .thumbnail-item {
    padding: 5px;
    outline: none;
}

.grid_main_slider_detels_main .thumbnail-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grid_main_slider_detels_main .thumbnail-item img:hover {
    border-color: #ddd;
}

.grid_main_slider_detels_main .slick-current .thumbnail-item img {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.grid_main_slider_detels_main .slick-dots {
    bottom: 20px;
}

.grid_main_slider_detels_main .slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.5;
}

.grid_main_slider_detels_main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: white;
}

.grid_main_slider_detels_main .zoom-hint {
    text-align: center;
    padding: 15px;
    color: #666;
    font-size: 14px;
    background: white;
}

@media (max-width: 768px) {
    .grid_main_slider_detels_main .slide-item {
        height: 350px;
    }

    .grid_main_slider_detels_main .action-buttons {
        flex-direction: row !important;
        top: -40px;
        left: 46px;
    }

    .grid_main_slider_detels_main .action-btn {
        width: 40px;
        height: 40px;
    }

    .grid_main_slider_detels_main .navigation-container {
        flex-direction: column;
    }

    .grid_main_slider_detels_main .thumbnail-wrapper {
        order: 1;
        width: 100%;
    }

    .grid_main_slider_detels_main .nav-btn {
        width: 50px;
        height: 50px;
        display: none;
    }
}


.grid_main_slider_detels_main .navigation-container {
    position: relative;
}

.grid_main_slider_detels_main .nav-btn {

    position: absolute;
    z-index: 10;
}

.grid_main_slider_detels_main .nav-btn.prev-btn {
    right: 0px;
    bottom: 25%;
    transform: translateY(-50%) rotate(180deg);
}


.grid_main_slider_detels_main .nav-btn.next-btn {
    left: 0px;
    bottom: 23%;
    transform: translateY(-50%) rotate(180deg);
}


.slick-slide {
    height: auto !important;
}

.slick-slide.category-card {
    position: relative;
    background: linear-gradient(to right, #4dc0b5, #38a89d);
    border-radius: 20px;
    padding: 0 20px 0 0;
    text-align: right;
    color: white;
    height: 120px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px;
}


.thumbnail-item.slick-active img {
    border-radius: 7px;
    object-fit: contain;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}


@media (max-width: 991px) {
    .navbar-nav-scroll {
        overflow: visible !important;
        max-height: none !important;
        --bs-scroll-height: auto !important;
    }

    .navbar-collapse {
        overflow: visible !important;
        max-height: none !important;
    }


}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 25px !important;
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    -ms-border-radius: 25px !important;
    -o-border-radius: 25px !important;
}


.qty-btn {
    width: 50px;
    height: 30px;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 16px;
    color: #666;
}


.row_slider_detels {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-top: 10px;
}


@media(max-width:991px) {
    .main_card_img_main img {
        width: 100%;
        height: 320px;
    }

}

.img_all_all_cats {
    transition: all 0.3s;
    position: relative;
}

.img_all_all_cats:hover {
    background: #f8f9fa;
    border-color: #4CAF50;
}

.img_all_all_cats img {
    width: 24px;
    height: 24px;
}

.img_all_all_cats .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 10px !important;
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    min-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.img_all_all_cats:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.img_all_all_cats .dropdown-column {
    min-width: 300px;
    border: none;
}

.img_all_all_cats .dropdown-column:first-child {
    border-left: none;
}

.img_all_all_cats .category-item {
    padding: 4px 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    position: relative;
    background: #00000000;
}

.img_all_all_cats .category-item:hover {
    background: #2d629e;
    color: rgb(7, 123, 54);
    width: 100%;
}

.img_all_all_cats .category-item.active {
    background: #4196d1;
    color: white;
}

.img_all_all_cats .subcategory-column {
    display: none;
}

.img_all_all_cats .subcategory-column.active {
    display: block;
}

.img_all_all_cats .sub-category-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.img_all_all_cats .sub-category-item:hover {
    background: #4A90E2;
    color: white;
    width: 100%;
}

.img_all_all_cats .sub-category-item.active {
    background: #4A90E2;
    color: white;
}

.img_all_all_cats .subsubcategory-column {
    display: none;
}

.img_all_all_cats .subsubcategory-column.active {
    display: block;
}

.img_all_all_cats .sub-sub-category-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    color: #666;
}

.img_all_all_cats .sub-sub-category-item:hover {
    background: #f0f7ff;
    color: #4A90E2;
}

.img_all_all_cats .column-header {
    padding: 10px 20px;
    font-weight: 600;
    color: #333;
}

.img_all_all_cats .category-item {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 5px 10px;
    display: block;
    margin: 2px;
}

.img_all_all_cats .main_dropdown_header {
    background: #f9f9f9;
    padding: 12px 10px;
}

.img_all_all_cats .main_dropdown_header .sub-category-item {
    color: #333;
    transition: 0.3s;
}

.img_all_all_cats .main_dropdown_header .column-header {
    font-size: 18px;
}

.img_all_all_cats .main_dropdown_header .sub-category-item:hover {
    color: #fff;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 1024px) {


    .img_all_all_cats .mega-dropdown {
        min-width: 700px;
        max-width: 65vw;
    }


    .img_all_all_cats .dropdown-column {
        min-width: 230px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .img_all_all_cats .mega-dropdown {
        min-width: 100%;
        width: 95vw;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        flex-direction: column;
        max-height: 70vh;
        overflow-y: auto;
    }

    .img_all_all_cats:hover .mega-dropdown {
        transform: translateX(-50%) translateY(0);
    }

    .img_all_all_cats .dropdown-column {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .img_all_all_cats .dropdown-column:last-child {
        border-bottom: none;
    }

    .img_all_all_cats .category-item,
    .img_all_all_cats .sub-category-item,
    .img_all_all_cats .sub-sub-category-item {
        padding: 12px 15px;
        font-size: 14px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .img_all_all_cats img {
        width: 20px;
        height: 20px;
    }

    .img_all_all_cats .mega-dropdown {
        width: 100vw;
        left: 50%;
        right: auto;
        margin-top: 5px;
        border-radius: 0 !important;
        max-height: 80vh;
    }

    .img_all_all_cats .category-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .img_all_all_cats .sub-category-item,
    .img_all_all_cats .sub-sub-category-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .img_all_all_cats .main_dropdown_header {
        padding: 10px 12px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 15px;
        padding: 8px 12px;
    }

    .img_all_all_cats .column-header {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {

    .img_all_all_cats .category-item,
    .img_all_all_cats .sub-category-item,
    .img_all_all_cats .sub-sub-category-item {
        padding: 8px 10px;
        font-size: 12px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 14px;
    }
}


/* cart  */



.cart-container {
    padding: 1rem 0;
}

.cart-container .cart-header {
    text-align: center;
    margin-bottom: 1rem;
}

.cart-container .cart-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cart-container .cart-header .highlight {
    color: #5EB2A4;
    position: relative;
}


.cart-container .cart-divider {
    width: 80px;
    height: 4px;
    background: #5EB2A4;
    margin: 0 auto;
    border-radius: 2px;
}

/* Cart Items Card */
.cart-container .cart-card {
    background: white;
    border-radius: 7px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}


/* Cart Table Header */
.cart-container .cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 0.5fr .5fr;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
    background: #5EB2A4;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Cart Item */
.cart-container .cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 0.5fr .5fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

@media(max-width:991px) {
    .cart-container .cart-item {
        grid-template-columns: 1fr;
    }
}

.cart-container .cart-item:hover {
    background: #f8f9fa;
    border-radius: 10px;
}

.cart-container .cart-item:last-child {
    border-bottom: none;
}

/* Product Info */
.cart-container .product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-container .product-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #5EB2A4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.cart-container .product-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Price */
.cart-container .product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #5EB2A4;
}

/* Quantity Controls */
.cart-container .qty-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.cart-container .qty-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #5EB2A4;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-container .qty-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(93, 176, 164, 0.4);
}

.cart-container .qty-value {
    font-size: 1rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    padding: 0.5rem;
    background: #ffffff;
    border-radius: 8px;
}

.main_itm {
    font-size: 14px;
}

/* Subtotal */
.cart-container .product-subtotal {
    font-size: 1rem;
    font-weight: 700;
    color: #5EB2A4;
}

/* Delete Button */
.cart-container .delete-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Addresses Card */
.cart-container .addresses-card {
    background: white;
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.cart-container .addresses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cart-container .addresses-header h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5EB2A4;
    margin: 0;
}

.cart-container .add-address-btn {
    background: #5EB2A4;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-container .add-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 176, 164, 0.4);
}

/* Address Item */
.cart-container .address-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-container .address-item:hover {
    border-color: #5EB2A4;
    background: #f8f9fa;
    transform: translateX(5px);
}

.cart-container .address-item input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #5EB2A4;
    border: 2px solid #4299D0 !important;
}

.cart-container .address-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #5EB2A4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

@media(max-width:991px) {
    .cart-container .address-icon {
        height: 30px;
        font-size: 1rem;
    }
}

.cart-container .address-details strong {
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.cart-container .address-details span {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Summary Card */
.cart-container .summary-card {
    background: white;
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: sticky;
    top: 20px;
}

.cart-container .summary-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5EB2A4;
    margin-bottom: 1.5rem;
    text-align: center;
}


.cart-container .btn-primary {
    background-color: #5EB2A4 !important;
    border-color: #5EB2A4 !important;
}

.cart-container .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-container .cart-container .summary-row span {
    color: #7f8c8d;
    font-size: 1rem;
}

.cart-container .summary-row strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.cart-container .cart-container .summary-row.discount strong {
    color: #e74c3c;
}

/* Coupon Input */
.cart-container .coupon-group {
    margin: 1.5rem 0;
}

.cart-container .coupon-group input {
    border: 2px solid #ffffff;
    border-radius: 10px 0 0 10px;
    padding: 8px 0.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.cart-container .coupon-group input:focus {
    border-color: #5EB2A4;
    outline: none;
}

.cart-container .coupon-group button {
    background: #5EB2A4;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 5px 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-container .coupon-group button:hover {
    transform: translateX(-3px);
    box-shadow: 0 5px 15px rgba(104, 211, 145, 0.4);
}

/* Grand Total */
.cart-container .grand-total {
    background: #5EB2A4;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-container .grand-total span {
    font-size: 1rem;
    font-weight: 700;
}

.cart-container .grand-total strong {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Payment Methods Slider */
.cart-container .payment-methods {
    text-align: center;
    padding: 1rem 0;
    margin: 1rem 0;
}

.cart-container .payment-methods-title {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.8rem;
}

.cart-container .payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-container .payment-icon {
    width: 50px;
    height: 35px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7f8c8d;
    transition: all 0.3s ease;
}

.cart-container .payment-icon:hover {
    border-color: #5EB2A4;
    transform: scale(1.1);
}

/* Action Buttons */
.cart-container .checkout-btn {
    background: #5EB2A4;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cart-container .checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(104, 211, 145, 0.4);
}

.cart-container .continue-shopping-btn {
    background: white;
    color: #5EB2A4;
    border: 2px solid #4299D0;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.cart-container .continue-shopping-btn:hover {
    background: #5EB2A4;
    color: white;
    transform: translateY(-3px);
}

/* Empty Cart */
.cart-container .empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-container .empty-cart-icon {
    font-size: 5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cart-container .empty-cart h3 {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {

    .cart-container .cart-table-header,
    .cart-item {
        /* grid-template-columns: 1fr; */
        text-align: center;
    }

    .cart-container .product-info {
        flex-direction: column;
    }

    .cart-container .qty-control {
        justify-content: center;
    }
}


/* checkout */


.btn-primary,
.btn-secondary {
    width: auto;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #5EB2A4;
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-secondary {
    background: white;
    color: #5EB2A4;
    border: 2px solid #5EB2A4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #5EB2A4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}


.main_dis {
    text-align: center;
    animation: fadeInDown 0.8s ease;
}

.main_container_chack_out_tol {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}


.payment-option {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
    border: 3px solid transparent;
    border-radius: 15px;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}



.payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #5EB2A4;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.payment-option:hover::before {
    opacity: 0.05;
}

.payment-option:hover {
    transform: translateX(-5px);
}

.payment-option.selected {
    border-color: #5EB2A4;
    background: #5EB2A4;
    transform: translateX(-5px) scale(1.02);
}

.payment-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.payment-icon {
    font-size: 2.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.payment-option:hover .payment-icon {
    transform: scale(1.2) rotate(10deg);
}

.radio-btn {
    width: 26px;
    height: 26px;
    border: 3px solid #5EB2A4;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    z-index: 1;
}

.payment-option.selected .radio-btn {
    border-color: white;
}

.payment-option.selected .radio-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-modern.cart-summary {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    animation: fadeInRight 0.8s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-modern.cart-summary h5 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    background: #5EB2A4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}


.summary-row_main_total {
    background: #5EB2A4;
    color: white;
    padding: 1rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 12px;
}


.summary-row_main_total strong {
    color: white;
    font-size: 1.2rem;
}

.summary-row:hover {
    padding-right: 10px;
    background: rgba(102, 126, 234, 0.02);
    border-radius: 8px;
}

.summary-row strong {
    color: #5EB2A4;
    font-size: 1.15rem;
    font-weight: 700;
}

.summary-row:last-child {
    border-bottom: none;
    background: #5EB2A4;
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.summary-row:last-child strong {
    color: white;
    font-size: 1.5rem;
}

.input-group {
    display: flex;
    gap: 10px;
    margin: 0 !important;
}

.input-group .form-control {
    border: 2px solid #ffffff;
    border-radius: 10px 0 0 10px;
    padding: 0.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.input-group .form-control:focus {
    outline: none;
    border-color: #5EB2A4;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.input-group .btn-dark {
    padding: 14px 28px;
    background: #5EB2A4;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.input-group .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 120px;
    }
}

@media (max-width: 992px) {
    .card-modern.cart-summary {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .main_container_chack_out_tol {
        padding: 25px;
    }

    .payment-text {
        font-size: 1.1rem;
    }

    .payment-icon {
        font-size: 1.8rem;
    }

    .btn-secondary {
        font-size: 11px !important;
    }

    .cart-container .addresses-card {
        padding: 1rem !important;
    }

    .modal {
        z-index: 99999999999999 !important;
    }

    .modal-backdrop {
        z-index: 999999999 !important;
    }

    .prodect_main h5 {
        font-size: 15px
    }

    .share-icons {
        gap: 5px !important;
    }
}


.share-container {
    position: relative;
    display: inline-block;
}

.share-dropdown {
    position: absolute;
    top: calc(100% + 3px);
    left: 20%;
    transform: translateX(-50%);
    background: white;
    border-radius: 0px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.share-container:hover .share-dropdown {
    opacity: 1;
    visibility: visible;
}

.share-option {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-option:hover {
    transform: scale(1.1);
}

.share-option i {
    font-size: 16px;
}

.share-icon {
    background-color: #e8e8e8;
    color: #666;
}

.share-icon:hover {
    background-color: #d0d0d0;
}

.facebook-icon {
    background-color: #1877f2;
    color: white;
}

.facebook-icon:hover {
    background-color: #0d65d9;
}

.x-icon {
    background-color: #000000;
    color: white;
}

.x-icon:hover {
    background-color: #333333;
}

.pinterest-icon {
    background-color: #e60023;
    color: white;
}

.pinterest-icon:hover {
    background-color: #c9001d;
}

.email-icon {
    background-color: #e8e8e8;
    color: #666;
}

.email-icon:hover {
    background-color: #d0d0d0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px
}

.select2-container .select2-selection--single {
    height: 40px
}

.pac-container {
    z-index: 999999999999999999 !important;
}


.checkout-content {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.checkout-header h4 {
    color: #333;
    margin-bottom: 10px;
}

.info-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #68d391;
}

.info-card h6 {
    color: #68d391;
    margin-bottom: 10px;
}

.payment-method-card {
    position: relative;
    height: 100%;
}

.payment-method-input {
    display: none;
}

.payment-method-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 150px;
    background: #fff;
}

.payment-method-label:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.payment-method-input:checked+.payment-method-label {
    border-color: #68d391;
    background: #f0f7ff;
}

.payment-icon {
    font-size: 2.5rem;
    color: #666;
    margin-bottom: 10px;
}

.payment-method-input:checked+.payment-method-label .payment-icon {
    color: #68d391;
}

.payment-title {
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 5px;
}

.payment-check {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: #68d391;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method-input:checked+.payment-method-label .payment-check {
    opacity: 1;
}

.order-note textarea {
    resize: none;
}

.checkout-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .payment-method-label {
        min-height: 120px;
        padding: 15px;
    }

    .payment-icon {
        font-size: 2rem;
    }
}


.subscription-container {
    width: 100%;
}

.subscription-box {
    background: #FFFFFF80 !important;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1px 5px;
    margin: 15px 0;
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.subscribe-btn {
    background: #65C08E;
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.input-wrapper {
    flex: 1;
}

.sub_email_inp {
    width: 100%;
    padding: 14px 0;
    border: none;
    background: none;
    border-top-right-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    text-align: right;
    direction: rtl;
}

.required {
    color: rgb(220, 53, 69)
}

.sub_email_inp::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

@media (max-width: 767px) {
    .header-fixed {
        position: relative !important;
        box-shadow: none !important;
    }

    .slider_prodects_prodecrt_main_tow_lin_tow_main_lin {
        padding: 30px 0 !important;
    }
}



.filter-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
}

.filter-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.btn-close-filter {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.btn-close-filter:hover {
    background: #e9ecef;
    color: #000;
    border-color: #adb5bd;
}

.btn-close-filter:active {
    transform: scale(0.95);
}

/* Show only on mobile */
@media (min-width: 992px) {
    .filter-header-mobile {
        display: none !important;
    }
}

/* ========== Voice Search & Barcode Scanner Styles ========== */

/* Voice Search Icon Animation */
#voiceSearchIcon:hover,
#barcodeScanIcon:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Voice Language Dropdown */
.voice-language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 150px;
    padding: 0;
}

.voice-lang-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    color: #333;
}

.voice-lang-option:hover {
    background-color: #f8f9fa;
}

.voice-lang-option i {
    color: #68d391;
}

/* Barcode Scanner Modal */
#barcodeScannerModal .modal-content {
    border-radius: 12px;
}

#barcodeReader {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    min-height: 300px;
}

#barcodeReader video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Zoom Control Styling */
#zoomControlContainer {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

#zoomRange {
    cursor: pointer;
}

/* Scan Result & Error */
#scanResult {
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

#scanError {
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
#scanLoading {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #barcodeScannerModal .modal-dialog {
        margin: 10px;
    }

    #barcodeReader {
        min-height: 250px;
    }

    .voice-language-dropdown {
        left: 0;
    }

    .container {
        padding: 0 !important;
    }

    .header-cart-dropdown {
        display: none !important;
    }

    /*
        .navbar-toggler img {
        transform: rotate(150deg) !important;
        -webkit-transform: rotate(150deg) !important;
        -moz-transform: rotate(150deg) !important;
        -ms-transform: rotate(150deg) !important;
        -o-transform: rotate(150deg) !important;
} */
}


.main_custom_container_tow {
    padding: 0 50px;
}


@media(max-width:991px) {
    .main_custom_container_tow {
        margin-top: 0 !important;
    }
}


#modal_component {
    z-index: 99999999999999999999999999999999999999999999999;
}


@media (max-width: 991px) {
    .sidebar {
        position: fixed;
        right: -300px;
        top: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        z-index: 9999999999999999999999999999999999;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .sidebar.show {
        right: 0;
    }

    .sidebar-toggle {
        position: absolute;
        top: 137px;
        right: 20px;
        width: 35px;
        height: 35px;
        background: #2c6ba4;
        color: white;
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 10000;
        font-size: 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
}


.main_custom_container {
    padding-top: 30px;
}

.img_all_all_cats {
    transition: all 0.3s;
    position: relative;
}

.img_all_all_cats:hover {
    background: #f8f9fa;
    border-color: #4CAF50;
}

.img_all_all_cats img {
    width: 24px;
    height: 24px;
}

.img_all_all_cats .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 10px !important;
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    min-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.img_all_all_cats:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.img_all_all_cats .dropdown-column {
    min-width: 300px;
    border: none;
}

.img_all_all_cats .dropdown-column:first-child {
    border-left: none;
}

.img_all_all_cats .category-item {
    padding: 4px 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    position: relative;
    background: #00000000;
}

.img_all_all_cats .category-item:hover {
    background: #2d629e;
    color: rgb(7, 123, 54);
    width: 100%;
}

.img_all_all_cats .category-item.active {
    background: #4196d1;
    color: white;
}

.img_all_all_cats .subcategory-column {
    display: none;
}

.img_all_all_cats .subcategory-column.active {
    display: block;
}

.img_all_all_cats .sub-category-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.img_all_all_cats .sub-category-item:hover {
    background: #4A90E2;
    color: white;
    width: 100%;
}

.img_all_all_cats .sub-category-item.active {
    background: #4A90E2;
    color: white;
}

.img_all_all_cats .subsubcategory-column {
    display: none;
}

.img_all_all_cats .subsubcategory-column.active {
    display: block;
}

.img_all_all_cats .sub-sub-category-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    color: #666;
}

.img_all_all_cats .sub-sub-category-item:hover {
    background: #f0f7ff;
    color: #4A90E2;
}

.img_all_all_cats .column-header {
    padding: 10px 20px;
    font-weight: 600;
    color: #333;
}

.img_all_all_cats .category-item {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 5px 10px;
    display: block;
    margin: 2px;
}

.img_all_all_cats .main_dropdown_header {
    background: #f9f9f9;
    padding: 12px 10px;
}

.img_all_all_cats .main_dropdown_header .sub-category-item {
    color: #333;
    transition: 0.3s;
}

.img_all_all_cats .main_dropdown_header .column-header {
    font-size: 18px;
}

.img_all_all_cats .main_dropdown_header .sub-category-item:hover {
    color: #fff;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablets - Large (حتى 1024px) */
@media (max-width: 1024px) {
    .img_all_all_cats .mega-dropdown {
        min-width: 700px;
        max-width: 90vw;
    }

    .img_all_all_cats .dropdown-column {
        min-width: 230px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 16px;
    }
}

/* Tablets - Small (حتى 768px) */
@media (max-width: 768px) {
    .img_all_all_cats .mega-dropdown {
        min-width: 100%;
        width: 95vw;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        flex-direction: column;
        max-height: 70vh;
        overflow-y: auto;
    }

    .img_all_all_cats:hover .mega-dropdown {
        transform: translateX(-50%) translateY(0);
    }

    .img_all_all_cats .dropdown-column {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .img_all_all_cats .dropdown-column:last-child {
        border-bottom: none;
    }

    .img_all_all_cats .category-item,
    .img_all_all_cats .sub-category-item,
    .img_all_all_cats .sub-sub-category-item {
        padding: 12px 15px;
        font-size: 14px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .img_all_all_cats img {
        width: 20px;
        height: 20px;
    }

    .img_all_all_cats .mega-dropdown {
        width: 70vw;
        left: 50%;
        right: auto;
        margin-top: 5px;
        border-radius: 0 !important;
        max-height: 80vh;
    }

    .img_all_all_cats .category-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .img_all_all_cats .sub-category-item,
    .img_all_all_cats .sub-sub-category-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .img_all_all_cats .main_dropdown_header {
        padding: 10px 12px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 15px;
        padding: 8px 12px;
    }

    .img_all_all_cats .column-header {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {

    .img_all_all_cats .category-item,
    .img_all_all_cats .sub-category-item,
    .img_all_all_cats .sub-sub-category-item {
        padding: 8px 10px;
        font-size: 12px;
    }

    .img_all_all_cats .main_dropdown_header .column-header {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .img_all_all_cats .mega-dropdown {
        scrollbar-width: thin;
        scrollbar-color: #4A90E2 #f0f0f0;
    }

    .img_all_all_cats .mega-dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .img_all_all_cats .mega-dropdown::-webkit-scrollbar-track {
        background: #f0f0f0;
    }

    .img_all_all_cats .mega-dropdown::-webkit-scrollbar-thumb {
        background: #4A90E2;
        border-radius: 3px;
    }
}
