/* #0001 ctatic classes */
/* #0002 nav bar classes  */
/* #0003 footer classes  */
/* #0004 Home Page classes  */
/* #0005 producy details classes */
/* #0006 checkout classes */
/* #0007 search classes */

/* start of #0001 */
.shimmer {
    overflow: hidden;
    position: relative;
}

.shimmer:hover::before {
    animation: shimmer 1.5s ease-in-out;
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-60deg, #0000 20%, rgba(255, 255, 255, 0.725), #908f8f00 75%) right/200% 100%;
    transform: rotate(-60deg);
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.primary-button {
    background-color: var(--primary);
    color: white;
    height: 50px;
    font-weight: bold;
    transition: all 1s;
    border: unset !important;
}

.primary-button:hover {
    color: white;
    background-color: var(--hov-primary);
}
 

.w-25 {
    width: 25% !important;
}

.w-75 {
    width: 75% !important;
}

.l-font-size {
    font-size: 30px;
}

.md-font-size {
    font-size: 20px;
}

.sm-font-size {
    font-size: 15px;
}

.button-not-button {
    background-color: unset;
    border: unset;
}

.sm-gap {
    gap: 10px;
}

.md-gap {
    gap: 25px;
}

.lg-gap {
    gap: 40px;
}

.display-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.display-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

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

h4.text-light {
    display: none;
}

.display-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

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

    .display-3 {
        grid-template-columns: repeat(1, 1fr);
    }

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

    .display-5 {
        grid-template-columns: repeat(1, 1fr);
    }
    

}

.old-price {
    text-decoration: line-through;
}

/* end of #0001 */

/* start of #0002 */
.fixed-cart {
    position: fixed;
    top: 50%;
    z-index: 999;
    height: fit-content;
    overflow: hidden;
    cursor: pointer;

}

.fixed-cart .item {
    width: fit-content;
    height: 75px;
    ;
    background-color: black;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 7px;
}

:root[dir="rtl"] .fixed-cart {
    left: 0px;
    border-top-right-radius: 17px;
    /* Adjust the value as needed */
    border-bottom-right-radius: 17px;
    /* Adjust the value as needed */
}

:root[dir="ltr"] .fixed-cart {
    right: 0px;
    border-top-left-radius: 17px;
    /* Adjust the value as needed */
    border-bottom-left-radius: 17px;
    /* Adjust the value as needed */
}


.fixed-icons {
    position: fixed;
    top: 20%;
    z-index: 999;

}

.fixed-icons .item {
    width: 50px;
    height: 50px;
    background-color: #f6f6f6d4;
    margin-bottom: 15px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 15px;
}

:root[dir="rtl"] .fixed-icons {
    right: 0px;
}

:root[dir="ltr"] .fixed-icons {
    left: 0px;
}

.link-header-hover {
    position: relative;
}

.link-header-hover:hover::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    animation: linkHeaderHover 0.5s ease-in-out;
    background-color: #111111;
    height: 3px;
}

.header_menu_links.active {
    color: var(--primary) !important;
}

.header_menu_links.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #111111;
    height: 3px;
}

@keyframes linkHeaderHover {
    0% {
        width: 0px;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .search-modal-dialog {
        max-width: unset !important;
    }
}

.search-modal-body {
    overflow-y: unset !important;
    max-height: unset !important;
}

@media (min-width: 768px) {
    .search-modal-body {
        max-height: unset !important;
    }
}

.nav-lang {
    padding: 0px 27px;
    border: solid #bdbaba52 0.1px;
}

.lang-dropdown {
    min-width: 8rem !important;
    margin-top: 9px !important;
}

.social-login-button {
    text-align: center;
    font-size: 23px;
    color: rgb(0, 0, 0);
    margin-bottom: 2px;
    margin-right: unset !important;
}


:root[dir="ltr"] .card-dropdown {
    position: fixed !important;
    right: 0px !important;
    height: 100vh !important;
    top: 0px !important;
    animation: LtrCart 0.2s ease-in;
    overflow: hidden;

}

@keyframes LtrCart {
    0% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0);

    }
}

:root[dir="ltr"] .card-dropdown .cart-body {
    animation: LtrCartBody 0.5s ease-in;
}

@keyframes LtrCartBody {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);

    }
}

:root[dir="rtl"] .card-dropdown {
    position: fixed !important;
    left: 0px !important;
    height: 100vh !important;
    top: 0px !important;
    animation: RtlCart 0.2s ease-in;
    overflow: hidden;

}

