body {
    background-color: #f6f6f68f;
}
.main-menu a,
.main-menu a:hover,
.main-menu a:active {
    padding-top: 15px;
    padding-bottom: 15px;
}

.active {
    color: var(--theme-color) !important;
}
.all_ctg_btn {
    background-color: var(--theme-color);
    color: white;
    border-radius: 45px;
    padding: 8px 15px !important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.all_ctg_btn:hover {
    color: white !important;
    background-color: #6456f4 !important;
}
.auth-dropdown {
    top: 38px;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
    /* padding: 5px 20px; */
}
.auth-div:hover .auth-dropdown {
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out 1s !important;
    pointer-events: auto;
}

.auth-dropdown a {
    padding: 5px 15px !important;
}
.logged_user-div {
    border-radius: 20px !important;
    padding: 5px 15px 0px 15px !important;
    cursor: pointer;
    background-color: white !important;
    border: 1px solid #ddd !important;
}
.logged-dropdown {
    top: 43px;
    right: 0px;
    opacity: 0;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
    /* padding: 5px 20px; */
}
.logged-dropdown a {
    padding: 5px 15px !important;
}
.logged_user-div:hover .logged-dropdown {
    display: block;
    opacity: 1;
    transition: opacity 0.5s;
}
.user-img {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.user-text {
    padding-left: 3px;
}
.user-text h6 {
    margin-bottom: 0px;
}

.icon-item {
    border-radius: 50%;
    padding: 8px;
    background-color: white !important;
    border: 1px solid #ddd !important;
}

.support-text {
    padding-left: 10px;
}
.support-text h5 {
    margin-bottom: 3px;
    color: #444;
    font: 14px;
}
.support-text p {
    margin-bottom: 5px;
    color: #6e6a6a;
    font: 12px;
}
.support-text h5 {
    margin-bottom: 3px;
    color: #444;
    font: 14px;
}
#cart_item_div {
    max-height: 330px;
    overflow-y: scroll;
    z-index: 9999;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#cart_item_div::-webkit-scrollbar {
    width: 3px;
    height: 7px;
}

#cart_item_div::-webkit-scrollbar-track {
    background: #e9e8e8;
}

#cart_item_div::-webkit-scrollbar-thumb {
    background: #b3b1b1;
}

#cart_item_div::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    left: 40%;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    margin: 8px;
    border: 4px solid #4534f7;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #4534f7 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ajax load css  */
#ajax_loader {
    display: inline-block;
    position: fixed; /* Position fixed to stay on top of the page */
    top: 0;
    left: 0;
    width: 100%; /* Full-width */
    height: 100%; /* Full-height */
    background: rgba(
        0,
        0,
        0,
        0.6
    ); /* Semi-transparent background to cover the page */
    z-index: 9999; /* Ensure it's on top of other elements */
}

#ajax_loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    top: 40%;
    right: 40%;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
#ajax_loader div:nth-child(1) {
    animation-delay: -0.45s;
}
#ajax_loader div:nth-child(2) {
    animation-delay: -0.3s;
}
#ajax_loader div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.social_img {
    transition: transform 0.3s ease-in-out;
}

.social_img:hover {
    transform: scale(1.1);
}
.app_download_li:hover {
    border: none;
}
.app_down_img {
    transition: transform 0.3s ease-in-out;
}

.app_down_img:hover {
    border: none;
    transform: scale(1.1);
}
/* Styles for screens smaller than 425px (e.g. mobile phones) */
@media screen and (max-width: 426px) {
    /* Your CSS rules for small screens go here */
    .social_img {
        width: 25px !important;
        height: 25px !important;
    }
    .footer-contant .footer-social ul li {
        padding-right: 10px;
        padding-left: 0;
    }
}

/* Styles for screens between 425px and 768px (e.g. small tablets) */
@media screen and (min-width: 426px) and (max-width: 768px) {
    /* Your CSS rules for medium-sized screens go here */
    .social_img {
        width: 30px !important;
        height: 30px !important;
    }
    .footer-contant .footer-social ul li {
        padding-right: 12px;
        padding-left: 0;
    }
}

