
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');

:root {
    --black: #000;
    --gray: #f1f1f1;
    --border: #e5e5e5;
    --red: #e10600;
    --text: #111;
    --text-sec: white;
    --top-header : #420420;
}

/* complete header code */

  /* RESET */
*{margin:0;padding:0;box-sizing:border-box}



body{font-family:Arial,Helvetica,sans-serif}

a{text-decoration:none;color:inherit}

.container{max-width:1500px;margin:auto;padding:0 15px}

/*-----responsive every section----------------*/


@media(max-width:768px){
  .content-wrapper{
    margin-top: 1rem;
  }
  
} 

/* Prevent content hiding behind sticky header */
.page,
main {
    padding-top: 80px;
}

/*====================##########*****header code*****################====================================================================*/
    
 /* ================= TOP BAR ================= */
.marquee_container {
    width: 100%;
    overflow: hidden;
    background: #420420;
    padding: 10px 0 0;
}

.marquee_track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
}

.marquee_container:hover .marquee_track {
    animation-play-state: paused;
}

.marquestyle {
    color: #fff;
    white-space: nowrap;
    margin-right: 40px;
    font-size: 16px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 10px;
}

/* LOGO */
.logo img {
    width: 170px;
}

/* ================= DESKTOP NAV ================= */
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    font-family: "Dosis", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.sale-link {
    color: var(--red);
}

.badge-sale {
    background: var(--red);
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 4px;
}

/* ================= SUBMENU ================= */
.nav-item {
    position: relative;
}

.has-submenu > a {
    padding-bottom: 12px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    border-radius: 8px;
    display: none;
    z-index: 99;
}

.submenu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #000;
}

.submenu a:hover {
    background: #f5f5f5;
}

.has-submenu:hover .submenu {
    display: block;
}

/* ================= HEADER ACTIONS ================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-actions svg {
    width: 22px;
    height: 22px;
}

.icon {
    font-size: 20px;
    cursor: pointer;
}

.badge-wrap {
    position: relative;
}

.badge-wrap span {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

/* ================= MOBILE MENU ================= */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* DRAWER */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 20px;
    transition: 0.3s ease;
    z-index: 2000;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

/* MOBILE SUBMENU */
.mobile-category-title {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-weight: 500;
    cursor: pointer;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
}

.mobile-category.open .mobile-submenu {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
}

/* ================= OVERLAY ================= */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .main-nav {
        display: none !important;
    }

    .menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .utility-wrap {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .utility-center {
        font-size: 14px;
        padding: 6px;
    }

    .logo img {
        width: 140px;
    }

    .header-inner {
        padding: 10px 15px;
    }

    .header-actions {
        gap: 10px;
    }
}

.account-dropdown {
    position: relative;
}


/* Dropdown box */
.account-dropdown {
    position: relative;
}

/* Dropdown box */
.account-menu {
    position: absolute;
    top: 130%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 8px 0;
    display: none;
    z-index: 9999;
}

/* Active state */
.account-menu.show {
    display: block;
}

/* Links */
.account-menu a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
}

.account-menu a:hover {
    background: #f5f5f5;
}