@keyframes RtlCart {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);

    }
}

:root[dir="rtl"] .card-dropdown .cart-body {
    animation: RtlCartBody 0.3s ease-in;
}

@keyframes RtlCartBody {
    0% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0);

    }
}

:root[dir="rtl"] .total-in-button {
    border-right: 0.5px solid;
    padding: 4px 8px;
}

:root[dir="ltr"] .total-in-button {
    border-left: 0.5px solid;
    padding: 4px 8px;
}

.cart-body {
    height: 66%;
    overflow-y: auto;
}

@media screen and (max-width: 1024px) {
    .nav-padding-on-mobile {
        padding: 15px 0px;
    }
}

@media screen and (min-width: 1024px) {
    .nav-padding-on-mobile {
        padding: 0px 40px;
    }
}

/* end of #0002 */
/* start of #0003 */
.subscription-container {
    background-color: rgb(255, 255, 255);
    padding: 4rem 1rem;
}

.subscription-title {
    color: var(--primary);
}

.subscription-text {
    color: var(--hov-primary);
}

.subscription-container .texts {
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: column;
}

.subscription-container .actions {
    display: flex;
    justify-content: end;
    align-items: start;
}

.actions input {
    width: 51% !important;
    height: 55px;
}

.actions button {
    width: 25% !important;
    height: 55px;
}

@media (max-width: 767px) {
    .subscription-container .texts {
        display: flex;
        justify-content: end;
        align-items: center;
        flex-direction: column;
    }



    .actions input {
        width: 100% !important;
        height: 45px;
    }

    .actions button {
        margin-top: 5px;
        width: 50% !important;
        height: 45px;
    }
}

/* end of #0003 */
/* start of #0004 */


