.top-header {
    background: #8a1344;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 5%;
    /* border-bottom: 1px solid #ddd; */
    /* background-color: #fff; */
    position: relative !important;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 999999;
    max-height: 0;
}



.logo {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.logo img {
    height: 60px;
    margin-right: 10px;
    bottom: 10px;
}

.menu {
    display: flex;
    gap: 25px;
    margin: auto;
    text-transform: capitalize;
}

.menu-item {
    position: static;
    cursor: pointer;
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 35px;
}

/* .menu-item:hover {
    position: static;
    cursor: pointer;
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}
  */

/* .menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: black;
    transition: width 0.3s ease;
} */

.menu-item:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
    top: 0;
    left: 50%;
    display: none;
    flex-direction: column;
    /* padding: 25px 15px 15px 15px; */
    z-index: 100;
    /* width: 19em; */
    max-width: 250px;
    transform: translateX(-50%);
    text-align: left;
}

.menu-item-dropdown {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    width: 100%;
}

.menu-item-dropdown div {
    color: #666666;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    padding: 5px;
    width: max-content;
}

.menu-item-dropdown div a {
    /* padding: 10px 20px; */
    color: #8a1344 !important;
}

.menu-item-dropdown div:hover {
    color: #000;
    background-color: var(--input-bg);
}

.menu-item:hover .dropdown {
    display: flex;
}

.menu-item i {
    font-size: 10px;
    margin-left: 4px;
}

.menu-item {
    /* margin: 0 !important; */
    font-weight: 600 !important;
}

.icons {
    display: flex;
    align-items: center;
    gap: 10px;
    top: 20px;
    position: relative;

}

.card {
    position: relative !important;
    top: 10px;
    margin-bottom: 10px;
}

.icon-btn {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    padding-inline: 10px;
    z-index: 1;
}



.hint--box-content {
    position: relative;
    /* width: 1px; */
    width: fit-content;
    min-width: 1%;
}

.hint--box-content[area-label]::after {
    content: attr(area-label);
    position: absolute;
    top: 0;
    left: -100%;
    color: #fff;
    font-size: 15px;
    /* min-width: 80px; */
    max-width: max-content;
    font-weight: 500;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    opacity: 0;
    /* transition: opacity 0.3s, visibility 0.3s, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); */
    /* transition: all 1s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); */
    transition: none;
    visibility: hidden;
    background-color: #000;
    transform: translate(-75%, 0);
}

.hint--box-content::before {
    content: '';
    position: absolute;
    border: 7px solid transparent;
    border-bottom-color: #000;
    top: -5px;
    left: -50%;
    visibility: hidden;
    transition: none;
    /* transition: opacity 0.4s, visibility 0.4s, transform 0.4s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); */
    transform: translate(-270%, 0);
    opacity: 0;
}


.icon-btn.hint--box:hover+.hint--box-content::after,
.icon-btn.hint--box:hover+.hint--box-content::before {
    visibility: visible;
    opacity: 1;
    transform: translate(-75%, 50%);
    transition: all .45s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.icon-btn.hint--box:hover+.hint--box-content::before {
    transform: translate(-270%, 70%);
}




.icon-badge {
    position: absolute;
    top: -8px;
    right: -6px;
    background-color: #8a1344;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 5px;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10006;

}

.modal-overlay.active {
    display: flex;
}


.modal {
    background: white;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    width: 500px;
    max-width: calc(100vw - 55px);
    text-align: center;
    opacity: 0;
    transform: translateY(10%);
    transition: all 0.25s ease-in-out;
    padding: 20px;
    z-index: 1006;
}

.modal.active {
    /* transform: translateY(0); */
    /* height: 100vh;
    overflow: scroll; */
    opacity: 1;
}


.modal h2 {
    margin-top: 0;
    font-size: 20px;
    font-family: var(--font-fm2);
    font-weight: 400;
}

.login_modal_title {
    margin-bottom: 30px;
}

.login_modal_title p {
    font-size: 15px;
    color: var(--para-color);
}

.login_modal_title p span {
    color: var(--normal-txt-color);
    cursor: pointer;
}



.login_modal_input input {
    width: 100%;
    padding-inline: 18px;
    height: 45px;
    border-radius: var(--input-normal-rounded);
    border: none;
    background-color: var(--input-bg);
    font-size: 15px;
    outline: none;
    transition: all 0.55s ease-in-out;
}

.login_modal_input input:focus {
    background-color: #fff;
    border: 1px solid #000;
}


.login_modal_input input::placeholder {
    color: var(--input-placeholder-txt-color);
}

.login_modal_password_input {
    position: relative;
}

.k_eye_icon {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    height: 100%;
    cursor: pointer;
}

.k_eye_icon i {
    color: #666;
}

.k_eye_icon:hover i {
    color: var(--normal-txt-color);
}


.login_modal_checkbox input[type='checkbox'] {
    /* appearance: none; */
}


.login_modal_checkbox h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--para-color);
}