/*----------------------------------------------header code end--------------------------------------------------------------------------------*/





    /*--------------------------------------------search bar ------------------------------------------------------------------------------------------*/

    .badge-wrap.icon {
        cursor: pointer;
    }

    /* overlay */
    .search-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.6);
        z-index: 9998;
        display: none;
    }

    /* modal */

    .search-modal {
        position: fixed;
        top: 34%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        width: 100%;
        max-width: 1100px;
        padding: 16px;
        border-radius: 12px;
        z-index: 9999;
        display: none;
    }

    /* header */
    .search-header {
        display: flex;
        gap: 10px;
    }

    .search-header input {
        border-radius: 16px;
        flex: 1;
        padding: 12px;
        font-size: 16px;
        border: 1px solid #ccc;
    }

    #closeSearch {
        font-size: 26px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* tags */
    .search-tags span {
        color: white;
        background: #000000;
        padding: 6px 12px;
        border-radius: 20px;
        margin: 4px;
        display: inline-block;
        cursor: pointer;
    }

    .live-search-results {
        margin-top: 12px;
        max-height: 320px;
        overflow-y: auto;
    }

    .live-item {
        display: flex;
        gap: 12px;
        padding: 10px;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #000;
    }

    .live-item img {
        width: 55px;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
    }

    .live-item strong {
        font-size: 14px;
    }

    .live-item p {
        font-size: 13px;
        color: #666;
    }

    .live-item:hover {
        background: #f9f9f9;
    }

    .no-result {
        padding: 14px;
        color: #777;
        font-size: 14px;
    }

    .search-footer {
        margin-top: 10px;
        text-align: center;
    }

    .search-footer a {
        font-weight: 600;
        text-decoration: underline;
    }

    /* mobile full screen */
    @media (max-width: 768px) {
        .search-modal {
            top: 0;
            left: 0;
            transform: none;
            width: 100%;
            height: 100vh;
            border-radius: 0;
        }
    }

    

    


/*----------------**********************end code header*****************************-------------------------------------------------------------------------------*/

/*-----------------------*******************Home page code****************************----------------------------------------------------------------------------*/

/*-----------------slider code ------------------------------------------------------------------------------------------------------------------*/

    /* ================= COMMON ================= */
.heroSwiperDesktop,
.heroSwiperMobile {
    width: 100%;
    position: relative;
    overflow: hidden;
}


.heroSwiperDesktop::before {
    content: "";
    display: block;
    padding-top: 31.25%; /* (600 / 1920) * 100 */
}

.heroSwiperDesktop .swiper-wrapper,
.heroSwiperDesktop .swiper-slide {
    position: absolute;
    inset: 0;
}

.heroSwiperDesktop img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* NEVER CUT */
    display: block;
}

.heroSwiperMobile::before {
    content: "";
    display: block;
    padding-top: 60%; /* (450 / 750) * 100 */
}

.heroSwiperMobile .swiper-wrapper,
.heroSwiperMobile .swiper-slide {
    position: absolute;
    inset: 0;
}

.heroSwiperMobile img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* NEVER CUT */
    display: block;
}



/*-----------------------------------------slider code end -------------------------------------------------------------------------------------*/