.banners-slider .item {
    background-repeat: no-repeat;
    height: 350px;
    display: inline-block;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.categories-for-desktop {
    display: block;
}

.categories-for-mobile {
    display: none;
}

@media (max-width: 767px) {
    .banners-slider .item {
        background-repeat: no-repeat;
        height: 120px;
        display: inline-block;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .categories-for-desktop {
        display: none;
    }

    .categories-for-mobile {
        display: block;
    }
}


.top-categories-owl-carousel .owl-nav {
    position: absolute;
    top: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 50%;
    transform: translateX(50%);
}

.top-categories-owl-carousel .owl-nav button {
    width: 34px;
    height: 34px;
    border-radius: 50% !important;
    background-color: white !important;
    border: solid 0.1px #b4a9a952 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-size: 25px !important;
    color: black !important;

}

.top-categories-owl-carousel .owl-nav .owl-next {
    position: absolute;

    right: 140px;
    top: 20%;
}

.top-categories-owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 140px;
    top: 20%;
}

.home_banner_categories_flashdeal {
    display: grid;
    grid-template-columns: 21% 56% 21%;
    gap: 20px;

}

.home_banner_categories_flashdeal .home-top-categories {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
}

.home_banner_categories_flashdeal .home-top-categories .single-category {
    height: 80px;
    background-color: rgb(248 246 246 / 95%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.home_banner_categories_flashdeal .home-top-categories .single-category:hover {
    background-color: rgb(240, 240, 240);
}

.home_banner_categories_flashdeal .home-top-categories .single-category img {
    border-radius: 50%;
    height: 48px;
    width: 48px;

}

.home_banner_categories_flashdeal .home-top-categories .single-category .category-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: rgb(233 236 239);
    padding: 4px !important;

}

.home_banner_categories_flashdeal .home-top-banner .top-banner {
    display: grid;
    grid-template-rows: 100%;
    gap: 20px;
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .home_banner_categories_flashdeal .home-top-banner .top-banner {
        display: grid;
        grid-template-rows: 100%;
        gap: 20px;
        height: 146px;
        background-position: center;
        background-size: 100% !important;
        background-repeat: no-repeat;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .home_banner_categories_flashdeal .home-top-banner .bottom-banners .banner {
        height: 147px !important;
        background-position: center;
        background-size: 100% !important;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    .home_banner_categories_flashdeal .home-top-banner .bottom-banners {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px;
    }

    .shop-select-filters{
        flex-direction: column !important;
        width: 100% !important;
    }
    .shop-select-filters-input{
        width: 100% !important;
    }
}

.home_banner_categories_flashdeal .home-top-banner {
    overflow: hidden;
}

.home_banner_categories_flashdeal .home-top-banner .bottom-banners {
    display: grid;
    grid-template-columns: 49% 48%;
    gap: 20px;
}

.home_banner_categories_flashdeal .home-top-banner .bottom-banners .banner {
    overflow: hidden;
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home_banner_categories_flashdeal .home-top-flashdeal {
    height: 620px;
    border: solid 0.1px rgba(201, 200, 200, 0.537);
}

@media (max-width: 767px) {
    .home_banner_categories_flashdeal {
        grid-template-columns: 100%;
    }

    .home_banner_categories_flashdeal .home-top-categories {
        order: 2;
    }

    .home_banner_categories_flashdeal .home-top-banner {
        order: 1;
    }

    .home_banner_categories_flashdeal .home-top-flashdeal {
        order: 3;
    }

    .home_banner_categories_flashdeal .home-top-banner .bottom-banners {
        grid-template-columns: 100%;
    }
}

.top-flashdeals-owl-carousel {
    position: relative;
    height: 94%;
}

.top-flashdeals-owl-carousel .owl-item,
.top-flashdeals-owl-carousel .owl-stage,
.top-flashdeals-owl-carousel .owl-stage-outer {
    height: 100%;
}

.top-flashdeals-owl-carousel .item {
    height: 100%;
}

.img-scale {
    transition: all 0.5s;
}

.img-scale:hover {

    transform: scale(1.05);
}

.card-transform {
    transition: all 0.5s;
}

.card-transform:hover {

    transform: translateY(-5px)
}

.top-flashdeals-owl-carousel .owl-nav {
    position: absolute;
    top: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 50%;
    transform: translateX(50%);
}

.top-flashdeals-owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: white !important;
    border: solid 0.1px #b4a9a952 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-size: 25px !important;
    color: black !important;

}

.top-flashdeals-owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 82px;
    top: 50%;
}

.top-flashdeals-owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 82px;
    top: 50%;
}

.top-flashdeals-owl-carousel .owl-nav button:hover {
    background-color: rgb(31, 31, 31) !important;
    color: white !important;
}

.sold-number {
    background-color: rgba(241, 241, 241, 0.658);
    position: relative;
    height: 20px;
    display: inline-block;
    width: 100%;
    border-radius: var(--border-raduis);
    overflow: hidden;
}

.sold-number .sold-number-width {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    z-index: 2;
    background-color: rgb(31, 31, 31);
}

.banners-slider .owl-item {
    display: block;
    width: 50vw;
}

.banners-slider .item {
    background-color: #fff;
    padding: 18px;
    margin: -15px;
    border-radius: 5px;
    width: 65vw;
    /* height: 250px; */
}

.banners-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.banners-slider .item {
    position: relative;
    background-color: #fff;
    padding: 10px;
    margin: 10px;
    border-radius:  var(--border-raduis);
}


@media (max-width: 768px) {
    .banners-slider {
        flex-direction: column;
    }

    .banners-slider .item {
        margin: 5px !important;
        padding: 0px !important;
        width: 80vw;
    }

    .banners-slider .owl-carousel .owl-item img {
        height: 129px;
    }
}

/* Shimmer effect */
.banners-slider .item {
    overflow: hidden;
    position: relative;
}

.banners-slider .item:hover::before {
    animation: shimmer 1.5s ease-in-out;
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-60deg, #0000 20%, rgba(255, 255, 255, 0.725), #908f8f00 75%) right/200% 100%;
    transform: rotate(-60deg);
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.banners-slider .owl-nav {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 50%;
    transform: translateX(50%);
}

.banners-slider .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: white !important;
    border: solid 0.1px #b4a9a952 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-size: 25px !important;
    color: black !important;
}

.banners-slider .owl-nav .owl-next {
    left: 31vw;
    position: absolute;
}

.banners-slider .owl-nav .owl-prev {
    right: 31vw;
    position: absolute;
}


.categories-owl-carousel {
    margin-bottom: 25px;
}

.categories-owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.categories-owl-carousel .item .cat-img {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .categories-owl-carousel .item .cat-img {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }
}


.categories-owl-carousel .owl-nav {
    position: absolute;
    top: 32%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 50%;
    transform: translateX(50%);
}

.categories-owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: white !important;
    border: solid 0.1px #b4a9a952 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-size: 25px !important;
    color: black !important;
}

.categories-owl-carousel .owl-nav .owl-next {
    left: 43vw;
    position: absolute;
}

.categories-owl-carousel .owl-nav .owl-prev {
    right: 43vw;
    position: absolute;
}

.categories-owl-carousel .cat-item-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dedede9f;
    opacity: 0;
}

