* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #fff;
    overflow-x: hidden;
}

.uni-container {
    width: 100%;
    max-width: 96%;
    min-width: 96%;
    margin: 0 auto;
}
/* header */
.header-top {
    background: #000;
    padding: 8px;
}
.hd-top-text {
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.bottom-header-wrp {
    /* box-shadow: 0px 1px 8px -2px rgb(0, 0, 0.1); */
    /* border-bottom: 1px solid rgb(182, 178, 178); */
    position: relative;
}
.header-bttom {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo-wrp {
    width: 150px;
    padding-bottom: 20px;
}
.logo-text {
    text-decoration: none;
    color: #000;
    font-size: 28px;
    font-weight: 800;
}
.logo-wrp {
    height: 52px;
}
.logo-wrp img {
    width: 100%;
}
.nav-link-rm {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.header-bottom-left {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-wrp {
    display: flex;
    gap: 14px;
}
/* .nav-item {
    padding-bottom: 20px;
} */
.nav-item:hover {
    border-bottom: 1px solid black;
}
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 330px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.35s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 160px;
}
.dropdown-left a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
.dropdown-left a:hover {
    text-decoration: underline;
}

.dropdown-right img {
    width: 280px;
    object-fit: cover;
}
.header-bottom-right {
    display: flex;
    gap: 16px;
}
.header-bottom-right i {
    color: #fff;
}
.header-bottom-right {
    display: flex;
    align-items: center;
}
.icon-link-nv {
    text-decoration: none;
    color: #000;
}
/* Hide hamburger on desktop */
.hamburger {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

/* MOBILE SLIDE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -260px; /* hidden */
    width: 260px;
    height: 100%;
    background: #fff;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: #000;
    font-size: 17px;
}

.close-btn {
    font-size: 22px;
    cursor: pointer;
    align-self: flex-end;
}

/* footer */
.footer-ag {
    background: #1f1c1c;
    color: #fff;
    padding: 40px 0px;
}

.footer-top-ag {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col-ag {
    flex: 1;
    min-width: 220px;
}

.footer-title-ag {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-links-ag {
    list-style: none;
    padding: 0;
}

.footer-links-ag li {
    margin-bottom: 10px;
}

.footer-links-ag a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}

.footer-links-ag a:hover {
    text-decoration: underline;
}

/* Newsletter */
.newsletter-box-ag {
    display: flex;
    margin-top: 20px;
}

.newsletter-input-ag {
    padding: 12px;
    width: 70%;
    border: 1px solid #777;
    background: transparent;
    color: white;
    outline: none;
}

.newsletter-btn-ag {
    padding: 12px 20px;
    background: #222;
    color: white;
    border: 1px solid #777;
    cursor: pointer;
}

.social-icons-ag {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    font-size: 22px;
}

.vertical-line-ag {
    width: 1px;
    background: #555;
}

/* Bottom */
.footer-bottom-ag {
    margin-top: 60px;
    text-align: center;
}

.payment-icons-ag {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-icons-ag img {
    height: 30px;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
}

/* .footer {
    padding: 20px 0px;
    background: #e9e9e9;
    
}


.footer-accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #bbb;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0px;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
}


.accordion-content {
     padding: 20px 0px;
    display: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin: 6px 0;
    cursor: pointer;
}

.footer-col p:hover {
    text-decoration: underline;
}


.footer-bottom {
    margin-top: 30px;
}

.footer-bottom h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.social-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.social-row p {
    font-weight: 600;
}

.social-row .icons i {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
} */

@media (max-width: 768px) {
    /* .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    } */
    .footer-ag {
        padding: 40px 20px;
    }

    .footer-top-ag {
        flex-direction: column;
        gap: 30px;
    }

    .vertical-line-ag {
        display: none;
    }
    .nav-wrp {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .social-row {
        justify-content: flex-start;
    }
    .logo-wrp {
        height: 50px;
    }
    .logo-wrp img {
        height: 100%;
    }
}

.made-carousel {
    position: relative;
    margin-left: auto;
}

.made-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.made-slider::-webkit-scrollbar {
    display: none;
}

.offer-card-mn {
    flex: 0 0 25%;
    cursor: pointer;
}

.made-prev,
.made-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.made-prev {
    left: -15px;
}

.made-next {
    right: -15px;
}

.fst-normal {
    font-style: normal !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fw-bolder {
    font-weight: 700 !important;
}

.fs-1 {
    font-size: calc(1.425rem + 2.1vw) !important;
}

.fs-2 {
    font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-3 {
    font-size: calc(1.3125rem + 0.75vw) !important;
}

.fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-6 {
    margin: 4rem !important;
}

.m-7 {
    margin: 6rem !important;
}

.m-8 {
    margin: 8rem !important;
}

.m-9 {
    margin: 10rem !important;
}

.m-10 {
    margin: 12rem !important;
}

.m-11 {
    margin: 14rem !important;
}

.m-12 {
    margin: 16rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
}

.mx-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
}

.mx-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
}

.mx-9 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
}

.mx-10 {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
}

.mx-11 {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
}

.mx-12 {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.my-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.my-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
}

.my-9 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
}

.my-10 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
}

.my-11 {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
}

.my-12 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

.mt-7 {
    margin-top: 6rem !important;
}

.mt-8 {
    margin-top: 8rem !important;
}

.mt-9 {
    margin-top: 10rem !important;
}

.mt-10 {
    margin-top: 12rem !important;
}

.mt-11 {
    margin-top: 14rem !important;
}

.mt-12 {
    margin-top: 16rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-6 {
    margin-right: 4rem !important;
}

.me-7 {
    margin-right: 6rem !important;
}

.me-8 {
    margin-right: 8rem !important;
}

.me-9 {
    margin-right: 10rem !important;
}

.me-10 {
    margin-right: 12rem !important;
}

.me-11 {
    margin-right: 14rem !important;
}

.me-12 {
    margin-right: 16rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.mb-7 {
    margin-bottom: 6rem !important;
}

.mb-8 {
    margin-bottom: 8rem !important;
}

.mb-9 {
    margin-bottom: 10rem !important;
}

.mb-10 {
    margin-bottom: 12rem !important;
}

.mb-11 {
    margin-bottom: 14rem !important;
}

.mb-12 {
    margin-bottom: 16rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-6 {
    margin-left: 4rem !important;
}

.ms-7 {
    margin-left: 6rem !important;
}

.ms-8 {
    margin-left: 8rem !important;
}

.ms-9 {
    margin-left: 10rem !important;
}

.ms-10 {
    margin-left: 12rem !important;
}

.ms-11 {
    margin-left: 14rem !important;
}

.ms-12 {
    margin-left: 16rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.m-n6 {
    margin: -4rem !important;
}

.m-n7 {
    margin: -6rem !important;
}

.m-n8 {
    margin: -8rem !important;
}

.m-n9 {
    margin: -10rem !important;
}

.m-n10 {
    margin: -12rem !important;
}

.m-n11 {
    margin: -14rem !important;
}

.m-n12 {
    margin: -16rem !important;
}

.mx-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
}

.mx-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
}

.mx-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
}

.mx-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
}

.mx-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
}

.mx-n6 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
}

.mx-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
}