/*----------------------------------------category slider --------------------------------------------------------------------------------------*/
    /* Ensure hero section ends cleanly */
    

    /* Category Section */
    .category-section {
        background: #fff;
        /* padding: 20px 0; */
        position: relative;
        z-index: 2; /* ensures it comes below hero */
    }

    /* Swiper container MUST have height */
    .categorySwiper {
        width: 100%;
        padding: 10px 0 20px;
        overflow: hidden; /* VERY IMPORTANT */
    }

    /* Slides */
    .category-item {
        text-align: center;
        width: auto;
    }

   /* Category card */
    .category-item {
        text-align: center;
    }

    /* Image wrapper */
    .category-img {
        width: 100%;
        max-width: 165px;       /* desktop cap */
        aspect-ratio: 1 / 1;
        margin: 0 auto;
        overflow: hidden;
    }

    /* Image */
    .category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Swiper container */
    .swiper {
        width: 100%;
        overflow: visible;   
    }

    /* Swiper wrapper */
    .swiper-wrapper {
        align-items: stretch;
    }

    /* Swiper slide */
    .swiper-slide {
        width: auto !important;   
        height: auto;
        flex-shrink: 0;
    }

    /* image wrapper */
    .category-img {
        height: 170px;
        width: 100%;
        max-width: 180px;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
        overflow: hidden;
    }

    .category-item {
        width: 100%;
        max-width: 140px;
        text-align: center;
    }

    .category-item p {
        font-size: 13px;
        line-height: 1.3;
        text-align: center;

        max-width: 140px;     /* 🔥 THIS fixes wrapping */
        margin: 6px auto 0;

        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /*---- Desktop  category image----- */

    @media (max-width: 576px) {
        .category-img {
            width: 130px;
            height: 150px;
            font-size: 12px;

        }
    }

  
    .categoryt-title{
        text-align:center;
    }

    /* CARD */
    .category-card{
        position:relative;
        overflow:hidden;
        border-radius:15px;
        cursor:pointer;
    }

    /* IMAGE */
    .categoryimg{
        width:100%;
        height:auto;
        border-radius:12px;
        transition:transform .4s ease;
    }

    /* OVERLAY */
    .category-overlay{
        position:absolute;
        inset:0;
        background:rgba(0,0,0,0.55);
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        color:#fff;
        opacity:0;
        transition:.4s ease;
        text-align:center;
    }

    .category-overlay h5{
        font-size:18px;
        margin-bottom:10px;
        letter-spacing:1px;
    }


    /* Mobile Safe */
    @media (max-width:576px){
        .category-overlay{
            font-size:14px;
        }
    }

/*----------------------------------------end slider category ----------------------------------------------------------------------------------*/



/*-----------------------------------------Home-page-review----------------------------------------------------------------------------------------------------*/


    .reviews-section {
        padding: 40px 20px;
        background: #fafafa;
    }

    .reviews-title {
        text-align: center;
        font-size: 28px;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .reviews-wrapper {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .review-card {
        min-width: 280px;
        max-width: 320px;
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .stars {
        color: #f5a623;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 12px;
    }

    .review-name {
        font-weight: 600;
        font-size: 14px;
        color: #222;
    }

    /* Desktop layout */
    @media (min-width: 768px) {
        .reviews-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            overflow: hidden;
        }

        .review-card {
            max-width: 100%;
            min-width: auto;
        }
    }
/*---------------------------------------------------------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------FAQ SECTION---------------------------------------------------------------------------*/

    .faq-container {
        max-width: 1300px;
        margin: auto;
    }

    .faq-question {
        width: 100%;
        background: #f5f5f5;
        border: none;
        padding: 15px;
        font-size: 18px;
        text-align: left;
        cursor: pointer;
        /* font-weight: bold; */
    }

    .faq-answer {
        display: none;
        padding: 15px;
        border: 1px solid #ddd;
    }

    .faq-question.active {
        background: #eaeaea;
    }


/*-------------------------------------------------------FAQ END-------------------------------------------------------------------------------*/






/*------------------------------------Clothing section Css--------------------------------------------------------------------------------------*/
    .visually-hidden {
        clip: rect(0 0 0 0);
        border: 0;
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .product-title
    {
        margin-top: 0.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        letter-spacing: 2px;
        font-size: 15px;
    }

    .product-card{
        position:relative;
        overflow:hidden;
        border-radius:15px;
        cursor:pointer;
    }

    /* IMAGE */
    .productimg{
        width:100%;
        height:auto;
        border-radius:12px;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
    }

    .productimg.active {
        opacity: 1;
        position: relative;
    }

    .sale-price{
    letter-spacing: 2px;
    }

    .regular-price{
    letter-spacing: 2px;
    text-decoration:line-through;
    }

    .product-price{
    font-size: 14px;
    text-align: center;
    }

    .product-discount-percentage{
    letter-spacing: 2px;
    color: #420420;
    }

    .view-more-wrapper {
        display: flex;
        justify-content: center;
        margin: 30px 0;
    }

    .view-more-btn {
        padding: 12px 36px;
        background: #000;
        color: #fff;
        border: none;
        border-radius: 30px;
        letter-spacing: 1px;
        width: 100%;
        max-width: 200px;   /* 🔥 limits width on desktop */
        margin: 0 auto;
        display: block;
    }


 /* Desktop max width control */
    @media (min-width:992px){
        .shipping-title{
                font-size: medium;
        }
    }

    /* Mobile Safe */
    @media (max-width:576px){
        .shipping-title{
                font-size: smaller;
        }
    }



/*------------------------------------Clothing section Css end------------------------------------------------------------------------------------*/










/*------------------------------------category product listing------------------------------------------------------------------------------------*/

/* ================= FILTER SIDEBAR ================= */
    .filter-box {
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 10px;
        position: sticky;
        top: 90px;
    }

    .filter-title {
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .filter-group label {
        display: block;
        font-size: 14px;
        padding: 5px 0;
    }

    /* ================= PRODUCT CARD ================= */
    .product-card {
        border-radius: 12px;
        overflow: hidden;
        transition: transform .2s ease;
    }

    .product-card:hover {
        transform: translateY(-4px);
    }

    .productimg {
        width: 100%;
        display: none;
    }

    .productimg.active {
        display: block;
    }

    /* ================= SORT ================= */
    .select-sec {
        text-align: center;
        border-radius: 5px;
        padding: 9px 12px;
        border: 1px solid #000000;
    }

    /* ================= MOBILE STICKY BAR ================= */
    @media (max-width: 991px) {
        .mobile-filter-bar {
            padding: 10px 0px;
            position: sticky;
            top: 58px;
            z-index: 999;
            background: #ffffff;
            /* padding: 10px; */
            border-bottom: 1px solid #eee;
        }
    }

/* ================= OFFCANVAS ================= */
    .filter-canvas {
        width: 85%;
        max-width: 340px;
        border-radius: 0 18px 18px 0;
    }

    .custom-filter-header {
        border-bottom: 1px solid #eee;
    }

    .clear-link {
        font-size: 13px;
        margin-left: 10px;
        color: #0d6efd;
        border: none;
        background: none;
    }

    .filter-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0,0,0,.08);
        padding: 10px;
    }

    .filter-head {
        width: 100%;
        background: #f5f8ff;
        border: none;
        padding: 12px;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .filter-content label {
        display: flex;
        gap: 10px;
        padding: 6px 0;
        font-size: 14px;
    }

    .filter-footer {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 12px;
        border-top: 1px solid #eee;
    }


/*-------------------------------------size filter code----------------------------------------------------------------------------------------------------*/
    .size-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
        gap: 10px;
    }

    .size-box {
        position: relative;
        cursor: pointer;
    }

    .size-box input {
        display: none;
    }

    .size-box span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 6px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 500;
        background: #fff;
        transition: all 0.2s ease;
    }

    /* Selected */
    .size-box input:checked + span {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    /* Hover */
    .size-box span:hover {
        border-color: #000;
    } 

/*--------------------------------------size filter code end---------------------------------------------------------------------------------------------------*/

/*-----------------------------------------color filter code----------------------------------------------------------------------------------------------*/


    .color-box {
        position: relative;
        cursor: pointer;
    }

    .color-box input {
        display: none;
    }

    .color-box span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 6px;
        border: 2px solid #ddd;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 500;
        background: #fff;
        transition: all 0.2s ease;
        text-transform: capitalize;
    }

    /* Border color from inline CSS variable */
    .color-box span {
        border-color: var(--clr);
    }

    /* Selected */
    .color-box input:checked + span {
        background: var(--clr);
        color: #fff;
        border-color: var(--clr);
    }

    /* Hover */
    .color-box span:hover {
        box-shadow: 0 0 0 1px var(--clr);
    }
    /*------------------------------------color filter code end---------------------------------------------------------------------------------------*/

    /*------------------------------------price filter code end---------------------------------------------------------------------------------------*/
    .price-range-wrapper {
        position: relative;
        padding: 10px 0;
    }

    .price-range-wrapper input[type="range"] {
        -webkit-appearance: none;
        width: 100%;
        height: 4px;
        background: #222;
        border-radius: 5px;
        outline: none;
        margin: 10px 0;
    }

    .price-range-wrapper input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 16px;
        width: 16px;
        background: #000;
        border-radius: 50%;
        cursor: pointer;
    }

    .price-label {
        font-size: 14px;
        margin-top: 8px;
    }
/*----------------------------------PRICE FILTER CODE END-----------------------------------------------------------------------------------------*/

.breadcrumbs-text{
      text-transform: uppercase;
      font-size: xx-large;
    }
    @media (max-width:768px){
    .breadcrumbs-text{
        font-size: 23px;
    
    }}

/*------------------------------------category product listing end--------------------------------------------------------------------------------*/
                                        

/*---------------------------------------product details page-------------------------------------------------------------------------------------*/

    /* SKELETON */
    .image-zoom-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        max-width: 620px;
    }

    /* Skeleton OVERLAY */
    .image-skeleton {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            #eee 25%,
            #f5f5f5 37%,
            #eee 63%
        );
        background-size: 400% 100%;
        animation: shimmer 1.4s infinite;
        z-index: 2;
    }

    /* Hide skeleton after load */
    .image-skeleton.hidden {
        display: none;
    }

    /* Image */
    .main-product-img {
        width: 100%;
        height: auto;
        display: block;   /* 🔥 IMPORTANT */
        object-fit: cover;
        aspect-ratio: 3 / 4;
        z-index: 1;
    }

    /* .main-product-img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        transition: transform 0.4s ease;
    } */


    .product-gallery {
        position: relative;
    }

    /* Layout */
    .gallery-wrapper {
        display: flex;
        gap: 15px;
    }

    /* Vertical thumbs (desktop) */
    .thumb-vertical {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .thumb {
        width: 70px;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .thumb.active {
        border-color: #420420;
    }

    /* Main image */
    .image-zoom-wrapper {
        overflow: hidden;
        border-radius: 18px;
        max-width: 620px;
    }


    /* Zoom desktop only */
    @media (min-width: 992px) {
        .image-zoom-wrapper:hover img {
            transform: scale(1.4);
        }
    }

    /* Mobile thumbs */
    .thumb-row {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        overflow-x: auto;
    }

    .mobile-only {
        display: none;
    }

    /* Typography */
    .product-title-2 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .label-style {
        letter-spacing: 2px;
    }

/*--------------------------------Sizes------------------------------------------------------*/
    /* hide radio buttons */
    .size-radio{
        display: none;
    }

    /* size container */
    .sizes{
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* default size label */
    .sizes label{
        min-width: 44px;
        height: 38px;
        padding: 0 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        transition: all .2s ease;
        background: #fff;
        color: #000;
    }

    /* hover effect */
    .sizes label:hover{
        border-color: #000;
    }

    /* selected size */
    .size-radio:checked + label{
        background: #000000;
        color: #fff;
        border-color: #000000;
    }


/*-----------------------------------end  size code --------------------------------------------------------------------*/


    /* out of stock label */
    .out-of-stock-label{
        opacity: .4;
        cursor: not-allowed;
        position: relative;
    }

    /* strike line for out of stock */
    .out-of-stock-label::after{
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background: #000;
        left: 0;
        top: 50%;
        transform: rotate(-10deg);
    }

    /* prevent hover on disabled */
    .size-radio:disabled + label:hover{
        border-color: #ccc;
    }


    /* Rating */
    .prodstars {
        position: relative;
        display: inline-block;
        font-size: 22px;
        color: #ddd;
    }

    .prodstars .filled {
        color: #000;
        position: absolute;
        width: 86%;
        overflow: hidden;
    }

    .prodstars .empty {
        color: #ddd;
    }

    /*---------promotional section-------------*/

    .trust-strip {
        margin: 12px 0;
        text-align: center;
        font-size: 14px;
        letter-spacing: 1px;
        min-height: 22px;
        position: relative;
    }

    .trust-text {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .trust-text.active {
        display: inline-block;
        opacity: 1;
    }

    .trust-text.active::after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #000;
        margin: 6px auto 0;
    }

    /*-------------end section--------------*/

    /*------------Addons section-------------------*/

    .addons-img {
        max-width: 110px;
        width: 100%;
        /* height: 90px; */
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
    }

    /*----------addons section--------------------*/

    /*----------coupon card-----------------------*/
    .coupon-section{
        width: 100%;
    }

    .coupon-offer{
        font-weight: 600;
        width: 100%;
    }

    .offer-title{
        color: white;
        background: #000000;
        padding: 18px 0px 0px 10px;
    }


    /*----------coupon card end-------------------*/


    /*---------------procolor----------------------*/

    .Procolor {
        width: 70px;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
    }

/*---------------procolor end -----------------*/

    /* MOBILE */
    @media (max-width: 991px) {
        .gallery-wrapper {
            flex-direction: column;
        }

        .thumb-vertical {
            display: none;
        }

        .mobile-only {
            display: flex;
        }

        .image-zoom-wrapper {
            max-width: 100%;
        }

        .product-info {
            margin-top: 2rem;
        }
    }

/*--------------------------------------product details end---------------------------------------------------------------------------------------*/

/*-----------------------------------------cart code---------------------------------------------------------------------------------------------------*/

    /* =========================
    OVERLAY
    ========================= */
    .cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:999;
    }

    .cart-overlay.active{
    opacity:1;
    visibility:visible;
    }

    /* =========================
    MINI CART DRAWER
    ========================= */
    .mini-cart{
    position:fixed;
    top:0;
    right:-100%;
    width:380px;
    max-width:100%;
    height:100%;
    background:#fff;
    z-index:1000;
    display:flex;
    flex-direction:column;
    transition:.35s ease;
    }

    .mini-cart.open{
    right:0;
    }

    /* =========================
    HEADER
    ========================= */
    .mini-cart-header{
    padding:16px;
    border-bottom:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
    }

    .mini-cart-header h4{
    margin:0;
    font-size:16px;
    font-weight:600;
    }

    .mini-cart-header span{
    font-size:22px;
    cursor:pointer;
    }

    /* =========================
    CONTENT
    ========================= */
    #miniCartContent{
    flex:1;
    overflow-y:auto;
    padding:16px;
    }

    /* =========================
    CART ITEM
    ========================= */
    .cart-item{
    display:flex;
    gap:12px;
    width:100%;
    padding-bottom:16px;
    margin-bottom:16px;
    border-bottom:1px solid #eee;
    box-sizing:border-box;
    }

    /* IMAGE */
    .cart-item img{
    width:72px;
    height:96px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
    }

    /* INFO */
    .cart-info{
    flex:1;
    display:flex;
    flex-direction:column;
    }

    /* TITLE */
    .cart-title{
    font-size:14px;
    font-weight:500;
    line-height:1.4;
    margin-bottom:4px;
    }

    /* SIZE */
    .cart-size{
    font-size:12px;
    color:#777;
    }

    /* =========================
    ACTIONS
    ========================= */
    .cart-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:10px;
    gap:10px;
    }

    /* QTY BOX */
    .qty-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:30px;
    padding:4px 10px;
    gap:12px;
    height:36px;
    }

    .qty-btn{
    border:none;
    background:none;
    font-size:18px;
    cursor:pointer;
    }

    .qty-box span{
    font-size:14px;
    min-width:18px;
    text-align:center;
    }

    /* REMOVE */
    .remove-item{
    background:none;
    border:none;
    color:#000000;
    font-size:13px;
    cursor:pointer;
    white-space:nowrap;
    }

    /* =========================
    FOOTER
    ========================= */
    .mini-cart-footer{
    padding:16px;
    border-top:1px solid #eee;
    }

    .subtotal{
    display:flex;
    justify-content:space-between;
    font-size:15px;
    font-weight:500;
    margin-bottom:14px;
    }

    /* BUTTONS */
    .viewcart-btn{
    width:100%;
    background:#000;
    color:#fff;
    padding:14px;
    border:none;
    border-radius:30px;
    font-size:14px;
    cursor:pointer;
    }

    /* =========================
    EMPTY CART
    ========================= */
    .empty-cart{
    text-align:center;
    color:#777;
    font-size:14px;
    margin-top:30px;
    }

    /* =========================
    MOBILE FIX (CRITICAL)
    ========================= */
    @media (max-width:768px){
    .mini-cart{
        width:100%;
    }

    .cart-item{
        flex-direction:row;
    }
    }

    /* ======================
    FOOTER
    ====================== */
    .mini-cart-footer{
    padding:16px;
    border-top:1px solid #eee;
    background:#fff;
    }

    /* SUBTOTAL */
    .subtotal{
    display:flex;
    justify-content:space-between;
    font-size:15px;
    font-weight:600;
    margin-bottom:14px;
    }

    /* ======================
    COUPON
    ====================== */


    /* ======================
    CHECKOUT BUTTON
    ====================== */
    .checkout-btn{
    display:block;
    width:100%;
    background:#000;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    }

    /* MOBILE FIX */
    @media(max-width:768px){
    .coupon-box{
        flex-direction:column;
    }

    .coupon-box button{
        width:100%;
        padding:12px;
    }
    }

    /* ======================
    PRICE
    ====================== */
    .cart-price{
        font-size: 13px;
        font-weight: 500;
        margin: 6px 0 10px;
        color: #000000;
    }





/*-----------------------------------------cart code end ----------------------------------------------------------------------------------------------*/

/*-----------------------------------------qty increase------------------------------------------------------------------------------------------------*/

.qty-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
    width:120px;
}