.on-selling-products-owl-carousel {
    position: relative;
    margin-top: 50px;
}

.on-selling-products-owl-carousel .owl-nav {
    position: absolute;
    top: -45px;
}

:root[dir="rtl"] .on-selling-products-owl-carousel .owl-nav {
    left: 0px;
}

:root[dir="ltr"] .on-selling-products-owl-carousel .owl-nav {
    right: 0px;
}

.on-selling-products-owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: white !important;
    border: solid 0.1px #b4a9a952 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-size: 25px !important;
    color: black !important;
}

.categories-owl-carousel .item:hover .cat-item-hover {
    transition: all 0.5s;
    opacity: 1;
}

.on-selling-products-owl-carousel .owl-stage {
    padding-top: 25px;
}

.row-card {
    border: 0.1px solid rgb(227 218 218 / 34%);
    margin-bottom: 20px;
    transition: all 0.5s;
}

.row-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.row-card .card-data {
    width: calc(100% - 176px) !important;
}

.banner-1-home {
    margin-top: 25px;
    margin-bottom: 25px;
}

.container {
    overflow: hidden !important;
}

.featured-products-section {
    margin-top: 25px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 22% 53% 22%;
    gap: 20px;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .featured-products-section {
        grid-template-columns: 100%;
        overflow: hidden !important;
    }

    .featured-products-section .first-two {
        order: 2;
    }

    .featured-products-section .main {
        height: 393px !important;
        order: 1;
    }

    .featured-products-section .main img {
        height: 326px !important;
    }

    .featured-products-section .second-two {
        order: 3;
    }

    .featured-products-section .first-two,
    .featured-products-section .second-two {
        grid-template-columns: 48% 50%;
    }

    .featured-products-section .first-two .data,
    .featured-products-section .second-two .data {
        padding: 0px;
        justify-content: space-around !important;
        flex-direction: column;
    }

    .featured-products-section .first-two .data div,
    .featured-products-section .second-two .data div {
        flex-direction: column;
        padding: 0px;
    }

    .featured-products-section .first-two .data div:nth-child(2),
    .featured-products-section .second-two .data div:nth-child(2) {
        flex-direction: row !important;
    }

    .featured-products-section .first-two .data .name,
    .featured-products-section .first-two .data .desc,
    .featured-products-section .second-two .data .name,
    .featured-products-section .second-two .data .desc {
        font-size: unset !important;
        line-height: unset !important;
        text-transform: capitalize;
        margin-bottom: 0px;
        white-space: nowrap;
    }

}

.featured-products-section .first-two .data,
.featured-products-section .second-two .data {
    padding: 20px;
}

.featured-products-section .main {
    height: 610px;
    overflow: hidden;
}

.featured-products-section .main .product {
    background-color: #f8f8f8;
    height: 100%;
    display: inline-block;
    width: 100%;
}

.featured-products-section .main .product .image {
    overflow: hidden;
    height: 85%;
}

.featured-products-section .main .product .image {
    overflow: hidden;
    height: 85%;
}

.featured-products-section .main .product .data {
    height: 11%;
}

.featured-products-section .first-two,
.featured-products-section .second-two {
    display: grid;
    grid-template-rows: 50% 50%;
    gap: 20px;
}

.featured-products-section .first-two .product,
.featured-products-section .second-two .product {
    height: 288px;
    background-color: #f8f8f8;
}

.featured-products-section .first-two .product .image {
    overflow: hidden;
    height: 70%;
}

.featured-products-section .first-two .product .data {
    height: 30%;
}

.featured-products-section .second-two .product .image {
    overflow: hidden;
    height: 70%;
}

.featured-products-section .second-two .product .data {
    height: 30%;
}

.featured-products-section .product .data {
    height: 30%;
}

.featured-products-section .product .data .name,
.featured-products-section .product .data.price {
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: capitalize;
    white-space: nowrap;
}

.featured-products-section .product .data .desc,
.featured-products-section .product .data .old-price {
    font-size: .875rem;
    text-transform: capitalize;
}

.brands-owl-carousel {
    margin-top: 30px;
    margin-bottom: 25px;
}