.mx-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
}

.mx-n9 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
}

.mx-n10 {
    margin-right: -12rem !important;
    margin-left: -12rem !important;
}

.mx-n11 {
    margin-right: -14rem !important;
    margin-left: -14rem !important;
}

.mx-n12 {
    margin-right: -16rem !important;
    margin-left: -16rem !important;
}

.my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
}

.my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
}

.my-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
}

.my-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
}

.my-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
}

.my-n6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
}

.my-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
}

.my-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
}

.my-n9 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
}

.my-n10 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
}

.my-n11 {
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
}

.my-n12 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
}

.mt-n1 {
    margin-top: -0.25rem !important;
}

.mt-n2 {
    margin-top: -0.5rem !important;
}

.mt-n3 {
    margin-top: -1rem !important;
}

.mt-n4 {
    margin-top: -1.5rem !important;
}

.mt-n5 {
    margin-top: -3rem !important;
}

.mt-n6 {
    margin-top: -4rem !important;
}

.mt-n7 {
    margin-top: -6rem !important;
}

.mt-n8 {
    margin-top: -8rem !important;
}

.mt-n9 {
    margin-top: -10rem !important;
}

.mt-n10 {
    margin-top: -12rem !important;
}

.mt-n11 {
    margin-top: -14rem !important;
}