.qty-btn{
    width:40px;
    height:40px;
    border:none;
    background:#f7f7f7;
    font-size:20px;
    font-weight:500;
    cursor:pointer;
}

.qty-btn:active{
    background:#e5e5e5;
}

.qty-input{
    width:40px;
    text-align:center;
    border:none;
    font-size:16px;
    outline:none;
    background:#fff;
}

/* Mobile */
@media(max-width:768px){
    .qty-btn{
        width: 42px;
        height: 42px;
    }
    .qty-input{
        width: 50px;
        height: 42px;
    }
}

/*-----------------------------------------qty code end------------------------------------------------------------------------------------------------*/

/*----------------------------------------product badges-----------------------------------------------------------------------------------------------*/
.pro-badges{
    text-align: center;
    color: white;
    border-radius: 10px;
    padding: 0px;
    background: #760000;
}
/*---------------------------------------end product badges--------------------------------------------------------------------------------------------*/

/*---------------------------------------Size Chart start----------------------------------------------------------------------------------------------*/

/* Toggle Switch */
.switch {
    position: relative;
    width: 42px;
    height: 22px;
}
.switch input {
    opacity: 0;
}
.slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: .3s;
}
.slider::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}
input:checked + .slider {
    background: #000000;
}
input:checked + .slider::before {
    transform: translateX(20px);
}