.brands-owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-owl-carousel .item .cat-img {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .brands-owl-carousel .item .cat-img {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
    }
}


.brands-owl-carousel .owl-nav {
    position: absolute;
    top: 32%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 50%;
    transform: translateX(50%);
}

.brands-owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: white !important;
    border: solid 0.1px #b4a9a952 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    font-size: 25px !important;
    color: black !important;
}

.brands-owl-carousel .owl-nav .owl-next {

    right: 43vw;
    position: absolute;
}

.brands-owl-carousel .owl-nav .owl-prev {
    left: 43vw;
    position: absolute;
}

.brands-owl-carousel .cat-item-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dedede9f;
    opacity: 0;
}

.brands-owl-carousel .item:hover .cat-item-hover {
    transition: all 0.5s;
    opacity: 1;
}

/* end of #0004 */

/* start of #0005 */
.plus-show,
.minus-show {
    display: none;
    opacity: 0;
    /* Start with opacity 0 for the fade-in effect */
    transition: opacity 1s ease;
}

.status-active {
    display: block !important;
    opacity: 1;
    /* Set opacity to 1 to make it visible with fade-in effect */
    animation: fadeIn 1s ease;
    /* Add a fadeIn animation */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.collapse-button:hover {
    text-decoration: unset !important;
}

.collapse-button:active {
    text-decoration: unset !important;
}

.quantity-and-place-buttons button {
    height: 48px;
    width: 200px;
}

.quantity-and-place-buttons {
    /* margin: 30px 0px; */
    /* padding: 20px 0px; */
    position: relative;
}

.quantity-and-place-buttons::after {
    content: "";
    position: absolute;
    top: -10px;
    right: 0px;
    height: 1px;
    width: 100%;
    background-color: rgba(215, 214, 214, 0.479);
}

.quantity-and-place-buttons::before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0px;
    height: 1px;
    width: 100%;
    background-color: rgba(215, 214, 214, 0.479);
}

.btn-qty{
    transition: 0.3s all !important ;
}
.btn-qty:hover {
    background-color: rgb(22, 22, 22);
    color: white;

}
.btn-qty:hover svg path{
    fill: white !important;
    stroke: white !important;
}

.price-discounted-clubpoint {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .price-discounted-clubpoint {
        display: flex;
        align-items: start;
        justify-content: space-between;
        flex-direction: column;
    }

}


/* end of #0005 */
/* start of #0006 */
.checkout-header {
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    height: 300px;
}

@media (max-width: 767px) {
    .checkout-header {
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        position: relative;
        height: unset !important;
    }
}

.checkout-header .overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #2a2a2a99;
    z-index: 1;
}

.button-to-link {
    background-color: unset !important;
    border: unset !important;
}

.add-address-collapse-button {
    border: solid #e1dbdb 0.1px;
    background-color: #ede9e947;
    padding: 17px;
    color: var(--main-color);
    font-weight: bold;
}

.checkout-input {
    background-color: white;
    border: var(--main-border);
    height: 53px;
    /* margin-bottom: 20px; */
    border: solid #cecece6e 0.1px;
    width: 100% !important;
    padding-inline-start: 12px;
}

.checkout-main {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 65% 33%;
    grid-gap: 20px;
}

@media (max-width: 768px) {
    .checkout-main {
        display: inline-block;
        width: 100% !important;
    }
}

#apply-step {
    display: none;
}

.preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader img {
    width: 150px;
}

.member-login {
    font-size: 32px;
    line-height: 41px;
    font-weight: bold;
}

.hr {
    background-color: rgba(229, 229, 229, 0.616);
    width: 100%;
    height: 0.5px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.order-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0.1px rgba(186, 186, 186, 0.57) solid;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .order-summary {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
    }
}

/* end of #0006 */
/* start of #0007 */
.search-top-ad {
    height: 60px;
    background-color: #e5e2e247;
}

.hide-top-ad {
    display: none !important;
}

.custom-form-control {
    border: solid 0.5px rgb(255 255 255) !important;
}

.product-gallery {
    height: 100%;
}

.product-gallery .slick-list,
.product-gallery .slick-track,
.product-gallery .slick-slide,
.product-gallery .slick-slide>div {
    height: 100% !important;
}

.close-modal {
    position: absolute;
    background-color: #000000 !important;
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
    opacity: 1 !important;
    /* padding: 9px !important; */
    /* margin: 0px; */
    z-index: 10;
}