.login_modal_checkbox_container {
    margin-block: 25px;
}

.k_forget_password_text h3 {
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.login_btn button {
    background: #8a1344;
    width: 100%;
    border: none;
    border-radius: var(--input-normal-rounded);
    padding: 10px 20px;
    cursor: pointer;
    min-height: 45px;
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
}

.login_btn button p {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.login_btn button:hover {
    transform: scale(1, 1.2);
}



.login-modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .17);
}

.login-modal-close-btn:hover {
    background-color: black;
    color: white;
}


.top-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
    animation: slideDown 0.4s ease forwards;
}

.top-search-overlay.active {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.top-search-bar {
    width: 100%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 160px;
    display: flex;
    padding-inline: 5%;
    flex-direction: column;
    /* justify-content: center; */
}

.search-close-btn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 28px;
    transition: color 0.25s cubic-bezier(.645, .045, .355, 1);
    cursor: pointer;
}

.search-close-btn:hover {
    color: #888888;
}


.search-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.search-left img.search-logo {
    height: 60px;
}

.search-center {
    width: 50%;
    max-width: 50%;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.search-container {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    min-height: 45px;
    width: 100%;
}



.search-category {
    padding: 10px;
    height: 40px;
    width: 150px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--main-font-family);
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    appearance: none;
    background: none;
    z-index: 1;
    cursor: pointer;
}

/* 
.search-container::after {
    content: "";
    position: absolute;
    left: 130px;
    top: 51%;
    transform: translateY(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #888888;
    
    width: 0;
    height: 0;
    z-index: 0;
} */

.search-h-line {
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: #e2e0e0;
}


.search-input {
    /* flex: 1; */
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    padding-left: 165px;
    background-color: #f2f2f2;
    vertical-align: middle;
}

.search-input:focus {
    background-color: #ffffff;
}



.search-button {
    background-color: #8a1344;
    color: white;
    border: none;
    height: 100%;
    width: 45px;
    position: absolute;
    right: 0;
}

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

.search-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;

}

.search-right i {
    font-size: 20px;
    position: relative;
}


/* //serach-result  */


.search-result {
    display: none;
    flex: 1 1 25%;
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #8a1344;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px 5px;
}

.popular-searches {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    font-size: 16px;
    color: #666666;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.popular-searches a {
    text-decoration: underline;
    color: #000;
    text-underline-offset: 1px;
    font-weight: 500;
    transition: color 0.25s cubic-bezier(.645, .045, .355, 1);
}

.popular-searches a:hover {
    color: #666666;
    text-decoration-color: #666666;
}


.m-show {
    display: none;
}

/* Responsive */

.view {
    display: flex;
    align-items: anchor-center;
    /* justify-content: center; */
    margin-bottom: 20px;
    margin-top: 10px;
}


@media (max-width: 1080px) {
    .m-hide {
        display: none;
    }

    .menu-item {
        display: none;
    }

    /* .menuss {
        display: none;
    } */
}

