* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

body {
    overflow-x: hidden;
    background-color: #E3E6E6;
    position: relative;
    height: 100%;
}

.whatsapp_icon a img {
    width: 51px;
    position: fixed;
    bottom: 25px;
    display: block;
    right: 17px;
    z-index: 9999;
}

/* Backdrop Start */
.backdrop {
    transition: all 300ms ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.backdrop.active {
    visibility: visible;
    opacity: 1;
}

/* Backdrop End */

.webHeader {
    width: 100%;
    /* height: 70px; */
    background-color: #131921;
    position: relative;
    z-index: 1000;
    transition: all 300ms ease-in-out;
}

.webHeader.active {
    transition: all 300ms ease-in-out;
    position: sticky;
    top: -1px;
}

.webHeader .webNav {
    /* position: fixed; */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
    padding: 0px 20px;
    /* height: 70px; */
}

.webHeader .webNav .logo {
    grid-column: span 2 / span 2;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webHeader .webNav .logo img {
    width: 60%;
    height: 100%;
    object-fit: contain;
}

.webHeader .webNav .searchContainer {
    grid-column: span 7 / span 7;
    grid-column-start: 3;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 100%;
}

.webHeader .webNav .searchContainer .searchBox {
    height: 40px;
    width: 100%;
    /* background-color: #ffffff; */
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* overflow: hidden; */
}

.webHeader .webNav .searchContainer .searchBox.active {
    outline: 4px solid #ff9900;
}

.webHeader .webNav .searchContainer .searchBox select {
    height: 40px;
    height: 100%;
    padding-left: 8px;
    border: none;
    outline: none;
    border-right: 1px solid gray;
}

/* Dropdown container styling */
.webHeader .webNav .searchContainer .searchBox .custom-select {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Selected option styling */
.webHeader .webNav .searchContainer .searchBox .selected-option {
    background: #f4f4f4;
    padding: 0px 10px;
    height: 40px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    border-radius: 6px 0 0 6px;
    font-size: 12px;
    color: #696969;
}

/* Icon styling */
.webHeader .webNav .searchContainer .searchBox .selected-option ion-icon {
    font-size: 11px;
    color: #757575;
}

/* Dropdown options container */
.webHeader .webNav .searchContainer .searchBox .options {
    display: none;
    /* Hidden by default */
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 1000;
    white-space: nowrap;
}

/* Individual options styling */
.webHeader .webNav .searchContainer .searchBox .options div {
    padding: 5px 10px;
    cursor: pointer;
}

/* Highlight option on hover */
.webHeader .webNav .searchContainer .searchBox .options div:hover {
    background: #f0f0f0;
}

.webHeader .webNav .searchContainer .searchBox .search-bar-container {
    width: 100% !important;
    position: relative;
}

.webHeader .webNav .searchContainer .searchBox input {
    height: 40px;
    width: 100%;
    border-radius: none;
    border: none;
    outline: none;
    padding: 0 10px;
}


.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar {
    position: absolute;
    background-color: white;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 4px;
    box-shadow: 0px 10px 10px #00000017;
}
.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar ul li {
    width: 100%;
    list-style-type: none;
    border-bottom: 1px solid #d6d6d6;
    cursor: pointer;
    padding: 12px;
}  
.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar ul li a {
    display: flex;
    gap: 8px;
    text-decoration: none;
    color: #2f2f2f;
    display: flex;
}

.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar ul li a ion-icon {
    min-width: 18px;
}

.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar ul li:hover {
    background-color: #eeeeee;
}

.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar ul li:last-child {
    border-bottom: none;
}

.webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar ul li span {
    font-size: 14px;
}

.webHeader .webNav .searchContainer .searchBox button {
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    border: none;
    outline: none;
    background-color: #F3A847;
    font-size: 24px;
    color: #434343;
    border-radius: 0px 6px 6px 0;
}

.webHeader .webNav .accountSetting {
    grid-column: span 2 / span 2;
    grid-column-start: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.webHeader .webNav .accountSetting .accountSettingBox {
    color: #ffffff;
    white-space: nowrap;
}

.webHeader .webNav .accountSetting .accountSettingBox small {
    font-size: 12px;
}

.webHeader .webNav .accountSetting .accountSettingBox div strong {
    font-size: 15px;
}

.webHeader .webNav .accountSetting .accountSettingBox div ion-icon {
    font-size: 10px;
    margin-left: 5px;
}

.webHeader .webNav .accountSetting .profileSettingPopUp {
    position: absolute;
    top: 90%;
    width: 300px;
    /* height: 320px; */
    background-color: white;
    visibility: hidden;
    opacity: 0;
    border-radius: 4px;
    padding: 12px;
    z-index: 1006;
    transition: all 300ms ease-in-out;
}

.webHeader .webNav .accountSetting .profileSettingPopUp.active {
    transition: all 300ms ease-in-out;
    visibility: visible;
    opacity: 1;
}

.webHeader .webNav .accountSetting .profileSettingPopUp .topProfileDetail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 6px;
    /* padding-bottom: 10px; */
    /* border-bottom: 1.5px solid #d6d6d6; */
}

.webHeader .webNav .accountSetting .profileSettingPopUp .topProfileDetail .signInBtn {
    text-decoration: none;
    font-size: 14px;
    align-items: center;
    padding: 6px 60px;
    color: #ddd;
    box-shadow: 0 0.5rem 1rem rgba(143, 142, 142, 0.15) !important;
    background: #000000;
    border-radius: 6px;
}

.webHeader .webNav .accountSetting .profileSettingPopUp .topProfileDetail small {
    font-size: 12px;
    color: #757575;
}

.webHeader .webNav .accountSetting .profileSettingPopUp .bottomProfileDetail {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 6px;
    /* margin-top: 10px; */
    height: 237px;
}

.webHeader .webNav .accountSetting .profileSettingPopUp .bottomProfileDetail .item {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 10px;
    border-radius: 6px;
    gap: 10px;
    transition: all 300ms ease-in-out;
    text-decoration: none;
    color: black
}

.webHeader .webNav .accountSetting .profileSettingPopUp .bottomProfileDetail .item:hover {
    background: #eeeeee;
    transition: all 300ms ease-in-out;
}

.webHeader .webNav .accountSetting .profileSettingPopUp .bottomProfileDetail .item .icon ion-icon {
    font-size: 20px;
    display: flex;
}


.webHeader .webNav .addToCard {
    grid-column-start: 12;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.webHeader .webNav .addToCard .cartSettingPopUp {
    position: absolute;
    top: 90%;
    right: 30px;
    width: 300px;
    background-color: white;
    visibility: hidden;
    opacity: 0;
    border-radius: 4px;
    padding: 12px;
    z-index: 1000;
    transition: all 300ms ease-in-out;
}

.webHeader .webNav .addToCard .cartSettingPopUp.active {
    transition: all 300ms ease-in-out;
    visibility: visible;
    opacity: 1;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 11px;

}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .cartItem {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .subTotal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item .leftSide {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item .rightSide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item .rightSide .deleteButton ion-icon {
    color: #cf0505;
    display: flex;
    font-size: 22px;
}



.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item .text .headline {
    color: #595959;

}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item .image {
    width: 50px;
    height: 50px;
    border: 2px solid #ff9900;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent.empty {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    border: 4px dashed #ff9900;
    border-radius: 10px;
}

.webHeader .webNav .addToCard .cartSettingPopUp .cartContent .icon ion-icon {
    font-size: 60px;
    display: flex;
}


.webHeader .webNav .addToCard .addToCardBox {
    position: relative;
    color: white
}

.webHeader .webNav .addToCard .addToCardBox .icon ion-icon {
    font-size: 34px;
    display: flex;
}

.webHeader .webNav .addToCard .addToCardBox .itemCounter {
    position: absolute;
    top: 3px;
    right: -18px;
    width: 20px;
    height: 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50%;
    background-color: #ff9900;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 500px) {
    .webHeader .webNav .addToCard .addToCardBox .icon ion-icon {
        font-size: 24px;
        display: flex;
    }

    .webHeader .webNav .addToCard .addToCardBox .itemCounter {
        top: -6px;
        right: -10px;
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .webHeader .webNav .addToCard .addToCardBox small {
        display: none;
    }

    .webHeader .webNav .logo {
        width: 100% !important;
    }

    .webHeader .webNav .logo img {
        width: 90% !important;
    }

    .webHeader .webNav {
        gap: 0px !important
    }
}


/* SubMenu */
.subHeader {
    width: 100%;
    background-color: #232F3E;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 10px;
    z-index: 999;
}

.subHeader .subHeaderBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.subHeader .subHeaderBox .item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.subHeader .subHeaderBox .item .icon {
    color: #ffffff;
}

.subHeader .subHeaderBox .item .icon ion-icon {
    font-size: 24px;
    display: flex;
}

.subHeader .subHeaderBox .item .text.all {
    font-weight: 600;
}

.subHeader .subHeaderBox .item .text {
    color: #ffffff;
    font-size: 14px;
}

.subHeader .subHeaderPopUp {
    position: fixed;
    left: -360px;
    top: 0;
    width: 360px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1003;
    transition: all 300ms ease-in-out;
}

.subHeader .subHeaderPopUp.active {
    left: 0px;
    transition: all 300ms ease-in-out;
}

.subHeader .subHeaderPopUp .topDetail {
    display: flex;
    flex-direction: row;
    padding: 12px 20px;
    background-color: #232F3E;
    gap: 10px;
}

.subHeader .subHeaderPopUp .topDetail .icon ion-icon {
    color: white;
    font-size: 30px;
    display: flex;
}

.subHeader .subHeaderPopUp .topDetail .text {
    color: white;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subHeaderPopUp .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
}

.subHeaderPopUp .close-btn ion-icon {
    color: white;
    font-size: 30px;
    display: flex;
}

.subHeaderPopUp .mainDetail {
    padding: 0px 20px;
    overflow-y: scroll;
    height: calc(100% - 60px);
}

.subHeaderPopUp .mainDetail .item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 6px;
    gap: 8px;
    transition: all 300ms ease-in-out;
}

.subHeaderPopUp .mainDetail .item h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: rgb(24, 24, 24);
}

.subHeaderPopUp .mainDetail .item .detail {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    color: black;
}


.subHeaderPopUp .mainDetail .item .detail .icon ion-icon {
    display: flex;
    color: #232F3E;
}

.subHeaderPopUp .mainDetail .item .detail .text small {
    font-size: 15px;
}


@media only screen and (max-width: 768px) {
    .webHeader .webNav {
        padding: 0px 16px 0px 0px;
        /* padding-right: 30px; */
    }

    .webHeader .webNav .accountSetting {
        display: none !important;
    }

    .webHeader .webNav .searchContainer {
        grid-column: span 9 / span 7 !important;
    }




}

@media only screen and (max-width: 428px) {
    .webHeader .webNav .searchContainer .searchBox {
        height: 35px;
    }

    .webHeader .webNav .searchContainer .searchBox .selected-option {
        height: 35px;

    }

    .webHeader .webNav .searchContainer .searchBox input {
        height: 35px;

    }

    .webHeader .webNav .searchContainer .searchBox button {
        height: 35px;

    }

    .webHeader .webNav .searchContainer .searchBox .selected-option {
        padding: 0 2px;
        gap: 0;
        font-size: 10px;
    }

}

.container {
    width: 100%;
    background-color: #E3E6E6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* =============================== */
/* Banner Start */
/* =============================== */
.headerBanner {
    /* max-width: 1400px; */
    width: 100%;
    margin-bottom: 20px;
}


@media only screen and (max-width: 1400px) {
    .headerBanner {
        width: 100%;
    }
}


.headerBanner .swiper {
    width: 100%;
    /* height: 340px; */
}

.headerBanner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.headerBanner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headerBanner .swiper-button-next:after,
.swiper-button-prev:after {
    color: #ff9000;
    font-size: 30px !important;
}

/* =============================== */
/* Banner End */
/* =============================== */

.wrapper {
    position: relative;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 800;
    padding: 20px;
}

@media only screen and (max-width: 1400px) {
    .wrapper {
        width: 100%;
        padding: 10px;
    }
}

.wrapper .content {
    /* transform: translateY(-100px); */
    z-index: 800;
}


.wrapper .content.category .CategoryBox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;

}

@media only screen and (max-width: 1420px) {
    .wrapper .content.category .CategoryBox {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 1024px) {
    .wrapper .content.category .CategoryBox {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 693px) {
    .wrapper .content.category .CategoryBox .itemCategoryBox .product .item .image {
        width: 100px !important;
        height: 100px !important;
    }

    .wrapper .content.category .CategoryBox {
        gap: 6px !important;
    }

}

@media only screen and (max-width: 480px) {
    .wrapper .content.category .CategoryBox .itemCategoryBox .product .item .image {
        width: 100% !important;
        height: 80px !important;
    }

    .wrapper .content.category .CategoryBox .itemCategoryBox .product {
        gap: 2px !important;
    }

    .wrapper .content.category .CategoryBox .itemCategoryBox {
        padding: 6px 6px !important;
    }

    .wrapper .content.category .CategoryBox .itemCategoryBox .seeMoreLink {
        font-size: 12px;
    }

    .headerBanner {
        margin-bottom: 10px !important;
    }
}

.wrapper .content.category .CategoryBox .itemCategoryBox {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;

}

.wrapper .content.category .CategoryBox .itemCategoryBox .headline {
    width: 100%;
    text-align: left;
}

.wrapper .content.category .CategoryBox .itemCategoryBox .product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    /* Applies when exactly 4 items are present */
    gap: 8px;
    grid-auto-rows: 1fr;
    /* Adjust height for additional rows if more items exist */
    grid-auto-flow: row;
    /* Ensures items flow naturally in rows */
    margin: 10px 0;
}

.wrapper .content.category .CategoryBox .itemCategoryBox .product .item .image {
    width: 140px;
    height: 140px;
}

.wrapper .content.category .CategoryBox .itemCategoryBox .product .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.wrapper .content.category .CategoryBox .itemCategoryBox .seeMoreLink {
    width: 100%;
    text-align: left;
}

.wrapper .content.category .CategoryBox .itemCategoryBox .seeMoreLink a {
    text-decoration: none;
    color: darkgoldenrod;
}

.wrapper .productBox {
    width: 100%;
    position: relative;
    gap: 16px;
}


.wrapper .productBox .productSwiper {
    max-width: 1400px;

}


@media only screen and (max-width: 1400px) {
    .wrapper .productBox .productSwiper {
        width: 100%;
    }
}

.productSwiper .swiper {
    width: 100%;
}


.productSwiper .swiper-slide {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background: #fff;
    border-radius: 4px;
}

@media only screen and (max-width: 500px) {
    .productSwiper .swiper-slide {
        padding: 6px;
    }

}

.productSwiper .swiper-slide .image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media only screen and (max-width: 500px) {
    .productSwiper .swiper-slide .image {
        height: 145px;
    }
}

.productSwiper .swiper-slide .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productSwiper .swiper-slide .detail {
    padding: 12px 0 0px 0px;
}

.productSwiper .swiper-slide .detail .text .productName {
    font-size: 14px;
    margin-bottom: 5px;
    height: 40px !important;
}

.productSwiper .swiper-slide .detail .text .price strong {
    margin-right: 10px;
    color: #ff9000;
}

.productSwiper .swiper-slide .detail .text .price .mrp strike {
    font-size: 14px;
    color: #202020;
}

@media only screen and (max-width: 500px) {
    .wrapper {
        padding: 2px;
    }

    .productSwiper .swiper-slide .detail .text .productName {
        margin-bottom: 0 !important;
    }

    .productSwiper .swiper-slide .detail .text .price strong {
        font-size: 14px !important;
    }

    .productSwiper .swiper-slide .detail .text .price .mrp strike {
        font-size: 12px !important;
    }

    .wrapper .content.category .CategoryBox .itemCategoryBox .headline h4 {
        font-size: 14px;
    }



}

.productSwiper .swiper-slide .detail .bottom-set-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.productSwiper .swiper-slide .detail .bottom-set-button .purchasing.wishListFavorite {
    min-width: 40px;
    background-color: #ffa9a9;
    border: none;
    outline: none;
}

.productSwiper .swiper-slide .detail .bottom-set-button .purchasing.wishListFavorite ion-icon {
    color: #9f1616;
}

.productSwiper .swiper-slide .detail .bottom-set-button .purchasing.wishListFavorite.active {
    background-color: #9f1616;
}

.productSwiper .swiper-slide .detail .bottom-set-button .purchasing.wishListFavorite.active ion-icon {
    color: #ffa9a9;
}


.productSwiper .swiper-slide .detail .bottom-set-button .purchasing.buyNow {
    width: calc(100% - 50px);
    background-color: #ff9000;

}

.productSwiper .swiper-slide .detail .purchasing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ff9000;
    border-radius: 4px;
    margin-top: 10px;
    gap: 6px;
    transition: all 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.productSwiper .swiper-slide .detail .purchasing:active {
    transform: scale(0.95);
}


.productSwiper .swiper-slide .detail .purchasing ion-icon {
    font-size: 20px;
    display: flex;
    color: #ffffff;
}

.productSwiper .swiper-slide .detail .purchasing {
    padding: 6px 10px;
}

.productSwiper .swiper-slide .detail .purchasing a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}




.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after {
    color: #ff9000;
    font-size: 24px !important;
    background-color: rgba(255, 255, 255, 0.492);
    height: 100px;
    width: 150px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.productSwiper .swiper-button-next:hover:after,
.productSwiper .swiper-button-prev:hover:after {
    background-color: white;

}


.wrapper .content.category .productBox .productLayout {
    margin: 40px 0;

}

.wrapper .content.category .productBox .productLayout .headingLayout {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper .content.category .productBox .productLayout .headingLayout .seeAll {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
}

.wrapper .content.category .productBox .productLayout .headingLayout .seeAll div {
    font-size: 14px;
    color: rgb(87, 87, 87);
}

.wrapper .content.category .productBox .productLayout .headingLayout a ion-icon {
    color: #ff9000;
}


/* Footer */
footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: #ff9000;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff9000;
}

.footer-section ul li a i {
    margin-right: 5px;
    color: #ff9000;
}

.social-links {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.social-links a ion-icon {
    font-size: 20px;
    display: flex;
}

.social-links a:hover {
    background-color: #ff9000;
    transform: translateY(-3px);
}

.newsletter h4 {
    margin-bottom: 15px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 3px 0 0 3px;
    outline: none;
}

.newsletter button {
    background-color: #ff9000;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #ff9000;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    position: relative;
}

.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: #ff9000;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top ion-icon {
    font-size: 20px;
    display: flex;
}

.back-to-top:hover {
    background-color: #ff9000;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .back-to-top {
        right: 10px;
        bottom: 10px;
    }
}


.not-found-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.not-found-item .icon {
    width: 150px;
    height: 150px;
    background-color: #ff91004b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.not-found-item ion-icon {
    font-size: 80px;
    color: #ff9000;
}

.not-found-item h2 {
    color: #1b1b1b;
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}




/* Notification container */

.notification-container {
    /* Position top left */

    /* position: fixed;
        top: 2%;
        left: 2%;
        z-index: 1000;
        max-width: 80%; */

    --content-color: black;
    --background-color: #f3f3f3;
    --font-size-content: 0.75em;
    --icon-size: 1em;

    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    list-style-type: none;
    font-family: sans-serif;
    color: var(--content-color);
    position: fixed;
    right: 50%;
    top: 20px;
    z-index: 1100;
    transform: translate(50%, 0%);
}

/* Notification Item */

.notification-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1em;
    overflow: hidden;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: rgba(111, 111, 111, 0.2) 0px 8px 24px;
    background-color: var(--background-color);
    transition: all 250ms ease;
}

.notification-item svg {
    transition: 250ms ease;
}

.notification-item:hover {
    transform: scale(1.01);
}

.notification-item:active {
    transform: scale(1.05);
}

.notification-container svg {
    width: var(--icon-size);
    height: var(--icon-size);
    color: var(--content-color);
}

.notification-icon {
    display: flex;
    align-items: center;
}

.success {
    color: #047857;
    background-color: #91ffc6;

}

.success svg {
    color: #047857;
    background-color: #5bffaa;
}

.success:hover {
    background-color: #5bffaa;
}

/* Info */

.info {
    color: #1e3a8a;
    background-color: #7eb8ff;

}

.info svg {
    color: #1e3a8a;
}


.info:hover {
    background-color: #5ba5ff;
}

/* Warning */

.warning {
    color: #78350f;
    background-color: #ffe57e;

}

.warning svg {
    color: #78350f;
}


.warning:hover {
    background-color: #ffde59;
}

/* Error */

.error {
    color: #7f1d1d;
    background-color: #ff7e7e;
}

.error svg {
    color: #7f1d1d;
}


.error:hover {
    background-color: #ff5f5f;
}

/* Notification content */

.notification-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
}

.notification-text {
    font-size: var(--font-size-content);
    user-select: none;
}

.notification-close {
    cursor: pointer;
}

.out-of-stock {
    color: rgb(216, 22, 22);
    font-weight: 700;
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination a,
.pagination .current {
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    color: #ff9900;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #ff9900;
    color: #fff;
}

.pagination .current {
    font-weight: bold;
    background-color: #ff9900;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    background-color: #ff9900;
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    margin: 0 5px;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #a46200;
}

.searchBtnHeader {
    display: none;
}
.webHeader .webNav .searchContainer .close-icon {
    display: none;
}

@media only screen and (max-width: 500px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .webHeader .webNav .searchContainer .searchBox button {
        font-size: 18px;
        min-width: 30px;
        max-width: 30px;
    }
    .webHeader .webNav .logo {
        height: 60px;
    }

    .webHeader .webNav .searchContainer .searchBox .search-bar-container {
        position: unset;
    }

    .webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar {
        left: 0px !important;
    }

    .webHeader .webNav .searchContainer {
        display: none;
        position: absolute;
        padding: 0px 30px 0 5px;
        background-color: black;
        z-index: 9999;
    }
    
    .webHeader .webNav .searchContainer .close-icon {
      display: block;
        position: absolute;
        top: 14px;
        right: 3px;
        color: #fff;
        font-size: 29px;
        cursor: pointer;
    }


    .webHeader .webNav .logo {
        grid-column: span 5 / span 2;
    }

    .searchBtnHeader {
        display: flex;
    }

    .webHeader .webNav .searchContainer .searchBox .search-bar-container .search-list-bar {
    }
}

button:disabled {
  background-color: #b1b1b1 !important;
  border: 2px solid #b1b1b1 !important;
}