/* end of #0007 */
.zoomImg {
    background-color: white;
}

.card-img-height {
    height: auto !important;
}

.quantity-card-md {
    display: flex;
    justify-content: start;
    align-items: center;
}

@media (max-width: 767px) {

    .card-img-height {
        height: auto !important;
    }

    .card-img-height {
        max-height: unset !important;
    }

    .cart-option-choice-form {
        /* text-align: center; */
    }

    .quantity-card-md {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-price {
        /*justify-content: center;*/
    }
}

.card-add-to-cart-button {
    transform: translateY(calc(100% + 5px));
}

.aiz-card-box:hover .card-add-to-cart-button {
    transform: translateY(-5px);

    animation: buttonToTop 1s;
}

@keyframes buttonToTop {
    0% {
        transform: translateY(calc(100% + 5px));
    }

    100% {
        transform: translateY(-5px);

    }
}

.card-actions-button {
    transform: translateX(calc(-150%));
    top: 0px;
}

.aiz-card-box:hover .card-actions-button {
    transform: translateX(5px);
    animation: buttonToinside 1s;
}

@keyframes buttonToinside {
    0% {
        transform: translateX(calc(-150%));
    }

    100% {
        transform: translateY(5px);

    }
}

.addToCartHolder,
.buyNowHolder {
    display: none;
}

.add-to-cart-fixed-bottom {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10 !important;
    padding: 10px !important;
    margin: 0 !important;
    border-radius: 0px !important;
}

.news-ticker {

    overflow: hidden;
    white-space: nowrap;
    height: 30px;
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 25px;
}

.ticker-content {
    display: inline-block;
    animation: ticker-animation 15s linear infinite;
    animation-play-state: running;
    font-size: 16px;
    font-family: 'WebFont', sans-serif !important;
    width: 100%;
}

@keyframes ticker-animation {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}


/* Style for the outer dropdown container */
.dropdown-menu.z-1045 .sidebar-cart {
    max-height: 85% !important;
    /* Set a fixed maximum height */
    overflow-y: auto;
    /* Enable vertical scrollbar when content overflows */
}

/* Style for the cart-body */
.cart-body {
    padding: 0 16px;
    /* Add padding to the cart-body */
}

/* Style for the cart items list */
.cart-body ul {
    min-height: 100%;
    
    /* Set a fixed maximum height for the list */
    overflow-y: auto;
    /* Enable vertical scrollbar when content overflows */
}

/* Style for the last div with the two buttons */
.w-100.p-4 {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    /* Add background color if needed */
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow at the bottom */
    z-index: 1046;
    /* Set a z-index higher than the dropdown container */
}

.w-100.p-4 a.btn {
    margin-bottom: 12px;
}

.large-container {
    border-radius:  var(--border-raduis);
    display: flex;
    gap: 10px;
    width: 300px;
    margin: 20px 0;
    padding: 10px;
    justify-content: space-around;
    background-color: #000;
}

.small-square {
    border-radius:  var(--border-raduis);

    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    font-weight: 500;
}

.small-square div {
    margin-top: 5px;
}

.hot-label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.7rem;
    line-height: 1;
    padding: 3px 5px;
    background: red;
    color: white;
    border-radius:  var(--border-raduis);
    display: inline-block;
    position: relative;
}
.bottom-sidecart-slider{
    
border: 2px solid #003049;
border-radius: 4px;
padding: 6px;

}
.hot-label:before {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 4px 6px 4px 0;
    border-color: transparent red transparent transparent;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
}

:root[dir="ltr"] .today-deal-link {
    border-left: 1px solid rgb(212, 210, 210);
}

:root[dir="rtl"] .today-deal-link {
    border-right: 1px solid rgb(212, 210, 210);
}

.menu-bar {
    border-top: 0.1px solid #edecec;
}

:root[dir="ltr"] #category-menu-bar {
    border-right: solid 0.1px #edecec;
}

:root[dir="rtl"] #category-menu-bar {
    border-left: solid 0.1px #edecec;
}

.header-search-input {
    border: unset !important;
}

.header-search-select-category {
    border: unset !important;
    min-width: 30% !important;
}
.header-search-select-category button {
    border: unset !important;
    padding: 11px;
}
.header-search-select-category button::after {
     content: '\25BC' !important;
}

.header-search-button {
    background-color: var(--primary) !important;
    color: white !important;
    border: unset !important;
    min-width: 15% !important;
}