/* Styles for screens larger than 768px (e.g. desktops) */
@media screen and (min-width: 769px) {
    .social_img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* *****************navbar + header responsive design css  *********************/
.non-mobile-menu {
    display: none;
}
/* top bar  */
.menu_title {
    display: none;
}

/* bottom menu  */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60px;
    background-color: #fff;
    width: 100vw;
    z-index: 9;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
}
.bottom_menu_div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px 10px;
}
.bottom_menu_div li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bottom_menu_div li a .icon-title,
.bottom_menu_div li a .header_cart_div img {
    transition: color 0.2s, opacity 0.2s;
}
.bottom_menu_div li a:active .icon-title {
    color: #949cb3;
}
.bottom_menu_div li a:active .header_cart_div img {
    opacity: 0.6;
}
.icon-title {
    font-size: 11px;
    color: #62646b;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1;
    padding: 4px 0;
}
.btm_wish_qty_cls {
    position: absolute;
    background: var(--theme-color);
    width: 17px;
    height: 17px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 11px;
    font-weight: 600;
    top: 11%;
    margin-left: 24px;
    padding: 3px;
    user-select: none;
}
.btm_cart_qty_cls {
    position: absolute;
    background: var(--theme-color);
    width: 17px;
    height: 17px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 11px;
    font-weight: 600;
    top: 9%;
    margin-left: 14px;
    padding: 3px;
    user-select: none;
}
/* mobile top bar  */
.download_btn {
    text-align: end;
    padding-right: 5px;
}
.download_btn a {
    font-size: 12px;
    text-transform: capitalize;
    padding: 0px 9px;
    border-radius: 6px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
        rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
.bar_title {
    font-size: 12px;
    color: #6b6767;
    font-weight: 600;
}

/* search suggestion design start */
/* Style for the suggestion dropdown */
.search-suggestions {
    position: absolute;
    top: 125px;
    z-index: 2000;
    width: 100%;
    max-width: calc(100% - 25px);
    max-height: 250px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Style for each suggestion item */
.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.search-suggestions li:last-child {
    border-bottom: 0;
}

.search-suggestions a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 16px;
}
.search-suggestions ul li a {
    display: flex;
}
/* Style for a highlighted (selected) suggestion item */
.search-suggestions .highlighted {
    background-color: #f0f0f0;
}
.empty_search_text {
    padding: 15px 0px 10px 0px;
    font-size: 16px;
    color: #797373;
}
.man-section {
    padding: 10px 0px 5px 9px;
    padding-bottom: 5px !important;
    display: flex;
}
.image-section {
    padding-right: 10px;
    flex-grow: 0;
}
.image-section img {
    height: 50px;
}
.description-section {
    font-size: 14px;
}
.s_product_title {
    font-size: 14px;
    font-weight: 500;
    color: #605f5f;
}
.discount_price {
    font-weight: 600;
    color: var(--theme-color);
}
.unit_price {
    padding-right: 10px;
    color: #f25a5a;
    text-decoration: line-through;
}
.search-suggestions::-webkit-scrollbar {
    width: 3px;
    height: 7px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #e9e8e8;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #b3b1b1;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* search suggestion design end  */

/* Media query for screens at least 425px wide */
@media (min-width: 425px) {
}

/* Media query for screens at least 725px wide */
@media (min-width: 725px) {
    .mobile-bottom-bar {
        position: relative;
        display: none;
    }
    .mobile-menu {
        display: none;
    }
    .non-mobile-menu {
        display: block;
    }
    .search-suggestions {
        top: 55px;
        max-width: 635px;
    }
    .search-suggestions img {
        height: 60px;
    }
    .description-section {
        font-size: 16px;
    }
    .s_product_title {
        font-size: 16px;
    }
}

/* Media query for screens at least 990px wide */
@media (min-width: 990px) {
    #ajax_loader div {
        right: 45% !important;
    }
}

/* Media query for screens at least 1200px wide */
@media (min-width: 1200px) {
    .menu_title {
        display: block;
    }
}