/* Table */
.size-chart-table {
    max-height: 60vh;
}
.size-chart-table table th {
    font-size: 14px;
}
.size-chart-table table td {
    font-size: 13px;
}

/*---------------------------------------size chart code end-------------------------------------------------------------------------------------------*/

/*----------------------------------------order on whatsapp--------------------------------------------------------------------------------------------------*/

/* .whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 90px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
} */

/* Hover effect (desktop) */
/* .whatsapp-float:hover {
    transform: translateY(-4px);
    background: #1ebe5d;
} */

/* Mobile optimization */
/* @media (max-width: 768px) {
    .whatsapp-text {
        display: none;
    }
    .whatsapp-float {
        border-radius: 50%;
        padding: 12px;
        bottom: 70px;
    }
}  */


/*------------------------------------------order on whatsapp code end--------------------------------------------------------------------------------------------------*/

/*-----------------------------------------Add review code -------------------------------------------------------------------------------------------------------------*/
.modern-review-card {
    background: #fff;
    /* padding: 28px; */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 520px;
    margin: auto;
}

/* Login alert */
.login-alert {
    background: slategrey;
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.login-btn {
    display: inline-block;
    margin-top: 10px;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

/* Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: all .25s ease;
}

.modern-input:focus,
.modern-textarea:focus {
    border-color: #840028;
    box-shadow: 0 0 0 3px rgba(132,0,40,0.12);
    outline: none;
}

.modern-textarea {
    min-height: 110px;
    resize: vertical;
}

/* Stars */
.modern-stars {
    display: flex;
    gap: 10px;
    font-size: 34px;
    cursor: pointer;
}

.modern-stars .star {
    color: #ddd;
    transition: color .2s ease, transform .15s ease;
}

.modern-stars .star:hover {
    transform: scale(1.1);
}

.modern-stars .star.active {
    color: #f5b301;
}

/* Upload */
.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.upload-grid input {
    width: 100%;
}

/* Submit */
.modern-submit-btn {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #fff;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.modern-submit-btn:hover {
    background: #840028;
}

/* Mobile */
@media (max-width: 576px) {
    /* .modern-review-card {
        padding: 20px;
    } */
    .upload-grid {
        grid-template-columns: 1fr;
    }
}


/*----------------------------------------add review code end------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------seo content section-----------------------------------------------------------------------------------------------------*/

.seo-content {
  text-align:center;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.popular-searches {
  padding: 20px 0;
}

.popular-searches h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.search-group {
  margin-bottom: 20px;
}

.search-group h4 {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

.search-group a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.search-group a:hover {
  text-decoration: underline;
}
/*----------------------------------------------seo content section end-------------------------------------------------------------------------------------------------*/

/*--------------------------------------Footer css-------------------------------------------------------------------------------------------------*/
.site-footer {
    height: 800px;
    background: #f4e3c6 url('/frontend/assets/images/category/4cols/footer.webp') no-repeat center bottom;
    background-size: cover;
    padding: 40px 0 0;
    font-size: 14px;
}

/* DESKTOP */
.footer-desktop {
    display: block;
}

.footer-title {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
}

/* MOBILE */
.footer-mobile {
    display: none;
}

.footer-accordion {
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 10px;
    text-align: left;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-btn .icon {
    transition: transform 0.3s ease;
}

.accordion-btn.active .icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    flex-direction: column;
    padding: 0 10px 10px;
}

.accordion-content a {
    padding: 6px 0;
    text-decoration: none;
    color: #555;
}

.signup-save {
    padding: 16px 10px;
    font-weight: 600;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.footer-credit {
    padding: 20px 10px;
    font-size: 12px;
    text-align: center;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-desktop {
        display: none;
    }
    .footer-mobile {
        display: block;
    }
}

/*--------------------------------------Footer css end---------------------------------------------------------------------------------------------*/


/*---------------------------------------web banner section----------------------------------------------------------------------------------------*/
 .promobanner {
    width: 100%;
    text-align: center;   /* center image if smaller than screen */
}

.promobanner img {
    width: auto;          /* keep original width */
    height: auto;         /* keep original height */
    max-width: 100%;      /* prevent overflow on small screens */
    display: inline-block;
}
/*---------------------------------------web banner section end-------------------------------------------------------------------------------------*/


/*---------------------------------------footer before seo or about section-------------------------------------------------------------------------*/

/*---------------------------------------------contact us ------------------------------------------------------------------------------------------*/

.contact-section {
    padding: 60px 0;
    background: #fafafa;
}

.contact-section h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* FORM */
.contact-form-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.contact-btn:hover {
    background: #333;
}

/* INFO BOX */
.contact-info-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-item {
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #25D366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* MAP */
.contact-map {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-section h1 {
        font-size: 24px;
    }
}