@media (max-width: 768px) {

    /* .search-content {
        flex-direction: column;
        align-items: flex-start;
    } */
    .slider-container {
        padding: 0 10px;
        /* margin-top: 90px !important; */
    }

    .logo {
        margin-right: 0;
    }

    .view {
        display: block !important;

    }

    .popular-searches {
        text-align: start;
        margin: 0;
    }

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

    .search-right {
        justify-content: flex-start;
    }

    .search-container {
        width: 100%;
    }



    .icons.m-show {
        display: flex;
    }


}


/* =======> k_code ==> */
a {
    text-decoration: none;
    color: var(--normal-txt-color);
}

.hamberger-menu-icon {
    display: none;
    padding-inline: 15px;
    cursor: pointer;
}

.menu-sidebar-container {
    display: none;
}

/* // */
.bd-icons {
    display: flex;
    gap: 15px;
}


/* // */
.bd-icon-btn {
    cursor: pointer;
    position: relative;
    font-size: 20px;
    padding-inline: 10px;
}

/* // */
.bd-icon-badge {
    position: absolute;
    top: -8px;
    right: -6px;
    background-color: #8a1344;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 5px;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.signup-input-box {
    display: flex;
    gap: 10px;
}

.hide {
    display: none !important;
}




@media (max-width:1080px) {

    .header {
        padding-inline: 5%;
    }

    .hamberger-menu-icon {
        display: block;
        transform: translateX(-15px);
    }

    .menu {
        display: none;
    }

    /* .logo img {
        transform: translateX(50%);
    } */

    .menu-sidebar-container {
        display: block;
        position: fixed;
        width: 380px;
        max-width: calc(100vw - 55px);
        background-color: #ffffffd4;
        backdrop-filter: blur(10px);
        height: 100%;
        left: 0;
        visibility: hidden;
        top: 0;

        transform: translateX(-100%);
        transition: all 0.4s ease-in-out;
    }

    .menu-sidebar-container.active {
        transform: translateX(0);
        visibility: visible;
        z-index: 999999;
    }


    .menu-sidebar-content {
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; */
        height: 100%;
        /* overflow-y: auto; */
        /* scrollbar-width: thin; */
    }

    .close-menu-sidebar {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
    }

    .close-menu-sidebar i {
        font-size: 20px;
        color: #8a1344;
    }

    .sidebar-ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        padding: 20px;
        text-transform: capitalize;
    }




    .sidebar-ul a {
        display: inline-block;
        text-decoration: none;
        color: var(--normal-txt-color);
        font-size: 16px;
        width: 100%;
        padding: 5px 10px;
        border-radius: 10px;
        border-bottom: 1px solid #8d0e43;
        font-weight: var(--normal-font-weight);
    }

    .sidebar-ul li a:hover {
        background-image: linear-gradient(86deg, rgb(138 19 68 / 37%), rgb(138 19 68 / 13%));
        border-radius: 10px;
        border: none;
    }

    .sidebar-bottom-content {
        padding: 0 20px 65px;
        /* min-height: 45%; */
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: end;
    }

    .mobile-menu-my-account {
        display: flex;
        align-items: center;
        gap: 10px;
        background-image: linear-gradient(86deg, rgb(138 19 68 / 37%), rgb(138 19 68 / 13%));
        border-radius: 10px;
        /* padding-bottom: 0 !important; */
        padding: 10px;
    }

    .menu-sidebar-content h3 {
        font-weight: 500;
        font-size: 16px;
        margin-bottom: 0;
    }

    .mobile-menu-my-account i {
        font-size: 14px;
    }

    .m-btn {
        background-color: white;
        width: 100%;
        cursor: pointer;
    }


    .m-btn-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .m-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 45px;
        padding-block: 15px;
        border-radius: var(--mobile-border-radius);
        font-size: 16px;
        color: var(--normal-txt-color);
        font-weight: var(--normal-font-weight);
        transition: background, color;
        transition-duration: 0.3s;
        transition-timing-function: ease-in-out;

    }

    .m-login-btn a {
        background-color: var(--btn-bg-color);
        color: var(--btn-txt-color);
    }

    .m-register-btn a:hover {
        background-color: var(--btn-bg-color);
        color: var(--btn-txt-color);
    }

    .m-sd-footer-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .m-sd-wishlist-content {
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease-in-out;
    }

    .m-heart-icon i {
        font-size: 22px;
    }



    /* .k-sd-social-link-container {
        display: flex;
        fle
    } */

    .social-link:first-child {
        padding-inline-start: 0;
    }

    .social-link {
        padding-inline: 12px;
    }

    .sidebar-top-content {
        transition: all 0.3s ease-in-out;
    }

    .m-sd-wishlist-content:hover,
    .sidebar-top-content a:hover {
        color: var(--hover-txt-color);
    }

    /* .m-sd-wishlist-content a:hover i {
        color:var(--hover-txt-color);
    } */
    .dropdown-pli {
        position: relative;
    }

    .sd-dropdown-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .sd-dropdown-icon i {
        transition: all 0.3s ease-in-out;
        color: #9e0a48;
    }

    .sd-dropdown-icon.active i {
        transform: rotate(180deg);
        color: #9e0a48;
    }

    /* .sd-dropdown-icon:hover {
        background-color: var(--hover-txt-color);
        color: var(--normal-txt-color);

    } */


    .dropdown-menu {
        list-style: none;
        overflow: hidden;
        height: 0;
        transition: height 0.3s ease-in-out;

    }

    .dropdown-menu.active {
        height: 100px;

    }

    .dropdown-menu a {
        padding: 6px 12px;
        color: #91335a !important;
        font-weight: 400;
        border: none;
    }


}