.header-search-container {
    border: solid 2px var(--primary);
    border-radius:  var(--border-raduis);
    overflow: visible;
}

.vertical-seperator {
    width: 2px;
    background-color: #edecec;
}

.subscription-section {
    background-image: url('../img/icons/subscripe.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.add-to-cart-btn {
    background-color: white;
    color: #000;
    border: solid 1px var(--primary);
    font-size: 14px;
    font-weight: bold;
}

.add-to-cart-btn:hover {
    background-color: var(--primary);
    color: white;
}

.box-1 .aiz-card-box {
    padding: 10px;
    border: solid transparent;
}

@media (min-width: 768px) {
    .box-1 .aiz-card-box:hover { 
        border: solid 0.1px var(--primary);
        box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
        border-radius:  var(--border-raduis);
    }
    .card-transform:hover {
        z-index: 3;
    }
}

.box-1 .aiz-card-box .aiz-card-box-short-desc {
    display: none;
}

.box-1 .aiz-card-box:hover .aiz-card-box-short-desc {
    display: block;
}

.card-transition {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.category-box-item img {
    width: 70%;
}
.category-box-item:hover img {
    width: calc( 50% + 15px ) !important;
    transition: all 1s;
}
.category-box-item2 {
    margin: 0px 5px;
    background-color: white;
    padding: 16px;
    border-radius:  var(--border-raduis);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.category-box-item2:hover {
    border: 0.1px solid var(--primary);
}

.custom-rounded {
    border-radius:  var(--border-raduis) !important;
}

.category-box-item2 img {
    width: 50px !important;
}

.brand-box-item {
    padding: 16px;
    border-radius: var(--border-raduis);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.brand-box-item:hover img {
    opacity: 1;
}

.brand-box-item img {
    opacity: 0.5;
    width: 50% !important;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.flash-deal-section {
    padding-top: 25px;
    /*padding-bottom: 25px;*/
    background-color: white !important;
}

.flash-deal-item .flash-deal-label {
    text-transform: uppercase;
    font-size: 1.06rem;
    line-height: 1;
    margin-bottom: 0;
    color: var(--primary);
}

.flash-deal-item .flash-deal-title {
    font-weight: bold !important;
}

.flash-deal-item .data-wrapper {
    border: solid;
    border-radius:  var(--border-raduis);
}

.product-badge {
    min-width: 55px;
    min-height: 0;
    padding: 4px 8px;
    display: inline-block;
    vertical-align: top;
    position: static;
    font-size: 13px;
    line-height: 1 !important;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    border-radius:  var(--border-raduis);
    height: 20px;
}

.bg-blue {
    background-color: blue;
}

.best-categories .nav-tabs {
    border-bottom: unset;
    flex-wrap: nowrap !important;
}

.best-categories .nav-tabs .nav-item {
    color: black !important;
    text-wrap: nowrap;
    font-size: 12px;
}

/* Default style for labels */
.custom-aiz-megabox {
    font-weight: normal;
    transition: font-weight 0.3s ease; /* Smooth transition */
}

/* Make the label bold when the associated radio button is checked */
input[type="radio"]:checked + span {
    font-weight: bold !important;
}

/* Optional: Style for the checked radio button's parent */
input[type="radio"]:checked + span {
    font-weight: bold !important;
}

.best-categories .nav-tabs .nav-item.active {
    color: var(--primary) !important;
    background-color: unset !important;
    border: 1px solid var(--primary) !important;
}

.product-details-slugs {
    width: 100%;
    border-radius: var(--border-raduis);
    color: #0068c8;
    background: #e8f3fe;
    /* margin-bottom: 40px; */
    padding: 15px 0px;
}

.product-details-tabs .nav-tabs {
    border-bottom: unset;
}

.product-details-tabs .nav-tabs .nav-item {
    padding: 20px;
    background-color: white;
    border-radius: var(--border-raduis);
    color: rgb(0, 0, 0);
}

.product-details-tabs .nav-tabs .nav-item.active {
    padding: 20px;
    border-radius: var(--border-raduis);
    color: var(--primary) !important;
    background-color: var(--primary) !important;
    color: white !important;
}

.product-details-reviews {
    background-color: white;
    padding: 35px 0px;
    border: solid 0.1px gra;
}

.aiz-carousel.related-products .slick-list {
    overflow: visible !important;
}

.product-gallery-container {
    border: solid 0.1px rgba(235, 235, 235, 1);
    border-radius: var(--border-raduis);
}

.box-1-name {
    font-size: 0.9rem;
}

.tab-content>.active.custom-active {
    display: flex !important;
    justify-content: center;
}

.grid-list-view img {
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.5s;
}

.grid-list-view img:hover {
    opacity: 1;
}

.payment_method_desc {
    padding: 21px;
    /* margin: 10px 0 0; */
    font-size: 100%;
    line-height: 24px;
    border-radius: var(--border-raduis);
    color: inherit;
    background: rgba(101, 101, 101, 0.1);
    position: relative;
}
:root[dir="rtl"] .payment_method_desc::before {
    right: 10%;

}
:root[dir="ltr"] .payment_method_desc::before {
    left: 10%;

}
.payment_method_desc::before {
    content: "";
    display: block;
    border: 10px solid rgba(101, 101, 101, 0.1);
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -10px;
    margin: -10px 0 0 25px;
}
.cart-summary-box{
    border: solid 2px var(--primary);
    border-radius: var(--border-raduis);
}
.checkout-input~button{
    height: 53px;
}

#coupon_accordion .card-header ,#collapseCoupon{
    background-color: #e8f3fe;
}
 ::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #F1F1F1; 
    border-radius: var(--border-raduis); 
}
 
::-webkit-scrollbar-thumb {
    background: black; 
    border-radius: var(--border-raduis); 
}
 
::-webkit-scrollbar-thumb:hover {
    background: rgb(169, 11, 11)414; 
}
.aiz-notify-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.aiz-notify-image {
    /* margin-right: 10px; */
}

.aiz-notify-image img {
    max-width: 65px;
    height: auto;
    border-radius: var(--border-raduis);
}

.aiz-notify-text {
    display: flex;
    flex-direction: column;
}

.aiz-notify-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
}

.aiz-notify-text span {
    font-size: 13px;
}
#header-menu-bar {
    animation: slideDown 0.5s forwards ease-in-out;
}

@keyframes slideDown {
    0% {

        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.nav-cart-box {
   cursor: pointer;
}

.custom-aiz-carousel .slick-active .custom-aiz-carousel-box .text {
    animation: fadeInDown 1.5s ease-in-out forwards;
}

.custom-aiz-carousel .slick-active .custom-aiz-carousel-box .image {
     animation: fadeInUp 1.5s ease-in-out forwards;
}
.custom-aiz-carousel .slick-active .custom-aiz-carousel-box .image img {
    width: 72%;
 }
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-200%);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(200%);
    }

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

.custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .badge {
    background-color: red;
    color: white;
    padding: 11px 17px;
    font-weight: bold;
    border-radius: var(--border-raduis);
    width: fit-content;
}

.custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .title {
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-wrap: wrap;
}

.custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .desc {
    font-size: 30px;
    text-wrap: wrap;
}

.custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .price {
    font-size: 22px;
    text-wrap: wrap;
}

.custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .price span {
    font-size: 40px;
    color: yellow;
}

@media (max-width: 767px) {
    .custom-aiz-carousel .slick-active .custom-aiz-carousel-box .image img {
        width: 90% !important; 
    }
    .custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .title {
        font-size: 30px;
    }
    .custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .desc {
        font-size: 20px;
    }
    .custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .price {
        font-size: 20px;
    }
    .custom-aiz-carousel .slick-slide .custom-aiz-carousel-box .text .price span {
        font-size: 30px;
    }
    .categories-section-container{
        order: 2 !important;
        min-height: unset !important;
    }
    .slider-section-container{
        order: 1 !important;
    }
    .products-container-row{
        display: grid;
        position: relative;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 20px;
    }
    .slider-slide-box-row{
        display: grid;
        position: relative;
        grid-template-rows: repeat(1, minmax(0, 1fr));
        gap: 10px 10px;
        grid-template-columns: unset !important;
    }
    .store-products-container-row{
        display: grid;
        position: relative;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 20px;
    }
}

.categories-section-container{
    order: 1;
    min-height: 200px;
}
.slider-section-container{
    order: 2;
}   
.products-container-row{
    display: grid;
    position: relative;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px 20px;
}
.store-products-container-row{
     display: grid;
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 20px;
}
.slider-slide-box-row{
    display: grid;
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 10px;
}


.custom-aiz-megabox .aiz-megabox input{
    opacity: unset !important;
    z-index: unset !important;
}