.mt-n12 {
    margin-top: -16rem !important;
}

.me-n1 {
    margin-right: -0.25rem !important;
}

.me-n2 {
    margin-right: -0.5rem !important;
}

.me-n3 {
    margin-right: -1rem !important;
}

.me-n4 {
    margin-right: -1.5rem !important;
}

.me-n5 {
    margin-right: -3rem !important;
}

.me-n6 {
    margin-right: -4rem !important;
}

.me-n7 {
    margin-right: -6rem !important;
}

.me-n8 {
    margin-right: -8rem !important;
}

.me-n9 {
    margin-right: -10rem !important;
}

.me-n10 {
    margin-right: -12rem !important;
}

.me-n11 {
    margin-right: -14rem !important;
}

.me-n12 {
    margin-right: -16rem !important;
}

.mb-n1 {
    margin-bottom: -0.25rem !important;
}

.mb-n2 {
    margin-bottom: -0.5rem !important;
}

.mb-n3 {
    margin-bottom: -1rem !important;
}

.mb-n4 {
    margin-bottom: -1.5rem !important;
}

.mb-n5 {
    margin-bottom: -3rem !important;
}

.mb-n6 {
    margin-bottom: -4rem !important;
}

.mb-n7 {
    margin-bottom: -6rem !important;
}

.mb-n8 {
    margin-bottom: -8rem !important;
}

.mb-n9 {
    margin-bottom: -10rem !important;
}

.mb-n10 {
    margin-bottom: -12rem !important;
}

.mb-n11 {
    margin-bottom: -14rem !important;
}

.mb-n12 {
    margin-bottom: -16rem !important;
}

.ms-n1 {
    margin-left: -0.25rem !important;
}

.ms-n2 {
    margin-left: -0.5rem !important;
}

.ms-n3 {
    margin-left: -1rem !important;
}

.ms-n4 {
    margin-left: -1.5rem !important;
}

.ms-n5 {
    margin-left: -3rem !important;
}

.ms-n6 {
    margin-left: -4rem !important;
}

.ms-n7 {
    margin-left: -6rem !important;
}

.ms-n8 {
    margin-left: -8rem !important;
}

.ms-n9 {
    margin-left: -10rem !important;
}

.ms-n10 {
    margin-left: -12rem !important;
}

.ms-n11 {
    margin-left: -14rem !important;
}

.ms-n12 {
    margin-left: -16rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.p-6 {
    padding: 4rem !important;
}

.p-7 {
    padding: 6rem !important;
}

.p-8 {
    padding: 8rem !important;
}

.p-9 {
    padding: 10rem !important;
}

.p-10 {
    padding: 12rem !important;
}

.p-11 {
    padding: 14rem !important;
}

.p-12 {
    padding: 16rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.px-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
}

.px-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
}

.px-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
}

.px-9 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
}

.px-10 {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
}

.px-11 {
    padding-right: 14rem !important;
    padding-left: 14rem !important;
}

.px-12 {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.py-9 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.py-10 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
}

.py-11 {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
}

.py-12 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pt-6 {
    padding-top: 4rem !important;
}

.pt-7 {
    padding-top: 6rem !important;
}

.pt-8 {
    padding-top: 8rem !important;
}

.pt-9 {
    padding-top: 10rem !important;
}

.pt-10 {
    padding-top: 12rem !important;
}

.pt-11 {
    padding-top: 14rem !important;
}