@media (max-width:1080px) {

    .logo img {
        /* transform: translateX(0); */
        height: 50px;
    }
}

@media (max-width:768px) {

    .varital {
        display: block !important;

    }

    .slide img {

        /* object-fit: contain !important; */
        height: 300px !important;
    }

    .slide {

        height: 100% !important;
    }

}


@media (max-width:467px) {

    .login_modal_checkbox_container {
        row-gap: 15px;
    }

}


.view_all {
    width: 200px !important;
}

.slider-wrapper {
    position: relative;
    top: 110px;
    bottom: 20px;
    margin: 10px;
    overflow: hidden;
    border-radius: 12px;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); */
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 600px;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(138, 19, 69, 0.945);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    height: 40px;
    width: 40px;
    font-size: medium;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

/* 
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: -5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.product-card:hover {
    transform: translateY(-5px);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #8a1344;
    color: #fff;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 5px;
}

.product-card img {
    width: 200px;
    height: 100%;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 16px;
    margin: 12px 0 5px;
    color: #333;
} */

a {
    text-decoration: none !important;
    color: rgb(138 19 68) !important;

}

/* 
.product-card p {
    color: #8a1344;
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0 12px;
}

.product-card button {
    background: #8a1344;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-card button:hover {
    background: #923a5e;
} */

.main-container {
    margin: 50px !important;
}

.slider-container {
    width: 95%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

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

.card {
    min-width: 220px;
    margin: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #8a1344;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 9999;
}

.card h6 {
    margin: 10px 0 5px;
}

.card p {
    font-weight: bold;
    color: #b33a3a;
    margin: 5px 0;
}

.btn {
    background: #8a1344;
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.btn:hover {
    background: #8a1344;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive */
@media(max-width: 768px) {
    .product-card h3 {
        font-size: 14px;
    }

    .card {
        min-width: min-content !important;
    }

    .main-container {
        margin: 0 !important;
    }

    .one {
        display: flex;
    }

    .slider-track {
        display: block !important;
    }

    /* .product-card img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
    }

    .product-card p {
        font-size: 16px;
    } */
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #8a1344 !important;
}


.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover .image-wrapper img {
    transform: scale(1.05);
}