.pt-12 {
    padding-top: 16rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pe-6 {
    padding-right: 4rem !important;
}

.pe-7 {
    padding-right: 6rem !important;
}

.pe-8 {
    padding-right: 8rem !important;
}

.pe-9 {
    padding-right: 10rem !important;
}

.pe-10 {
    padding-right: 12rem !important;
}

.pe-11 {
    padding-right: 14rem !important;
}

.pe-12 {
    padding-right: 16rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.pb-6 {
    padding-bottom: 4rem !important;
}

.pb-7 {
    padding-bottom: 6rem !important;
}

.pb-8 {
    padding-bottom: 8rem !important;
}

.pb-9 {
    padding-bottom: 10rem !important;
}

.pb-10 {
    padding-bottom: 12rem !important;
}

.pb-11 {
    padding-bottom: 14rem !important;
}

.pb-12 {
    padding-bottom: 16rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.ps-6 {
    padding-left: 4rem !important;
}

.ps-7 {
    padding-left: 6rem !important;
}

.ps-8 {
    padding-left: 8rem !important;
}

.ps-9 {
    padding-left: 10rem !important;
}

.ps-10 {
    padding-left: 12rem !important;
}

.ps-11 {
    padding-left: 14rem !important;
}

.ps-12 {
    padding-left: 16rem !important;
}

.add-to-cart-btn {
    color: #000;
    background: #f6f6f6;
    z-index: 1;
    padding: 0.625rem;
    position: absolute;
    inset-inline-end: 0;
    inset-block-end: -40px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition:
        opacity 0.2s ease-in-out,
        transform 0.2s ease-in-out;
}

@media screen and (pointer: fine) {
    .add-to-cart-btn {
        opacity: 0;
        transition:
            opacity 0.2s ease-in-out,
            transform 0.2s ease-in-out;
        transform: translateY(10px);
    }

    .clx_itemBox_u71d:hover .add-to-cart-btn {
        opacity: 1;
        transform: translateY(0);
    }
    .add-to-cart-btn {
        background: #f6f6f6;
        color: rgb(0 0 0);
        z-index: 1;
        padding: 0.625rem;
        position: absolute;
        inset-block-end: 111px;
        inset-inline-end: 0;
        width: 100%;
    }

    .add-to-cart-btn.enquire-now {
        inset-block-end: 126px;
    }

    .add-to-cart-btn.no-varient {
        inset-block-end: 46px;
    }

    .add-to-cart-btn.enquire-now.no-varient {
        inset-block-end: 46px;
    }
}

@media (max-width: 1025px) {
    .offer-card-mn {
        flex: 0 0 33.333333%;
    }
}
@media (max-width: 768px) {
    .offer-card-mn {
        flex: 0 0 50%;
    }
}
@media (max-width: 500px) {
    .offer-card-mn {
        flex: 0 0 100%;
    }
}

.thumb-list-ad img.active {
    border-color: black;
}

.feature-col i {
    font-size: 5px;
    vertical-align: middle;
}

.offer-card-mn:hover {
    text-decoration: underline;
}

.trending-now-card {
    flex: 0 0 33.33333%;
    cursor: pointer;
}

.trending-now-card:hover {
    text-decoration: underline;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    z-index: 2;
}

.toggle-password:hover {
    color: #000;
}

.form-control.is-invalid + .toggle-password {
    right: 40px;
    top: 34%;
}

.sign-up-fp-row {
    width: 420px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.btn-icon {
    padding: 0;
    border: none;
    background: transparent;
}

.wishListModal .modal-dialog {
    max-width: 1000px;
    width: 1000px;
}

.wishListModal .modal-dialog .modal-content .modal-header {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px;
    flex-shrink: 0;
    background-color: #000000;
    color: #fff;
}

.wishListCloseBtn {
    filter: invert(1);
    font-size: 10px;
    font-weight: 700;
}

.wishListEmail {
    vertical-align: text-bottom;
    cursor: pointer;
}

.my-wishlist-header-wrp {
    position: relative;
    padding: 45px 50px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 21px;
}

.my-wishlist-header {
    color: #000;
    flex-grow: 1;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.1em;
    margin-right: 50px;
    margin-bottom: 0px;
}

.my-wishlist-header-btn {
    width: auto;
    z-index: auto;
    display: inline-block;
    background: 0;
    border: 0;
    box-shadow: none;
    clear: none;
    cursor: pointer;
    font-family: inherit;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    height: auto;
    letter-spacing: normal;
    line-height: normal;
    margin: 0;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    opacity: 1;
    padding: 0;
    position: static;
    text-align: inherit;
    text-decoration: none;
    text-transform: none;
    transform: none;
    visibility: visible;
    font-size: 20px;
}
.wishlist-menu {
    position: absolute;
    top: 75%;
    right: 100px;
    transform: translateY(-50%);
    background: #fff;
    min-width: 180px;
    padding: 12px 0;
    border-radius: 2px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1055;
}

.wishlist-menu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
}

.wishlist-menu-item {
    width: 100%;
    padding: 10px 18px;
    background: none;
    border: none;
    color: red;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
}

.wishlist-menu-item:hover {
    background: #f5f5f5;
}

.wishlist-separator {
    height: 1px;
    background: #000000;
    margin: 0 45px 0;
}

.wishlist-row {
    margin: auto;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    margin-bottom: 35px;
}

.wishlist-col {
    position: relative;
    margin-bottom: 20px;
}

.wishlist-remove {
    position: absolute;
    top: 8px;
    right: 10px;

    width: 28px;
    height: 28px;

    border: none;
    border-radius: 2px;

    background: none;
    font-size: 18px;
    line-height: 28px;
    text-align: center;

    color: #9a9a9a;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        color 0.2s ease;
    font-size: 15px;
}

.wishlist-remove:hover {
    color: #666;
}

.btn-lg.atc {
    font-weight: 700;
    padding: 5px;
    text-transform: uppercase;
}
.btn-lg.so {
    font-weight: 700;
    padding: 5px;
    text-transform: uppercase;
    pointer-events: none;
    background: #a8a8a9 !important;
    color: #ffffff;
}

.clx_wishBtn_qp33.pd {
    top: 0;
    right: 0;
    position: relative;
}

.add-to-cart-btn:disabled {
    background-color: #c8c8c8;
    cursor: not-allowed;
    color: #f6f6f6;
}

.add-cart-btn-ad:disabled {
    background-color: #c8c8c8;
    cursor: not-allowed;
    color: #f6f6f6;
}

.empty-cart-ct {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 15px;
}

.empty-cart-box-ct {
    text-align: center;
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

.empty-cart-icon-ct {
    font-size: 50px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-cart-title-ct {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
}

.empty-cart-text-ct {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.empty-cart-btn-ct {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.empty-cart-btn-ct:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

.form-check-input.custom-checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border-width: 1px;
    border-color: rgb(0 0 0);
    border-radius: 2px;
    transition:
        background-color 0.2s ease-in-out,
        border-color 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
}

.form-check-input.custom-checkbox:checked {
    background-color: rgb(0 0 0);
    border-color: rgb(0 0 0);
}

.addAddressModal .modal-content {
    border-radius: 0;
}

.addAddressModal .modal-dialog {
    max-width: 450px;
}

.addAddressModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 24px;
}

.addAddressModal .modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 24px;
}

.addAddressModal .modal-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto;
}

.addAddressModal .btn-close {
    margin: 0;
}

.addAddressModal .input-sg {
    padding: 10px;
}

.address-section {
    margin-bottom: 20px;
}

.link {
    background: linear-gradient(to right, currentColor, currentColor) 0
        min(100%, 1.35em) / 100% 1px no-repeat;
    text-decoration: none;
    transition: background-size 0.3s ease-in-out;
    border: none;
}

@supports (height: 1lh) {
    .link {
        background: linear-gradient(to right, currentColor, currentColor) 0
            min(100%, 1.2lh) / 100% 1px no-repeat;
    }
}

@media screen and (pointer: fine) {
    .link:hover {
        background-size: 0 1px;
    }
}

.empty-cart-text-ct.address {
    font-size: 18px;
}

button.plus-icon-ct {
    border: none;
    background: transparent;
    font-size: 20px;
}

button.plus-icon-ct:hover {
    color: #808080;
}

.coupon-wrp {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coupon-card-ct {
    border: 1px dashed #dcdcdc;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.coupon-top-ct {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-name-ct {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.coupon-code-ct {
    font-size: 14px;
    color: #666;
}

.coupon-discount-ct {
    background: #f0f8ff;
    color: #007bff;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

.coupon-middle-ct {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 14px;
    color: #444;
}

.apply-coupon-btn-ct {
    width: 100%;
    border: none;
    background: #000;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.apply-coupon-btn-ct:hover {
    background: #333;
}

/* Locked Coupon */
.locked-coupon-ct {
    opacity: 0.65;
    background: #fafafa;
}

.locked-discount-ct {
    background: #f1f1f1;
    color: #888;
}

.coupon-lock-info-ct {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
}

.locked-btn-ct {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.locked-btn-ct:hover {
    background: #ccc;
}

.coupon-input-ct {
    position: relative;
    margin-bottom: 20px;
}

.coupon-input-field-ct {
    padding-right: 90px; /* space for button */
    height: 44px;
    font-size: 14px;
}

.coupon-apply-btn-ct {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    padding: 0 14px;
    border: none;
    border-radius: 6px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.coupon-apply-btn-ct:hover {
    background: #333;
}

.applied-coupon-row-ct {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.applied-coupon-right-ct {
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-amount-ct {
    color: #28a745;
    font-weight: 600;
}

.remove-coupon-btn-ct {
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.remove-coupon-btn-ct:hover {
    color: #dc3545;
}

.applied-coupon-modal-ct {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.applied-text-ct {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
}

.remove-coupon-btn-ct-modal {
    background: transparent;
    border: none;
    font-size: 14px;
    color: #dc3545;
    cursor: pointer;
    padding: 0;
}

.remove-coupon-btn-ct-modal:hover {
    text-decoration: underline;
}

.current-coupon-banner-ct {
    background: #e6f4ea;
    color: #1e7e34;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.current-coupon-banner-ct button {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
}
.ramro-checkout-modal {
    border-radius: 0;
    font-family: inherit;
}

.checkout-grid-ct {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.section-title-ct {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.checkout-product-ct {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.checkout-product-ct img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.checkout-product-info {
    flex: 1;
}

.checkout-product-info .product-name {
    font-size: 14px;
    font-weight: 500;
}

.checkout-product-info .product-meta {
    font-size: 13px;
    color: #777;
}

.checkout-product-price {
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.summary-row.discount {
    color: #2f8f2f;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.address-card-ct {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
}

.address-card-ct input {
    margin-top: 4px;
}

.address-card-ct.active {
    border-color: #000;
    background: #f9f9f9;
}

.change-address-link {
    font-size: 13px;
    padding: 0;
    border: none;
    background: linear-gradient(to right, currentcolor, currentcolor) 0px
        min(100%, 1.35em) / 100% 1px no-repeat;
    text-decoration: none;
    transition: background-size 0.3s ease-in-out;
    color: #000;
}

@supports (height: 1lh) {
    .change-address-link {
        background: linear-gradient(to right, currentcolor, currentcolor) 0px
            min(100%, 1.2lh) / 100% 1px no-repeat;
    }
}
@media screen and (pointer: fine) {
    .change-address-link:hover {
        background-size: 0px 1px;
    }
}

.checkout-footer {
    display: flex;
    justify-content: space-between;
}

.btn-dark {
    background: #000;
    color: #fff;
    padding: 10px 22px;
    border: none;
}

.btn-outline {
    border: 1px solid #000;
    background: transparent;
    padding: 10px 22px;
}

.payment-methods-ct {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option-ct {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.payment-option-ct.active {
    border-color: #000;
    background: #f9f9f9;
}

.payment-option-ct input {
    accent-color: #000;
}

.orders-list-ag {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.order-card-ag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.order-id-ag {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-date-ag {
    font-size: 14px;
    color: #777;
}

.order-status-ag {
    padding: 6px 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 500;
}

.order-status-ag.status-0 {
    background: #f5f5f5;
    color: #000;
}

.order-status-ag.status-1 {
    background: #fff3cd;
    color: #856404;
}

.order-status-ag.status-2 {
    background: #e7f1ff;
    color: #004085;
}

.order-status-ag.status-3 {
    background: #000;
    color: #fff;
}

.order-status-ag.status-4 {
    background: #fdecea;
    color: #b71c1c;
}

.order-right-ag {
    text-align: right;
}

.order-total-ag {
    font-weight: 600;
    margin-bottom: 6px;
}

.order-view-ag {
    font-size: 14px;
    text-decoration: underline;
    color: #000;
}

.back-link-ag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.order-header-ag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.order-detail-layout-ag {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.order-items-ag {
    flex: 2;
}

.order-summary-ag {
    flex: 1;
    border: 1px solid #e5e5e5;
    padding: 20px;
    height: fit-content;
}

.order-item-ag {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item-ag img {
    width: 70px;
    height: auto;
}

.item-name-ag {
    font-weight: 600;
}

.item-qty-ag {
    font-size: 14px;
    color: #777;
}

.item-price-ag {
    margin-left: auto;
    font-weight: 600;
}

.summary-row-ag {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row-ag.discount {
    color: #b71c1c;
}

.summary-row-ag.total {
    font-weight: 700;
    font-size: 18px;
}

.summary-label-ag {
    font-size: 13px;
    color: #777;
    margin-top: 15px;
}

.summary-value-ag {
    font-weight: 500;
}

.order-cancel-ag {
    background: transparent;
    border: none;
    color: #b71c1c;
    font-size: 14px;
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
    text-decoration: underline;
}

.order-cancel-ag:hover {
    color: #7f0000;
}

.order-right-ag {
    text-align: right;
}

.order-total-ag {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Actions row */
.order-actions-ag {
    font-size: 14px;
}

.order-view-link {
    color: #000;
    text-decoration: underline;
}

.order-view-link:hover {
    color: #000;
}

.order-separator-ag {
    margin: 0 6px;
    color: #777;
}

.order-cancel-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #d32f2f;
    text-decoration: underline;
    cursor: pointer;
}

.order-cancel-link:hover {
    color: #b71c1c;
}

.reel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.reel-overlay.active {
    display: flex;
}

.reel-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.reel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.reel {
    width: 300px;
    height: 530px;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.reel-inner {
    width: 100%;
    height: 100%;
    transform: scale(0.85);
    transition: 0.4s ease;
}

.reel.active .reel-inner {
    transform: scale(1);
}

.reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sound-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    border-radius: 50%;
    padding: 6px 8px;
    cursor: pointer;
}

.reel-actions {
    position: absolute;
    right: 10px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #fff;
    font-size: 14px;
}

.reel-product {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 38px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    box-sizing: border-box;
}

.reel-product-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.reel-product-scroll::-webkit-scrollbar {
    display: none;
}

.reel-product-card {
    min-width: 230px;
    max-width: 230px;
    background: #fff;
    border-radius: 6px;
    padding: 8px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.reel-product-row {
    display: flex;
    gap: 10px;
}

.reel-product-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 4px;
    background: #f5f5f5;
}

.reel-product-info {
    flex: 1;
}

.reel-product-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.reel-product-top h4 {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    color: #000;
    line-height: 1.2;
}

.open-link {
    font-size: 14px;
    cursor: pointer;
}

.reel-product-price {
    margin-top: 4px;
}

.price-new {
    font-size: 13px;
    font-weight: 600;
    margin-right: 6px;
}

.price-old {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
}

.reel-shop-btn {
    width: 100%;
    margin-top: 6px;
    padding: 8px 0;
    background: #000;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
}

.reel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.reel-nav.prev {
    left: 30px;
}

.reel-nav.next {
    right: 30px;
}

.reel-product-scroll {
    cursor: pointer;
}

.reel-product-scroll.dragging {
    cursor: pointer;
}

@media (max-width: 768px) {
    .reel-track {
        gap: 0;
        justify-content: center;
    }

    .reel {
        width: 90vw;
        max-width: 320px;
        height: calc(90vw * 1.75);
        max-height: 560px;
    }

    .reel-inner {
        transform: scale(1) !important;
    }
}
.reel-product-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reel-product-scroll::-webkit-scrollbar {
    display: none;
}

.reel-prod-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.438);
    color: #000;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    display: none;
}

@media (min-width: 769px) {
    .reel-prod-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reel-prod-nav.prev {
        left: 6px;
    }

    .reel-prod-nav.next {
        right: 6px;
    }
}

@media (max-width: 768px) {
    .reel-prod-nav {
        display: none;
    }
}

.compare-cta {
    position: absolute;
    bottom: 24px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.compare-cta strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.compare-cta a {
    background: linear-gradient(to right, currentcolor, currentcolor) 0px
        min(100%, 1.35em) / 100% 1px no-repeat;
    text-decoration: none;
    transition: background-size 0.3s ease-in-out;
    color: #000;
}

.cta-left {
    left: 32px;
    text-align: left;
}

.cta-right {
    right: 32px;
    text-align: right;
}

.compare-cta.hidden {
    opacity: 0;
    visibility: hidden;
}
@supports (height: 1lh) {
    .compare-cta a {
        background: linear-gradient(to right, currentcolor, currentcolor) 0px
            min(100%, 1.2lh) / 100% 1px no-repeat;
    }
}
@media screen and (pointer: fine) {
    .compare-cta a:hover {
        background-size: 0px 1px;
    }
}

.clx_gridContainer_aj29.static-page {
    gap: 23px;
    max-width: 56.25rem;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-block-start: 4rem;
    margin-block-end: 4rem;
}

.static-page .title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    border-bottom: 1px solid #e5e5e5;
}

.menu-item > a,
.mobile-accordion-header {
    padding: 18px 20px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #000;
    text-decoration: none;
}
.submenu {
    list-style: none;
    padding: 0 20px 12px;
    margin: 0;
    display: none;
}

.submenu li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.menu-item.active .submenu {
    display: block;
}

.menu-item.active .mobile-accordion-header i {
    transform: rotate(180deg);
    transition: 0.3s;
}
.checkout-btn-ct.disabled {
    background: #22222294;
    pointer-events: none;
}
.order-address-ag {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

.address-name-ag {
    font-weight: 600;
    margin-bottom: 4px;
}

.address-phone-ag {
    color: #444;
    margin-bottom: 6px;
}

.address-text-ag {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1065px) {
    .wishListModal .modal-dialog {
        width: 900px;
    }
}
@media (max-width: 900px) {
    .wishListModal .modal-dialog {
        width: 750px;
    }
}

@media (max-width: 691px) {
    .wishListModal .modal-dialog {
        width: 500px;
    }
}

@media (max-width: 500px) {
    .wishListModal .modal-dialog {
        width: 350px;
    }
}
@media (max-width: 768px) {
    .sign-up-fp-row p {
        text-align: center;
    }

    .sign-up-fp-row .text-right {
        text-align: center !important;
    }

    .order-id-ag {
        font-size: 14px;
    }

    .order-date-ag {
        font-size: 12px;
    }

    .order-status-ag {
        font-size: 11px;
    }

    .order-total-ag {
        font-size: 13px;
    }

    .order-view-link {
        font-size: 11px;
    }

    .order-cancel-link {
        font-size: 11px;
    }

    .order-header-ag h1 {
        font-size: 28px;
    }
}

@media (max-width: 540px) {
    .order-id-ag {
        font-size: 12px;
    }

    .order-date-ag {
        font-size: 11px;
    }

    .order-status-ag {
        font-size: 10px;
        padding: 5px 8px;
    }

    .order-total-ag {
        font-size: 12px;
    }

    .order-view-link {
        font-size: 10px;
    }

    .order-cancel-link {
        font-size: 10px;
    }

    .order-card-ag {
        padding: 10px;
    }

    .order-header-ag h1 {
        font-size: 24px;
    }
}
@media (max-width: 465px) {
    .order-header-ag h1 {
        font-size: 20px;
    }
}
@media (max-width: 430px) {
    .order-status-ag {
        font-size: 9px;
        padding: 4px 6px;
    }

    .order-id-ag {
        font-size: 10px;
    }

    .order-date-ag {
        font-size: 9px;
    }
}
@media (max-width: 400px) {
    .order-header-ag h1 {
        font-size: 16px;
    }
}
@media (max-width: 360px) {
    .order-status-ag {
        font-size: 8px;
        padding: 3px 5px;
    }

    .order-id-ag {
        font-size: 9px;
    }

    .order-date-ag {
        font-size: 8px;
    }

    .order-header-ag h1 {
        font-size: 14px;
    }
}

.footer-credit-link {
    color: #fff;
    text-decoration: none;
}

.footer-credit-link:hover {
    text-decoration: underline;
}
.bulk-price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.bulk-price-chip {
    font-size: 12px;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 4px 10px;
    color: #222;
    white-space: nowrap;
}

.bulk-price-chip strong {
    font-weight: 600;
    margin-right: 4px;
}

header {
    position: relative;
}
.icon-search {
    cursor: pointer;
}

.header-search-wrap {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.header-search-wrap.active {
    max-height: 80px;
    border-top: 1px solid #d9d9d9;
}

.header-search-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
}

.header-search-inner i {
    font-size: 16px;
    color: #111;
}

.header-search-inner input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-close {
    font-size: 20px;
    cursor: pointer;
}
