:root {
    --primary-purple: #7c5cbe;
    --light-beige: #f5e6d3;
    --dark-maroon: #aa92d9;
    --text-dark: #333;
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: 'Inter', sans-serif;*/
    font-family: "Assistant";
    overflow-x: hidden;
}

header {
    position: relative;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.4s ease-out;
}
header.sticky {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

/* Navbar Styles */
.navbar-custom {
    background: #693ec9;
    padding: 8px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    width: 18%;
    border: 0px;
    box-shadow: none;
}
.navbar-brand .logo {
    width: 110px;
}
.navbar-brand .mlogo {
    width: 40px;
}
.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-family: "Assistant";
}
.wrap-search {
    width: 70%;
    margin-left: 0 !important;
}
.search-box {
    position: relative;
    width: 100%;
    max-width: 900px;
}
.search-box input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: none;
    border-radius: 10px;
    outline: none;
}
.search-box button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-purple);
    font-size: 1.2rem;
}
.nav-icons {
    display: flex;
    gap: 26px;
    align-items: center;
    position: relative;
    z-index: 9;
}
.nav-icon-item {
    text-align: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}
.nav-icon-item:hover {
    transform: translateY(-3px);
    color: white;
}
.nav-icon-item i {
    font-size: 1.5rem;
    display: block;
    margin: auto;
}
.cartIcon {
    background-image: url(../images/shopping-cart.svg);
    width: 26px;
    height: 26px;
    background-size: 100%;
}
.accountIcon {
    background-image: url(../images/frame.svg);
    width: 26px;
    height: 26px;
    background-size: 100%;
}
.shoppingBag {
    background-image: url(../images/shopping-bag.svg);
    width: 26px;
    height: 26px;
    background-size: 100%;
}
.storeIcon {
    background-image: url(../images/stores.svg);
    width: 26px;
    height: 26px;
    background-size: 100%;
}
.searchIcon {
    background-image: url(../images/searchIcon.svg);
    width: 21px;
    height: 21px;
    background-size: 100%;
}
.nav-icon-item span {
    font-size: 0.75rem;
    display: block;
}
.mHide {
    display: inline;
}
.mShow {
    display: none;
}

/* Menu Links */
.menu-links {
    padding: 0;
    width: 100%;
}
.menu-links .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 0.7rem !important;
    position: relative;
    font-size: 20px;
    font-family: "Assistant";
}
.menu-links .nav-link:hover {
    text-decoration: underline;
}
.menu-links .nav-link::after {
    background-image: url(../images/VectorArrow.png);
    border: 0;
    width: 11px;
    height: 6px;
}

/* Hero Section */
.hero-section .swiper-slide img {
    height: 75vh;
}
.hero-section .swiper-pagination-bullet {
    background: #7c5cbe;
    opacity: 0.4;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-radius: 0;
}
.hero-section .swiper-pagination-bullet-active {
    background: #7c5cbe;
    opacity: 1;
}
.hero-section .swiper-wrapper {
    padding-bottom: 50px;
}
.hero-section .swiper-pagination {
    left: 0;
    gap: 10px;
    column-gap: 8px;
    display: flex;
    justify-content: center;
    bottom: 25px;
}
.section-title {
    font-family: "Assistant";
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.collection-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.collection-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(124, 92, 190, 0.1) 0%,
        rgba(155, 126, 201, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}
.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(124, 92, 190, 0.3);
    border-color: var(--primary-purple);
}
.collection-card:hover::before {
    opacity: 1;
}
.card-image-wrapper {
    width: 100%;
    height: 205px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    padding: 20px;
    border: 2.4px solid #aa92d9;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(124, 92, 190, 0.3);
}
.card-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.collection-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}
.collection-card::before {
    background: none !important;
    box-shadow: none;
}
.collection-card:hover {
    transform: none;
    background: none;
    box-shadow: none;
}
.card-title {
    font-family: "Assistant";
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

.crafts-section {
    padding: 3rem 0;
    background: #f4efff;
}
.section-header {
    margin-bottom: 2rem;
}
.section-title {
    font-family: "Assistant";
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: "Assistant";
    text-align: center;
}
.crafts-carousel {
    position: relative;
    padding: 0 00px;
}
.crafts-carousel .carousel-inner {
    padding: 0rem 0;
}
.craft-card {
    background: var(--card-bg);
    border: 2px solid #cd906d;
    border-radius: 37px;
    padding: 10px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(124, 92, 190, 0.1);
    margin: 0 10px;
    background: #fff;
    overflow: hidden;
}
.craft-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
}
.card-image-container {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    padding: 0;
    transition: transform 0.4s ease;
}
.craft-card:hover .card-image-container {
    transform: scale(1.05);
}
.card-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.craft-title {
    font-family: "Assistant";
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.craft-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}
/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.carousel-control-prev {
    left: -100px;
    background-image: url(../images/leftArrow.png);
}
.carousel-control-next {
    right: -100px;
    background-image: url(../images/rightArrow.png);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100%;
    filter: invert(0.5);
    background-image: none;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1);
}
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mySwiper2 .swiper-button-next {
    right: -40px;
    background-image: url(../images/rightArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.mySwiper2 .swiper-button-prev {
    left: -40px;
    background-image: url(../images/leftArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.mySwiper2 .swiper-slide img {
    display: block;
    width: auto;
    height: auto;
}
.carousel-control-next {
    right: -100px;
    background-image: url(../images/rightArrow.png);
}
.swiper.mySwiper2,
.swiper.mySwiper6 {
    overflow: inherit;
}
.swiper.mySwiper2 .swiper-button-next:after,
.swiper.mySwiper2 .swiper-button-prev:after {
    content: none;
}
.swiper.mySwiper6 .swiper-button-next:after,
.swiper.mySwiper6 .swiper-button-prev:after {
    content: none;
}
.section-header.ty02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-header.ty02 .seeMore {
    color: #7c5cbe;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
}
.section-header.ty02 .section-title {
    margin: 0;
}
.crafts-section.ty02 .craft-card {
    padding: 0;
    text-align: left;
}
.crafts-section.ty02 .share-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
    padding: 10px;
}
.crafts-section.ty02 .share-button i {
    color: #7c5cbe;
}

.share-button:hover {
    background: #f0f0f0;
}
.crafts-section.ty02 .craft-card .card-image-container {
    padding: 0;
    text-align: left;
    margin: 0;
    height: auto;
    position: relative;
}
.crafts-section.ty02 .craft-description {
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crafts-section.ty02 .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0px 15px;
    margin-bottom: 0;
}
.crafts-section.ty02 .view-more-link {
    color: #7c5cbe;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0px 15px;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}
.swiper.mySwiper3 {
    overflow: inherit;
}
.crafts-section.ty03 {
    padding: 2rem 0;
    padding-bottom: 2rem;
}
.crafts-section.ty03 .section-title {
    padding-top: 0;
    margin-top: 0;
}

img.category-thumbnail.mr-2 {
    display: none;
}
/* .crafts-section.ty03 .category-card {
    background: #e9dfff;
    border-radius: 20px;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 170px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(229, 31, 46, 0.3);
} */
/* .crafts-section.ty03 .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.crafts-section.ty03 .category-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 170px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.crafts-section.ty03 .category-card:hover {
    transform: translateY(-5px);
}

.crafts-section.ty03 .category-card img {
    width: 100%;
}

.crafts-section.ty03 .card-content {
    flex: 1;
    z-index: 2;
    max-width: 60%;
}
.crafts-section.ty03 .category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d1b3d;
    margin-bottom: 10px;
    font-family: "Assistant";
}
.crafts-section.ty03 .category-description {
    font-size: 1rem;
    color: #4a3757;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Assistant";
}
.crafts-section.ty03 .section-subtitle {
    padding-bottom: 0px;
}
.crafts-section.ty02 .craft-card:hover .card-image-container {
    transform: none;
}
.crafts-section.ty03 .see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1f2937;
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.crafts-section.ty03 .see-more-btn:hover {
    background-color: #a879d2;
    color: #fff;
    transform: scale(1.05);
}
.crafts-section.ty03.btn-icon {
    font-size: 8px;
    color: #2d1b3d;
    transition: color 0.3s ease;
}
.crafts-section.ty03 .see-more-btn:hover .btn-icon {
    color: #fff;
}
.crafts-section.ty03 .card-image {
    position: absolute;
    width: auto;
    height: auto;
    flex-shrink: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 299px;
}
.crafts-section.ty03 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crafts-section.ty03 .categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 20px;
}
.crafts-section.ty03 .see-more-btn .btn-icon img {
    width: 1.4rem;
}
.wrapBanner img {
    width: 100%;
}
.crafts-section.ty03 .categories-grid.shop {
    gap: 0px 0px;
}
.crafts-section.ty03 .categories-grid.shop .category-card {
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}
.crafts-section.ty03 .categories-grid.shop .category-card img {
    width: 100%;
}
.crafts-section.ty03.shop {
    background: #fff;
}
.wrapJew-des {
    background: #f4efff;
    border: 2px solid #d1bdff;
    border-radius: 17px;
}
.swiper.mySwiper3 .craft-card.b2 {
    border: 2px solid rgba(209, 186, 255, 0.5);
}
.crafts-section.ty02 .craft-card.b2 .view-more-link {
    color: #886fbf;
}
.trendingJew {
    background: #e2d7f9;
    background: linear-gradient(
        90deg,
        rgba(226, 215, 249, 1) 0%,
        rgba(193, 172, 238, 1) 50%,
        rgba(162, 132, 228, 1) 100%
    );
    padding-bottom: 6rem;
}
.trendingJew .swiper-3d .swiper-slide-shadow {
    background: none;
}
.trendingJew .swiper-pagination-bullet {
    margin: 2px;
    width: 10px;
    height: 10px;
}
.trendingJew .swiper-button-next {
    right: 0px;
    background-image: url(../images/rArrow.png);
    width: 80px;
    height: 80px;
    background-size: 100%;
}
.trendingJew .swiper-button-prev {
    left: 0px;
    background-image: url(../images/lArrow.png);
    width: 80px;
    height: 80px;
    background-size: 100%;
}
.trendingJew .swiper-button-next:after,
.trendingJew .swiper-button-prev:after {
    content: none;
}
.trendingJew .swiper-pagination {
    bottom: -35px;
}
.trendingJew .section-header.ty02 {
    width: 100%;
    justify-content: center;
}
.trendingJew .swiper-pagination-bullet-active {
    background: #561cca;
    width: 18px;
    height: 18px;
}
.trendingJew .swiper-pagination-bullet-active-prev,
.trendingJew .swiper-pagination-bullet-active-next {
    background: #561cca;
    width: 14px;
    height: 14px;
    opacity: 1;
}
.trendingJew .swiper-pagination-bullet-active-prev-prev,
.trendingJew .swiper-pagination-bullet-active-next-next {
    background: #561cca;
    width: 8px;
    height: 8px;
    opacity: 1;
}
.trendingJew .swiper-pagination {
    width: 200px !important ;
}
.bgWhite {
    background: #fff;
}
.crafts-section.ty02 .card-image-container img {
    height: auto;
    width: 100%;
}
.mySwiper6 .card-image-container {
    height: auto;
    border-radius: 45px;
}
.mySwiper6 .swiper-button-next {
    right: -40px;
    background-image: url(../images/rightArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.mySwiper6 .swiper-button-prev {
    left: -40px;
    background-image: url(../images/leftArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.mySwiper6 .craft-card {
    position: relative;
}
.mySwiper6 .craft-card .wrapLcollection {
    position: absolute;
    bottom: -30px;
    width: 100%;
    left: 0;
    top: inherit;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.mySwiper6 .craft-card .wrapLcollection .sec1 {
    width: 22%;
    /* box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15); */
    border-radius: 16px;
}
/* .mySwiper6 .craft-card .wrapLcollection .sec1 img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
} */
 .mySwiper6 .craft-card .wrapLcollection .sec1 img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
}

.mySwiper6 .craft-card .wrapLcollection .sec1 svg {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.crafts-section .mySwiper6 .craft-card {
    padding: 0;
    border: 0;
    overflow: inherit;
    background: transparent;
    border-radius: 43px;
}
.colSection {
    position: relative;
}
.tlColletion {
    font-size: 2rem;
    font-weight: 600;
    color: #886fbf;
    margin-bottom: 0px;
    font-family: "Assistant";
}
.wrapBanner.ty02 {
    margin: 0;
    position: relative;
}
.wrapBanner.ty02 img {
    width: 100%;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}
.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.load-more-btn {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.load-more-btn:hover {
    background-color: #f8f9fa;
    border-color: #333;
    transform: scale(1.02);
}
.load-more-btn:active {
    transform: scale(0.98);
}
.product-card {
    background: linear-gradient(180deg, #f8f9fa 0%, #e8e7f3 100%);
    border-radius: 24px;
    padding: 0px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1.8px solid #aa92d9;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(124, 92, 190, 0.3);
}
.wrapProd {
    background: #fafafa;
    border-radius: 10px 10px 0 0;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 19.3px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 10;
}
.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.wishlist-btn i {
    font-size: 17px;
    color: #bfa8f2;
    transition: color 0.3s ease;
    top: 2px;
    position: relative;
}

.product-grid .product-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    background: #fafafa;
    border-radius: 0px;
    padding: 0px;
    position: relative;
}
.product-grid .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-grid .product-image .rating-badge {
    position: absolute;
    bottom: 0;
    left: 0;
}
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    margin-left: 10px;
}
.rating-badge i {
    color: #e3b551;
    font-size: 16px;
}
.rating-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.product-info {
    margin-bottom: 20px;
}
.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.price-section {
    display: flex;
    align-items: center;
    gap: 12px;
}
.current-price {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
}
.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.action-buttons {
    display: flex;
    gap: 6px;
}
.btn-view-more,
.btn-add-cart {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-view-more {
    background: transparent;
    color: #8b7cde;
    border: 2px solid transparent;
    border-radius: 0;
}
.btn-view-more:hover {
    background: #7c5cbe;
    border-radius: 7px;
    box-shadow: 0 2px 4px #ccc;
    color: #fff;
}
.btn-view-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.btn-view-more:hover i {
    transform: translateX(4px);
}
.btn-add-cart {
    background: #8b7cde;
    color: white;
}
.btn-add-cart:hover {
    background: #7a6bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 124, 222, 0.3);
}
.wrapInfo1 {
    background: rgba(209, 189, 255, 0.2);
    border-radius: 0 0 10px 10px;
    padding: 10px;
}
.wrapInfo1 .btn-view-more,
.wrapInfo1 .btn-add-cart {
    padding: 0;
}
.wrapInfo1 .btn-add-cart:hover {
    color: #fff;
    background: #7c5cbe;
    border-radius: 7px;
    box-shadow: 0 2px 4px #ccc;
}
.wrapInfo1 .btn-add-cart {
    transform: inherit;
    background: #aa92d9;
    color: #fff;
    border-radius: 7px;
}
.wrapInfo1 .product-info {
    margin-top: 0;
    margin-bottom: 0;
}

.search-container {
    position: relative;
    margin: 0 auto;
}
.search-box {
    position: relative;
}
/* .search-box:focus-within {
    border-color: #4a90e2;
    box-shadow: 0 6px 20px rgba(74, 144, 226);
} */
.search-box input::placeholder {
    color: #aaa;
}
.search-box input:focus {
    box-shadow: none;
}
.search-box .clear-btn {
    background: transparent;
    border-right: 1px solid #000;
    padding: 0 12px;
    right: 40px;
    cursor: pointer;
    color: #999;
    font-size: 24px;
    line-height: 1;
    transition: color 0.2s;
}
.search-box .clear-btn:hover {
    color: #333;
}
.search-box button[type="submit"] {
}
.search-box button[type="submit"] i {
    font-size: 18px;
}
.search-results {
    position: fixed;
    top: 124px;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    height: 80vh;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.search-results.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-section {
    padding: 20px 24px;
}
.search-section-title {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: all 0.2s;
    border-radius: 8px;
    margin-bottom: 4px;
}
.suggestion-item:hover {
    background: #f8f9fa;
    color: #000;
    padding-left: 16px;
}
.suggestion-item strong {
    font-weight: 700;
    color: #667eea;
}
.product-item {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 12px;
    margin-bottom: 6px;
}
.product-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}
.product-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    border: 3px solid #f0f0f0;
}
.product-info {
    flex: 1;
}
.product-name {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.4;
}
.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
}
.product-price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 500;
}
.discount-badge {
    background: #a879d2;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 8px;
    font-weight: 600;
}
.search-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-top: 2px solid #f0f0f0;
    cursor: pointer;
    color: #667eea;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}
.search-all:hover {
    background: #f8f9fa;
    color: #764ba2;
}
.search-all i {
    transition: transform 0.2s;
}
.search-all:hover i {
    transform: translateX(4px);
}
.divider {
    border-top: 1px solid #f0f0f0;
    margin: 0;
}
.no-results {
    text-align: center;
    padding: 30px;
    color: #999;
}
.no-results i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}
/* Custom scrollbar */
.search-results::-webkit-scrollbar {
    width: 8px;
}
.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.search-results::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 10px;
}
.search-results::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}
.section-title {
    position: relative;
    text-align: center;
    padding-bottom: 0px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.4rem;
    }
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .crafts-carousel {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .card-image-container {
        height: 200px;
    }
    .craft-title {
        font-size: 1.3rem;
    }
    .craft-description {
        font-size: 0.9rem;
    }
    .swiper.mySwiper2 {
        overflow: hidden;
    }
    .swiper.mySwiper3 {
        overflow: hidden;
    }
    .swiper.mySwiper6 {
        overflow: hidden;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .crafts-section {
        padding: 1rem 0;
    }
    .section-header {
        margin-bottom: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .crafts-carousel {
        padding: 0 45px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .craft-card {
        padding: 2rem 1.5rem;
    }
    .card-image-container {
        height: 180px;
        padding: 1rem;
    }
    .carousel-control-prev {
        left: -40px;
    }
    .carousel-control-next {
        right: -40px;
    }
    .craft-card,
    .swiper.mySwiper3 .craft-card,
    .crafts-section.ty03 .category-card {
        border-radius: 15px;
        margin-bottom: 10px;
    }
    .wrapBanner.ty02 img {
        width: 100%;
        height: auto;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.craft-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Mobile Menu Styles */

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    display: none;
}
.pb-50 {
    padding-bottom: 5rem;
}
.footer-section {
    background-color: #f4efff;
    padding: 60px 0 20px;
    margin-top: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 25px;
    padding-right: 60px;
}
.know-more-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--dark-text);
}
.social-icons {
    display: flex;
    gap: 0px;
}
.social-icons a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.social-icons a img {
    width: 100%;
}
.social-icons a:hover {
    transform: scale(1.1);
}
.social-icons i {
    color: white;
    font-size: 20px;
}
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-family: "Assistant";
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 5px;
    text-decoration: underline;
}
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--dark-text);
}
.contact-info i {
    color: var(--dark-text);
    margin-right: 8px;
    width: 18px;
}
.contact-info strong {
    margin-bottom: 5px;
    font-weight: 600;
}
.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--dark-text);
}
.copyright i {
    color: #e74c3c;
}
.mobile-footer-accordion {
    display: none;
}
.accordion-button {
    background-color: var(--primary-purple) !important;
    color: white !important;
    font-weight: 600;
    border-radius: 8px !important;
    margin-bottom: 10px;
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-purple) !important;
    color: white !important;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-purple);
}
.accordion-button::after {
    filter: inherit;
    color: #000 !important;
}
.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 10px;
}
.accordion-body {
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
}
.mobile-footer-accordion .accordion-button::after {
    filter: inherit;
    color: #fff !important;
}

.product-grid {
    position: relative;
    width: 100%;
}
.product-grid .product-card {
    position: absolute;
    width: calc(25% - 15px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    border: 0px solid #aa92d9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15);
}
.product-grid .product-card.positioned {
    opacity: 1;
    transition:
        opacity 0.5s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.product-grid .product-card:hover {
    transform: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.see-more-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.see-more-btn {
    background: linear-gradient(135deg, #9575cd 0%, #7e57c2 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(149, 117, 205, 0.4);
}
.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 117, 205, 0.6);
}
.see-more-btn.hidden {
    display: none;
}
.product-card.hidden {
    display: none;
}
.wrapFilter {
    display: flex;
}
.filterSection {
    width: 400px;
    margin: 6px auto;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 10px 0;
}
.breadcrumb-link {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
.breadcrumb-link:hover {
    color: #666;
    text-decoration: underline;
}
.breadcrumb-separator {
    color: #666;
    font-size: 16px;
    user-select: none;
}
.breadcrumb-current {
    color: #1f2937;
    font-weight: normal;
}
.filter-container {
    width: 100%;
    max-width: 90%;
    margin: auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border: 0;
    box-shadow: none;
}
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
}
.filter-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}
.btn-close-filter {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: opacity 0.2s;
}
.filter-title i {
    color: #886fbf;
}
.btn-close-filter:hover {
    opacity: 0.7;
}
.filter-divider {
    margin: 0;
    border-top: 1px solid #e5e7eb;
    opacity: 1;
}
.filter-section {
    padding: 20px;
}
.filter-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}
.price-slider-container {
    position: relative;
    height: 7px;
    margin-bottom: 12px;
}
.price-range {
    position: absolute;
    width: 100%;
    height: 5px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}
.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #7c5cbe;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.price-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #7c5cbe;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.slider-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.slider-range {
    position: absolute;
    height: 4px;
    background: #7c5cbe;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.price-display {
    margin-top: 8px;
}
.price-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 25px;
}
.filter-checkbox {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.filter-checkbox .form-check-input {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0;
}
.filter-checkbox .form-check-input:checked {
    background-color: #7c5cbe;
    border-color: #7c5cbe;
}
.filter-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
    border-color: #7c5cbe;
}
.filter-checkbox .form-check-label {
    font-size: 14px;
    color: #374151;
    font-weight: 400;
    cursor: pointer;
    margin-left: 8px;
}
.btn-show-more {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #7c5cbe;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    margin-top: 4px;
    transition: color 0.2s;
}
.btn-show-more:hover {
    color: #6d28d9;
}

@media (max-width: 576px) {
    .filter-container {
        max-width: 100%;
    }
}

.filter-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 16px 0;
    padding-top: 0;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
}
.filter-dropdowns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.filter-dropdown {
    display: inline-block;
}
.filter-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: capitalize;
}
.filter-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}
.filter-btn:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    border-color: #8b5cf6;
}
.filter-btn::after {
    margin-left: 4px;
    font-size: 12px;
}
.dropdown-menu {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 8px;
    width: 98%;
}
.dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    color: #374151;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: rgba(209, 189, 255, 0.2);
    color: #111827;
}
.dropdown-item:active {
    background: #e5e7eb;
    color: #111827;
}
.selected-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 12px;
}
.btn-remove-tag {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s ease;
    width: 16px;
    height: 16px;
}
.btn-remove-tag:hover {
    color: #ef4444;
}
.btn-remove-tag svg {
    width: 14px;
    height: 14px;
    color: #7c5cbe;
}
.tag-text {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}
.sort-section {
    display: flex;
    align-items: center;
}
.stock-section {
    display: flex;
    align-items: center;
}
.sort-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    background: #ffffff;
    border: 1px solid #886fbf;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.sort-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}
.sort-btn:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    border-color: #8b5cf6;
}
.sort-btn::after {
    margin-left: 4px;
    font-size: 12px;
    border-top: 0.3em solid #886fbf;
}
.stock-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    background: #ffffff;
    border: 1px solid #886fbf;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.stock-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}
.stock-btn:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    border-color: #8b5cf6;
}
.stock-btn::after {
    margin-left: 4px;
    font-size: 12px;
    border-top: 0.3em solid #886fbf;
}
.filterBtn {
    background: none;
    border-radius: 55px;
    border: 1px solid #d1d5db;
    color: #fff;
    font-size: 22px;
    border: 0;
    box-shadow: none;
    padding: 9px;
    justify-content: center;
    gap: 15px;
}
.filterBtn img {
    margin-right: 10px;
}
.mobile_footer_menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    transition:
        transform 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
    z-index: 110;
    box-shadow: rgba(0, 0, 0, 0.1) 0 -4px 12px 0;
    transform: translateY(0);
    opacity: 1;
    border-top: 1px solid #f0f0f0;
}
.mobile_footer_menu.hidden {
    transform: translateY(100%);
    opacity: 0;
}
.mobile_footer_menu.visible {
    transform: translateY(0);
    opacity: 1;
}
.mobile_footer_menu2 {
    background: #fff;
    width: 100%;
    transition:
        transform 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
    z-index: 110;
    box-shadow: rgba(0, 0, 0, 0.1) 0 -4px 12px 0;
    transform: translateY(0);
    opacity: 1;
    border-top: 1px solid #f0f0f0;
}
.mobile_footer_menu2.hidden {
    transform: translateY(100%);
    opacity: 0;
}
.mobile_footer_menu2.visible {
    transform: translateY(0);
    opacity: 1;
}
.footer_menu_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 8px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
}
.footer_menu_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    padding: 8px 12px;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
    min-width: 60px;
}
.footer_menu_item:hover,
.footer_menu_item.active {
    color: #000;
}
.menu_icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}
.footer_menu_item:active .menu_icon {
    transform: scale(0.9);
}
.menu_icon svg {
    width: 100%;
    height: 100%;
}
.menu_text {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    font-family:
        "Assistant",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    margin-top: 2px;
    letter-spacing: 0.3px;
}
.footer_menu_item.active {
    color: #000;
}
.footer_menu_item.active .menu_icon svg {
    stroke-width: 2.5;
}
header {
    background: #ffffff;
}
header .navbar-custom {
    background: inherit;
}
header .menu-links {
    background: inherit;
}
/* .menu-links .nav-link {
    color: #413f3a !important;
    font-size: 16px;
    display: flex;
    gap: 8px;
} */


.menu-links .nav-link {
    color: #413f3a !important;
    font-size: 16px;
    display: flex;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}
.nav-icon-item {
    color: #413f3a !important;
}
.search-box input {
    height: 45px;
    margin: 0 0.625rem;
    border-radius: 70px;
    border: 1px solid #e0e0e0;
    padding: 0 22px;
    background: #fff;
    padding-right: 90px;
}
.menu-links .nav-link:hover {
    text-decoration: none;
}
.menu-links .nav-link::before {
    background-color: #7c5cbe;
    border-radius: 0.313rem;
    bottom: 0px;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    z-index: 21;
}
.menu-links .nav-link:hover:before {
    -webkit-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
}
.menu-links .nav-link::after {
    content: none;
}
header.sticky {
    box-shadow: 0 15px 35px rgba(124, 92, 190, 0.3);
}
.search-box input {
    border: 1px solid #e0e0e0 !important;
}
.menu-links .nav-link {
    padding: 0.6rem 19px !important;
    padding-bottom: 14px !important;
}
.wrap-search {
    width: 540px;
    margin: auto !important;
}
.header .navbar-toggler {
    border-color: #413f3a !important;
    box-shadow: none !important;
}
.header .navbar-toggler span {
    color: #413f3a !important;
}
.hero-section .swiper-slide img {
    border-radius: 15px;
}
.hero-section .swiper-slide svg {
    border-radius: 15px;
}
#main-content {
    padding-top: 10px;
    overflow: hidden;
}
/* Product Info */
.product-info {
    margin-top: 20px;
}
.product-info h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}
.product-info .price {
    color: #d89b8c;
    font-size: 28px;
    font-weight: bold;
}
.nav-icon-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.nav-icon-item span {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    margin-top: 5px;
    pointer-events: none;
    z-index: 10;
}
/* Optional: Add a small arrow to the tooltip */
.nav-icon-item span::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #333;
}
.nav-icon-item:hover span {
    opacity: 1;
    visibility: visible;
}
.wrapper.bdr {
    margin-bottom: 30px;
}
.divider {
    position: relative;
    margin-top: 15px;
    height: 1px;
}
.div-transparent:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    width: 90%;
    height: 1px;
    background-image: linear-gradient(
        to right,
        transparent,
        #aa92d9,
        transparent
    );
}
.div-dot:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -7px;
    left: calc(50% - 9px);
    width: 14px;
    height: 14px;
    background-color: #aa92d9;
    border: 1px solid #aa92d9;
    box-shadow:
        inset 0 0 0 2px #fff,
        0 0 0 4px #fff;
    transform: rotate(45deg);
}
.crafts-section.noBg {
    background: #fff;
}
.jewelry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}
.grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.everyday-wear {
    grid-column: 1;
    grid-row: 1;
}
.party-wear {
    grid-column: 2;
    grid-row: 1 / 3;
}
.gift-cards {
    grid-column: 3;
    grid-row: 1;
}
.twinning {
    grid-column: 4;
    grid-row: 1 / 3;
}
.traditional {
    grid-column: 1;
    grid-row: 2;
}
.minimalistic {
    grid-column: 3;
    grid-row: 2;
}
.crafts-section .row {
    --bs-gutter-y: 1.5rem;
}
.crafts-section.secGA .craft-card {
    padding: 0;
}
.crafts-section.secGA .wrapJew-des {
    border: 0;
    border-radius: 0;
    text-align: left;
    padding: 15px;
}
.crafts-section.secGA .card-image-container {
    border: 0;
    background: none;
    border-radius: 0;
}
.crafts-section.secGA .craft-description {
    margin: 0;
}
.crafts-section.secGA .view-more-link {
    color: #886fbf;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0px;
    text-decoration: none;
}
.card-image-wrapper,
.craft-card {
    border: 0px solid #aa92d9;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15);
    transition: all 0.4s ease;
}
.card-image-wrapper,
.craft-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}
.card-image-wrapper:hover,
.craft-card:hover {
    transform: translateY(-5px) !important;
}
.card-image-wrapper,
.craft-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}
.card-image-wrapper:hover,
.craft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15);
}
.search-box input {
    border: 1px solid #aa92d9 !important;
}
.key-collection-section {
    padding: 2rem 0;
}
.crafts-section.t1 {
    padding-bottom: 5rem;
}
.view-more-btn {
    border: 0;
    background: no-repeat;
    box-shadow: 0px 4px 21.2px 0px rgba(0, 0, 0, 0.12);
    width: auto;
    height: 40px;
    border-radius: 18px;
    margin: auto;
    display: block;
    margin-bottom: 19px;
    color: #7c5cbe;
    font-weight: 600;
    padding: 0 20px;
}
/* Dropdown Container */
.nav-icon-item {
    position: relative;
}
.dropdown-trigger {
    position: relative;
}
.account-dropdown {
    position: absolute;
    top: 100%;
    right: -17px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}
.dropdown-trigger:hover .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    gap: 12px;
    font-size: 14px;
}
.dropdown-item:hover {
    background-color: #f5f5f5;
}
.dropdown-item i {
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 999;
}
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
.cart-panel.active {
    right: 0;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.cart-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.close-cart {
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.close-cart:hover {
    color: #000;
}
.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #a879d2;
    border-radius: 50%;
}
.item-details {
    flex: 1;
}
.item-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item-price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: fit-content;
}
.qty-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: color 0.2s;
}
.qty-btn:hover {
    color: #000;
}
.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}
.delete-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    padding: 5px;
}
.recommended-section {
    padding: 20px 0;
}
.recommended-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.recommended-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}
.recommended-info {
    display: flex;
    gap: 12px;
    flex: 1;
    align-items: center;
}
.recommended-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}
.recommended-details h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}
.recommended-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.add-to-cart-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
    max-width: max-content;
}
.add-to-cart-btn:hover {
    background: #333;
}
.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 15px 0;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}
.dot.active {
    background: #333;
}
.cart-footer {
    border-top: 1px solid #eee;
    padding: 20px;
    background: #fff;
}
.cart-footer .btn-cancel-address {
    margin: auto;
}
.subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}
.subtotal-label {
    font-weight: 600;
    color: #333;
}
.subtotal-amount {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.delivery-info {
    background: #fff9e6;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}
.discount-badge {
    background: rgba(168, 121, 210, 0.5);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
}
.discount-left {
    display: flex;
    gap: 12px;
    align-items: center;
}
.discount-percent {
    background: #4a90e2;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}
.discount-text {
    font-size: 13px;
    padding-right: 5px;
}
.discount-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.discount-subtitle {
    color: #fff;
    font-size: 12px;
}
.coupon-code {
    background: #ffd700;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}
.checkout-btn {
    width: auto;
    background: #a879d2;
    color: #fff;
    border: none;
    padding: 4px 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    margin: auto;
}
.checkout-btn:hover {
    background: #a879d2;
}
.lock-icon {
    font-size: 18px;
}
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}
.btn-close1 {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    opacity: 1;
    background: no-repeat;
    border: 0;
    color: #fff;
}
.btn-close1:hover {
    opacity: 1;
}
.login-left-side {
    background: #7c5cbe;
    padding: 0px;
    position: relative;
    overflow: hidden;
}
.login-left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.benefits-container {
    text-align: center;
    position: relative;
    z-index: 2;
}
.gift-box-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gift-box-image img {
    position: relative;
    z-index: 2;
    width: 100%;
}
.offer-text p {
    font-size: 16px;
    color: #6d4c41;
    margin-bottom: 5px;
}
.offer-text h2 {
    font-size: 48px;
    font-weight: bold;
    color: #d32f2f;
    margin: 0;
}
.offer-text h2 span {
    font-size: 32px;
    font-weight: normal;
}
.other-benefits {
    margin-top: 30px;
    text-align: left;
}
.other-benefits h3 {
    font-size: 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #fff;
}
.benefit-item i {
    font-size: 20px;
    color: #fff;
}
.login-right-side {
    padding: 50px 10px;
    background: #fff;
}
.login-form-container {
    text-align: center;
}
.login-form-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}
.login-form-container .subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15%;
}
.mobile-input-group {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 24%;
    border: 1px solid #7c5cbe;
    border-radius: 50px;
}
.country-code-select {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    cursor: pointer;
}
.flag-icon {
    width: 24px;
    height: 16px;
}
.mobile-input-group .form-control {
    flex: 1;
    padding: 6px 15px;
    border-radius: 5px;
    border: 0;
    box-shadow: none;
    padding-left: 10px;
}
.btn-request-otp {
    background-color: #7c5cbe;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    width: 100px;
    height:36px;
    text-align: center;
    padding: 7px 0;
    font-size: 12px;
}
.btn-request-otp:hover {
    background-color: #7c5cbe;
    color: #fff;
}
.register-left-side {
    padding: 25px 10px;
    background: #fff;
    position: relative;
}
.register-form-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.register-form-container .subtitle {
    font-size: 14px;
    color: #d32f2f;
    margin-bottom: 30px;
}
.register-form-container .form-control,
.register-form-container .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}
.register-form-container .form-control:focus,
.register-form-container .form-select:focus {
    border-color: #aa92d9;
    box-shadow: 0 0 0 0.2rem rgba(139, 35, 50, 0.15);
}
.country-code {
    padding: 12px 10px;
}
.btn-continue {
    background-color: #7c5cbe;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}
.btn-continue:hover {
    background-color: #7c5cbe;
}
.register-right-side {
    background: #7c5cbe;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.register-right-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.branding-container {
    text-align: center;
    color: #fff;
}
.branding-container .logo h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
}
.jewelry-image {
    margin: 20px 0;
    position: relative;
}
.jewelry-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.tagline {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
}
.terms-agreement {
    font-size: 18px;
    color: #666;
    text-align: center;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    bottom: 10px;
}
.terms-agreement a {
    color: #7c5cbe;
    text-decoration: none;
    font-weight: 600;
}
.terms-agreement a:hover {
    text-decoration: underline;
}
#loginModal .modal-lg {
    --bs-modal-width: 700px;
}
#registerModal .modal-lg {
    --bs-modal-width: 700px;
}
.benefitWrap {
    display: flex;
    gap: 15px;
}
.register-form-container {
    text-align: center;
}
.register-form-container .btn-continue {
    width: auto;
    background: #a879d2;
    color: #fff;
    border: none;
    padding: 4px 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: auto;
    display: block;
    margin-bottom: 15px;
}
.register-form-container .dropdown .btn {
    width: 100%;
    text-align: left;
}
.register-form-container .dropdown .btn:after {
    right: 10px;
    right: 13px;
    position: absolute;
    top: 17px;
}
.register-form-container .dropdown-menu {
    width: 100%;
}
.search-results {
    padding: 15px;
}
.search-results .popular-searches {
    margin-bottom: 50px;
}
.search-results .section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-align: left;
}
.search-results .search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.search-results .search-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.search-results .search-tag:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.search-results .search-tag svg {
    width: 16px;
    height: 16px;
    stroke: #666;
    transition: transform 0.3s ease;
}
.search-results .search-tag:hover svg {
    transform: translateX(3px) translateY(-3px);
}
/* Trending Products Section */
.search-results .trending-products {
    margin-bottom: 40px;
}
.search-results .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.search-results .product-card1 {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}
.search-results .product-card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.search-results .product-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    padding: 10px;
}
.search-results .product-info {
    padding: 15px;
    text-align: center;
    margin: 0;
}
.search-results .product-title {
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
.storeImg {
    padding: 20px 0;
}
.storeImg img {
    width: 100%;
    border-radius: 15px;
}
.card-image-container-animated {
    position: relative;
}
.card-image-container-animated::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #aa92d9,
        #c5b3e6,
        #d4c5f0,
        #e8dff7,
        #aa92d9
    );
    z-index: -1;
    animation: rotate 4s linear infinite;
}
.card-image-container-animated img {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50%;
    background: white;
    padding: 6px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.products-grid1 .crafts-section {
    padding: 0;
}
.bgModal .modal-content {
    padding: 55px 45px 55px 30px;
    background: #7c5cbe;
}
.bgModal .modal-content .m25 {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}
.login-left-side,
.login-right-side,
.register-right-side,
.register-left-side {
    border: 0px solid #aa92d9;
    border-radius: 15px;
    box-shadow: 0px 1px 16px -3px #e3e3e380;
    position: relative;
}

@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        padding: 20px;
        margin: 10px;
    }
    .sign-up-modal {
        max-width: 100%;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .modal-title {
        font-size: 20px;
    }
    .signup-footer {
        flex-direction: column;
        gap: 15px;
    }
    .signup-footer .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 15px;
    }
    .btn-primary,
        -secondary {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .desktop-footer {
        display: none;
    }
    .mobile-footer-accordion {
        display: block;
    }
    .footer-section {
        padding: 40px 0 20px;
    }
    .footer-about-mobile {
        margin-bottom: 30px;
    }
    .copyright {
        font-size: 11px;
        padding: 15px 10px;
    }
}

@media (min-width: 768px) {
    .mobile-footer-accordion {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .mobile-menu-close {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -50%;
        width: 100%;
        height: 100vh;
        background-color: #aa92d9;
        z-index: 9999;
        padding: 20px;
        overflow-y: auto;
        left: -100%;
        transition: left 0.3s ease-in-out;
    }
    .navbar-collapse::before {
        content: "×";
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 40px;
        color: #333;
        cursor: pointer;
        line-height: 1;
    }
    .navbar-collapse.show {
        left: 0;
    }

    .menu-links {
        margin-top: 60px;
    }
    .menu-links ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }
    .menu-links .nav-item {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        padding: 0;
    }
    .menu-links .nav-link {
        padding: 15px 0;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-links .dropdown-toggle::after {
        margin-left: auto;
    }
    .wrap-search {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .navbar-collapse .nav-icons {
        display: none !important;
    }
    .navbar-collapse .currency-selector {
        margin: 20px 0;
    }
}

@media (min-width: 992px) {
    .pxCustom {
        padding-right: 7rem !important;
        padding-left: 7rem !important;
    }
    .menu-links {
        display: block !important;
    }
}

@media (min-width: 1867px) {
    .navbar-brand {
        width: 21%;
    }
}

@media (max-width: 1400px) {
    .collection-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    .pxCustom {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }
}

@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-title {
        font-size: 2.2rem;
    }
    .pxCustom {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
}

@media (max-width: 991px) {
    .collection-title {
        font-size: 3rem;
    }
    .collection-subtitle {
        font-size: 1.5rem;
    }
    .hero-tagline {
        font-size: 1.4rem;
    }
    .menu-links {
        text-align: center;
    }
    .nav-icons {
        justify-content: center;
    }
    .mHide {
        display: none !important;
    }
    .mShow {
        display: inline;
    }
    .navbar-brand {
        width: auto;
    }
    .nav-icons.mShow {
        display: flex;
    }
    .accountIcon {
        width: 22px;
        height: 20px;
        background-size: 100%;
    }
    .cartIcon {
        width: 22px;
        height: 20px;
        background-size: 100%;
    }
    header .navbar-custom {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .mySwiper5 {
        margin-top: 0px;
    }
    .mySwiper5 .craft-card {
        border: 0;
        box-shadow: none;
        background: none;
    }
    .mySwiper5 .swiper-slide img {
        border-radius: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border: 0px solid rgba(170, 146, 217, 0.5);
    }
    .mySwiper5 .swiper-slide svg {
        border-radius: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border: 0px solid rgba(170, 146, 217, 0.5);
    }
    .mySwiper5 .card-image-container {
        border-radius: 100%;
        width: auto;
        height: auto;
        background: transparent;
    }
    .mySwiper5 .swiper-slide img {
        background: transparent;
    }
    .mySwiper5 .swiper-slide svg {
        background: transparent;
    }
    .mySwiper5 .craft-title {
        font-size: 10px;
        margin-top: 10px;
    }
    .wrapBanner {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .header .navbar-toggler {
        border: 0;
        margin-right: 15px;
        padding: 0;
    }
    .header .navbar-toggler .menu-burger {
        width: 25px;
    }
    .mySwiper5 .swiper-wrapper {
        justify-content: center;
    }
    header .container-fluid {
        padding: 3px 10px;
    }
    .closeIcon {
        background-image: url(../images/closeBtn1.svg);
        width: 20px;
        height: 21px;
        background-size: 100%;
        position: relative;
        top: 4px;
    }
    .crafts-section.top,
    .crafts-section.top .container-fluid {
        padding-top: 0;
        padding-bottom: 0;
    }
    .bgModal .modal-content .m25 {
        flex-wrap: wrap;
    }
    .bgModal .modal-content {
        padding: 20px 10px;
        background: #7c5cbe;
    }
    .gift-box-image {
        height: auto;
        width: 100px;
    }
    .benefitWrap {
        display: none;
    }
    .login-left-side,
    .register-right-side {
        box-shadow: none;
        padding: 0;
    }
    .other-benefits {
        margin-top: 10px;
        padding-bottom: 15px;
    }
    .bgModal .modal-content .m25 {
        gap: 0px;
    }
    .other-benefits h3 {
        margin-bottom: 0;
        font-size: 15px;
    }
    .product-grid .product-image {
        height: auto;
    }
    .product-grid .product-image img {
    }
    .filter-dropdowns .filter-dropdown {
        display: none;
    }
    .filter-dropdowns .filterBtn {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .collection-title {
        font-size: 2.5rem;
    }
    .collection-subtitle {
        font-size: 1.3rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
    .hero-text {
        text-align: center;
        padding: 1rem;
    }
    .search-box {
        margin: 1rem 0;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .collection-card {
        padding: 1.5rem 1rem;
    }
    .card-image-wrapper {
        height: 120px;
        margin-bottom: 1rem;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .hero-content,
    .hero-section {
        min-height: auto;
    }
    .hidden-item {
        display: none;
    }
    .hidden-item.show {
        display: block;
        animation: fadeIn 0.5s ease;
    }
    .hero-section .swiper-pagination {
        bottom: 24px;
        column-gap: 2px;
    }
    .mySwiper2 .swiper-button-next {
        right: 0;
        width: 30px;
        height: 30px;
        background-size: 100%;
    }
    .mySwiper2 .swiper-button-prev {
        left: 0;
        width: 30px;
        height: 30px;
        background-size: 100%;
    }
    .mySwiper6 .swiper-button-next {
        right: 0;
        width: 30px;
        height: 30px;
        background-size: 100%;
    }
    .mySwiper6 .swiper-button-prev {
        left: 0;
        width: 30px;
        height: 30px;
        background-size: 100%;
    }
    .mySwiper2 .swiper-slide img {
        object-fit: contain;
        width: 128px;
        height: 100px;
    }
    .mySwiper2 .swiper-slide svg {
        object-fit: contain;
        width: 128px;
        height: 100px;
    }
    .crafts-section.ty02 .share-button {
        top: 5px;
        right: 5px;
    }
    .crafts-section.ty03 .categories-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px 20px;
    }
    .crafts-section.ty03 .card-image {
        width: 200px;
    }
    .crafts-section.ty03 .card-content {
        max-width: 85%;
    }
    .trendingJew {
        padding-bottom: 60px;
    }
    .trendingJew .swiper-button-next,
    .trendingJew .swiper-button-prev {
        top: 100%;
        width: 50px;
        height: 50px;
    }
    .crafts-section.ty03 .category-title,
    .crafts-section.ty02 .product-price {
        font-size: 1rem;
    }
    .hero-section .swiper-slide img {
        height: auto;
    }
    .hero-section .swiper-slide svg {
        height: auto;
    }
    .crafts-section.ty03 .section-subtitle {
        font-size: 12px;
        padding-bottom: 0;
    }
    .crafts-section.ty03 .category-description {
        width: 50%;
        font-size: 12px;
    }
    .crafts-section.ty03 {
        padding: 0rem 0;
        padding-bottom: 0rem;
    }
    .secGA .row > * {
        padding-right: 0;
        padding-left: 0;
    }
    .crafts-section.ty03 .categories-grid.shop .category-card {
        margin: 0;
        min-height: 140px;
    }
    .search-results {
        padding-bottom: 100px;
    }
    .mySwiper5 .craft-card:hover,
    .mySwiper5 .craft-card:hover .card-image-container {
        transform: inherit !important;
    }
}

@media (max-width: 576px) {
    .collection-title {
        font-size: 2rem;
    }
    .hero-tagline {
        font-size: 1rem;
    }
    .nav-icon-item i {
        font-size: 1.2rem;
    }
    .nav-icon-item span {
        font-size: 0.65rem;
    }
    .key-collection-section {
        padding: 0rem 0;
    }
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .collection-card {
        padding: 3px;
        border-radius: 15px;
        margin: 15px 5px;
        margin-top: 0;
    }
    .card-image-wrapper {
        height: 100px;
        margin-bottom: 0.8rem;
        padding: 0;
    }
    .card-title {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.2rem;
        margin-top: 10px;
    }
    .section-header.ty02 .seeMore {
        font-size: 1.2rem;
    }
    .crafts-section.ty02 .craft-description {
        font-size: 0.8rem;
        line-height: 21px;
    }
    .crafts-section.ty02 .view-more-link {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    .section-subtitle {
        font-size: 12px;
    }
    .crafts-carousel {
        padding: 0 40px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
    .craft-card {
        padding: 0;
    }
    .card-image-container {
        height: auto;
        padding: 0;
    }
    .craft-title {
        font-size: 12px;
        margin-bottom: 0.8rem;
    }
    .craft-description {
        font-size: 10px;
        padding: 0 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .crafts-section.ty02 .craft-card .card-image-container {
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        grid-auto-rows: 120px;
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-bar-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .filter-controls {
        width: 100%;
    }
    .sort-section {
        width: 100%;
    }
    .stock-section {
        width: 100%;
    }
    .sort-btn {
        width: 100%;
        justify-content: space-between;
    }
    .stock-btn {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .filter-dropdowns {
        width: 100%;
    }
    .filter-btn {
        flex: 1;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .filterSection {
        width: 100%;
        max-width: 320px;
    }
    .wrapFilter {
        position: relative;
    }
    .filterSection.show::before {
        left: 100%;
        width: 0;
    }
    .filterBtn {
        width: 100%;
    }
    .filterSection {
        position: absolute;
        z-index: 99;
        width: 100%;
        left: 28px;
        top: 0;
    }
}

@media screen and (max-width: 991px) {
    .mobile_footer_menu {
        display: block;
    }
    .mobile_footer_menu2 {
        display: block;
    }
    body {
        padding-bottom: 65px !important;
    }
    .footer-section {
        margin-bottom: 0px;
    }
    .navbar-collapse {
        background-color: #fff;
    }
    .menu-links .nav-link {
        justify-content: flex-start;
    }
    .wrap-search {
        position: fixed;
        top: 57px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        padding-top: 0;
        height: 100vh;
    }
    .wrap-search .search-box input {
        margin: auto;
    }
    .searchIcon {
        width: 25px;
        height: 25px;
    }
    .cartIcon {
        width: 26px;
        height: 26px;
    }
    .accountIcon {
        width: 25px;
        height: 22px;
    }
    .header .nav-icons {
        gap: 1rem;
    }
    .terms-agreement {
        font-size: 12px;
    }
    .terms-agreement small {
        display: block;
    }
    .breadcrumb {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .filter-bar-wrapper {
        padding-top: 0;
        display: flex;
        flex-direction: row;
        display: grid;
        grid-template-columns: 47% 47%;
    }
    .filter-dropdowns {
        gap: 5px;
    }
    .tlColletion {
        top: -34px;
        letter-spacing: 0px;
        font-size: 25px;
        margin-bottom: 0px;
    }
    .sort-section {
        display: inherit;
    }
    .stock-section {
        display: inherit;
    }
    .filter-dropdowns .filterBtn {
        width: 100%;
    }
    .filter-bar-wrapper {
        position: fixed;
        top: 57px;
        z-index: 9;
        width: 100%;
        left: 0;
        right: 0;
        margin: auto;
        background: #fafafa;
        padding: 10px;
    }
    .filter-container {
        border: 0;
        box-shadow: none;
        padding-bottom: 60px;
    }
    .selected-filters {
        display: none;
    }
    .tCenter {
        text-align: center;
    }
    .tCenter .breadcrumb {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .footer_menu_item {
        padding: 6px 10px;
    }
    .menu_icon {
        width: 23px;
        height: 23px;
    }
    .menu_text {
        font-size: 12px;
    }
}

@media screen and (max-width: 576px) {
    .footer_menu_item {
        padding: 6px 8px;
        min-width: 50px;
    }
    .menu_icon {
        width: 22px;
        height: 22px;
        margin-bottom: 3px;
    }
    .footer_menu_container {
        padding: 0;
    }
}

.footer_menu_item .badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: #ff4444;
    color: white;
    border-radius: 10px;
    padding: 2px 5px;
    font-size: 9px;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
    line-height: 1.2;
}
.footer_menu_item {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
    tap-highlight-color: rgba(0, 0, 0, 0.05);
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile_footer_menu {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile_footer_menu2 {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details {
        padding-left: 0;
        margin-top: 30px;
    }
    .current-price {
        font-size: 24px;
    }
    .original-price {
        font-size: 16px;
    }
    .product-title {
        font-size: 20px;
    }
    /*.action-buttons {flex-direction: column;}*/
    .add-to-cart-btn,
    .bulk-order-btn {
        width: 100%;
    }
    .thumbnail-wrapper {
        padding-bottom: 10px;
    }
    .thumbnail-item {
        min-width: 80px;
        height: 80px;
    }
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    .slider-arrow-left {
        left: -10px;
    }
    .slider-arrow-right {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding: 10px;
    }
    .current-price {
        font-size: 20px;
    }
    .original-price {
        font-size: 14px;
    }
    .product-title {
        font-size: 18px;
    }
    .offer-item {
        padding: 12px;
    }
    .offer-text {
        font-size: 13px;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #carousel .slides li {
        width: 70px !important;
        height: 70px;
    }
    .flex-direction-nav a {
        width: 35px;
        height: 35px;
    }
    .flex-direction-nav a.flex-prev {
        left: 10px;
    }
    .flex-direction-nav a.flex-next {
        right: 10px;
    }
    /*.craft-card {box-shadow:none;}*/
    .crafts-section.t1 {
        padding-bottom: 1rem;
    }
    .wrapJewelry {
        overflow: scroll;
    }
    .wrapJewelry .jewelry-grid {
        width: 1200px;
    }
    .crafts-section.ty02 .craft-description {
        padding: 5px 15px;
    }
    .crafts-section.ty02 .col-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 480px) {
    #carousel .slides li {
        width: 60px !important;
        height: 60px;
    }
    #carousel .slides {
        gap: 8px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    /*.login-left-side,.register-right-side {display: none;}*/
    .login-right-side,
    .register-left-side {
        padding: 30px 20px;
        text-align: center;
    }
    .btn-request-otp {
        width: 125px;
        text-align: center;
        padding: 10px 0;
    }
    .country-code-select {
        padding-right: 0;
    }
    .login-form-container h2 {
        font-size: 22px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-results .section-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .search-results .search-tags {
        gap: 10px;
    }
    .search-results .search-tag {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .search-results .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .search-results .product-info {
        padding: 15px;
    }
    .search-results .product-title {
        font-size: 0.95rem;
    }
    .search-results {
        top: 130px;
    }
}

@media (max-width: 480px) {
    .search-results .section-title {
        font-size: 1rem;
    }
    .search-results .search-tag {
        padding: 7px 12px;
        font-size: 0.85rem;
    }
    .search-results .search-tag svg {
        width: 14px;
        height: 14px;
    }
    .search-results .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .search-results .product-title {
        font-size: 0.9rem;
    }
}

/* Grid Optimization for larger screens */
@media (min-width: 1024px) {
    .search-results .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1400px) {
    .search-results .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.outside-india-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.outside-india-checkbox .form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border: 2px solid #7c5cbe;
    margin: 0;
}
.outside-india-checkbox .form-check-input:checked {
    background-color: #7c5cbe;
    border-color: #7c5cbe;
}
.outside-india-checkbox .form-check-label {
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
}
.email-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24%;
    border: 1px solid #7c5cbe;
    border-radius: 50px;
}
.email-input-group .form-control {
    flex: 1;
    padding: 11px 15px;
    border: 0px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
}
.email-input-group .form-control:focus {
    outline: none;
    border-color: #7c5cbe;
    box-shadow: 0 0 0 3px rgba(124, 92, 190, 0.1);
}
.email-input-group .btn-request-otp {
    background-color: #7c5cbe;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    width: 100px;
    height:43px;
    text-align: center;
    padding: 13px 0;
    font-size: 12px;
}
.email-input-group .btn-request-otp:hover {
    background-color: #6a4da8;
    box-shadow: 0 4px 12px rgba(124, 92, 190, 0.3);
}
.otp-verification-section {
    margin-top: 20px;
}
.otp-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.otp-sent-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.otp-sent-text span {
    font-weight: 600;
    color: #7c5cbe;
}
.otp-input-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.otp-input {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.otp-input:focus {
    outline: none;
    border-color: #7c5cbe;
    box-shadow: 0 0 0 3px rgba(124, 92, 190, 0.1);
}
.otp-input.filled {
    border-color: #7c5cbe;
    background-color: #f8f5ff;
}
/* .resend-otp-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.resend-otp-text span {
    color: #7c5cbe;
    font-weight: 600;
} */
.resend-otp-text {
    text-align: center;
    font-size: 14px;
    color: #8b8b8b; /* faint grey text */
    margin-bottom: 20px;
    font-weight: 400;
}

/* ONLY TIMER PURPLE */
#otpTimer {
    color: #7c5cbe; /* purple */
    font-weight: 600; /* slightly bold looks better */
}
#otpTimerReg {
    color: #7c5cbe; /* purple */
    font-weight: 600; /* slightly bold looks better */
}
.btn-verify-otp {
    width: 100%;
    padding: 8px;
    background-color: #7c5cbe;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.btn-verify-otp:hover {
    background-color: #6a4da8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 92, 190, 0.3);
    color: #fff;
}
.btn-verify-otp:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}
.btn-change-number {
    width: 100%;
    padding: 8px;
    background-color: transparent;
    color: #7c5cbe;
    border: 2px solid #7c5cbe;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-change-number:hover {
    background-color: #f8f5ff;
    border: 2px solid #7c5cbe;
}
@media (max-width: 768px) {
    .otp-input {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.modal.left {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff0;
    backdrop-filter: blur(20px);
}
.modal.left .modal-dialog {
    position: fixed;
    margin: 0;
    width: auto;
    max-width: 90%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.modal.left.show .modal-dialog {
    transform: translateX(0);
}
.modal.left .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: none;
    padding-bottom: 70px;
}
.modal-backdrop {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.modal-backdrop.show {
    opacity: 0.5;
}
.filterBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 30px;
    background-color: #fff;
    border: 1px solid #886fbf;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filterBtn:hover,
.filterBtn:active {
    background-color: #f8f9fa !important;
    border-color: #999 !important;
    color: #000 !important;
}
.filterBtn i {
    color: #886fbf;
}
.filterBtn img {
    width: 20px;
    height: 20px;
}
.btn-close-filter {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.btn-close-filter:hover {
    transform: scale(1.1);
}
.btn-close-filter svg {
    width: 24px;
    height: 24px;
}

.modal.left .modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal.left .modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.modal.left .modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
.modal.left .modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .modal.left .modal-dialog {
        max-width: 85%;
        width: 85%;
    }
}

@media (max-width: 480px) {
    .modal.left .modal-dialog {
        max-width: 100%;
        width: 100%;
    }
}

/* Animation for smooth appearance */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.modal.left.show .modal-dialog {
    animation: slideInFromLeft 0.3s ease-in-out;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    background: #fff0;
    backdrop-filter: blur(20px);
}
.sort-modal {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-overlay.active .sort-modal {
    transform: scale(1);
}
.stock-modal {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-overlay.active .stock-modal {
    transform: scale(1);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}
.close-btn {
    background: none;
    border: none;
    font-size: 34px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.close-btn:hover {
    color: #333;
}
.modal-body {
    padding: 8px 0;
}
.sort-option {
    padding: 10px 24px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}
.sort-option:hover {
    background-color: #f5f5f5;
}
.sort-option.active {
    color: #aa92d9;
    font-weight: 700;
}
.sort-option span {
    font-size: 15px;
    display: block;
}
.stock-option {
    padding: 10px 24px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}
.stock-option:hover {
    background-color: #f5f5f5;
}
.stock-option.active {
    color: #aa92d9;
    font-weight: 700;
}
.stock-option span {
    font-size: 15px;
    display: block;
}
.products-section {
    background-color: #fff;
    padding: 20px 0;
    min-height: 400px;
}
.active-filters {
    margin-bottom: 20px;
}
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 14px;
}
.close-icon {
    cursor: pointer;
    font-weight: bold;
    color: #666;
}
.close-icon:hover {
    color: #333;
}

@media (max-width: 768px) {
    .filter-section .container {
        flex-direction: column;
        gap: 15px;
    }
    .filter-controls {
        width: 100%;
        justify-content: space-between;
    }
    .sort-control {
        width: 100%;
    }
    .sort-btn {
        width: 100%;
    }
    .stock-btn {
        width: 100%;
    }
    .sort-modal {
        width: 95%;
        margin: 0 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-overlay.active {
    animation: fadeIn 0.3s ease;
}
.modal-overlay.active .sort-modal {
    animation: slideUp 0.3s ease;
}
.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}
.product-img-primary {
    position: relative;
    opacity: 1;
    z-index: 1;
}
.product-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
}
.product-card:hover .product-img-primary {
    opacity: 0;
}
.product-card:hover .product-img-secondary {
    opacity: 1;
}
.rating-badge {
    position: absolute;
    z-index: 3;
}
.wishlist-btn {
    position: absolute;
    z-index: 3;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
}
.product-card.smooth-fade .product-img-primary,
.product-card.smooth-fade .product-img-secondary {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card.quick-fade .product-img-primary,
.product-card.quick-fade .product-img-secondary {
    transition: opacity 0.3s ease-in-out;
}
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.wishlist-btn i {
    font-size: 20px;
    color: #8b5cf6;
    transition: all 0.3s ease;
}
.wishlist-btn .fa-heart {
    font-weight: 400;
}
.wishlist-btn.active i,
.wishlist-btn.wishlisted i {
    color: #8b5cf6;
    font-weight: 900;
}
.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
.wishlist-btn.active {
    animation: heartPulse 0.3s ease-in-out;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.wishlist-btn-alt {
    position: relative;
}
.wishlist-btn-alt i::before {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .wishlist-btn {
        width: 36px;
        height: 36px;
    }
    .wishlist-btn i {
        font-size: 18px;
    }
}
.wishlist-btn.purple-light i {
    color: #a78bfa;
}
.wishlist-btn.purple-dark i {
    color: #7c5cbe;
}
.wishlist-btn:active {
    transform: scale(0.95);
}
.filterSection .accordion {
    margin-top: 10px;
}
#wishlist-btn.purple-dark i {
    color: #7c5cbe;
}
.wishlist-btn i {
    color: #ccc;
    transition: 0.3s ease;
}

.wishlist-btn.active i {
    color: #7c3aed;
}
/* Default Heart Color */
#wishlist-btn i {
    color: black; /* Gray */
    transition: 0.3s ease;
}

/* Active (Wishlisted) Color */
#wishlist-btn.active i {
    color: #8b5cf6; /* Purple */
}

/* Optional hover glow */
#wishlist-btn:hover i {
    color: #7c3aed;
}

.filterSection .accordion-button {
    background: none !important;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #000 !important;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0 !important;
}
.filterSection .accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
    box-shadow: none;
}
.filterSection .accordion-item {
    border: none;
    margin-bottom: 8px;
    padding: 0;
}
.filterSection .accordion-body {
    padding: 10px 18px 15px;
}
.filterSection .accordion-body .filter-options {
    gap: 0px;
}
.filterSection .filter-section-title {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.filterSection .filter-options {
    max-height: 140px;
    overflow-y: auto;
    padding-right: 6px;
}
.filterSection .filter-options::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.filterSection .filter-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.filterSection .filter-options::-webkit-scrollbar-thumb {
    background: #7c5cbe;
    border-radius: 10px;
}
.filterSection .filter-options::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.selected-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #7c5cbe #f1f1f1;
}
.selected-filters::-webkit-scrollbar {
    height: 6px;
}
.selected-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.selected-filters::-webkit-scrollbar-thumb {
    background: #7c5cbe;
    border-radius: 10px;
}
.selected-filters::-webkit-scrollbar-thumb:hover {
    background: #6a4da8;
}
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 12px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-bottom: 8px;
    margin-top: 8px;
}
.btn-clear-all {
    display: inline-flex;
    color: #fff;
    align-items: center;
    gap: 6px;
    background: #aa92d9;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 5px 12px;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 14px;
}
.btn-clear-all:hover {
    background: #7c5cbe;
}
.proDetails .product-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}
.proDetails .product-title.v1 {
    text-align: left;
    margin: 0;
}
.proDetails .product-price {
    font-size: 32px;
    font-weight: 700;
}
.proDetails .product-subtext {
    font-size: 12px;
    color: #777;
}
.try-btn {
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: #fff;
    font-size: 14px;
}
.proDetails .product-price.mb-1 {
    margin-bottom: 0 !important;
}
.icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}
.icon-btn:hover {
    background: #f8f8f8;
}
.icon-btn.me-3 i {
    display: flex;
    justify-content: center;
    align-items: center;
}
.proDetails .try-on-divider {
    width: 1px;
    height: 32px;
    background: #e0e0e0;
    margin-right: 10px;
}
.proDetails .try-btn:hover {
    border: 1px solid #e5e5e5;
    background: #aa92d9;
    color: #fff;
}
.product-container {
    text-align: center;
}
.product-container .m50 {
    padding: 5px;
}
.product-container .fullWidth {
    width: 100%;
}
.product-container.four-images {
    padding: 0 10px;
}
.ProductDetaSection .detail-card {
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.ProductDetaSection .detail-card:hover {
    box-shadow: 0 4px 12px var(--shadow-light);
}
.ProductDetaSection .detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: #ffffff;
    transition: background-color 0.3s ease;
    user-select: none;
}
.ProductDetaSection .detail-header:hover {
    background-color: var(--bg-light);
}
.ProductDetaSection .detail-header.collapsed .toggle-icon {
    transform: rotate(0deg);
}
.ProductDetaSection .detail-header:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}
.ProductDetaSection .detail-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}
.ProductDetaSection .icon-style {
    color: var(--primary-gold);
    font-size: 18px;
}
.ProductDetaSection .toggle-icon {
    color: var(--text-light);
    font-size: 14px;
    transition: transform 0.3s ease;
}
.ProductDetaSection .detail-body {
    padding: 20px;
    background-color: var(--bg-light);
    border-top: 1px solid #ccc;
}
.ProductDetaSection .detail-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ProductDetaSection .detail-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}
.ProductDetaSection .info-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}
.ProductDetaSection .info-value {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}
.ProductDetaSection .description-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}
.ProductDetaSection .product-image-section {
    padding: 0px;
    position: sticky;
    top: 20px;
}
.ProductDetaSection .sku-number {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}
.sku-number {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}
.ProductDetaSection .product-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-light);
    margin-bottom: 20px;
}
.ProductDetaSection .product-image {
    width: 100%;
    height: 61vh;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.ProductDetaSection .service-info {
    background: linear-gradient(135deg, #f5e6d3 0%, #f9f3eb 100%);
    border-radius: 8px;
    padding: 15px 18px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.1);
}
.ProductDetaSection .service-icon {
    background-color: var(--primary-gold);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
    font-size: 20px;
}
.ProductDetaSection .service-text {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
}
@media (max-width: 991px) {
    .ProductDetaSection .product-image-section {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    .ProductDetaSection .details-section {
        padding: 10px 0;
    }
}
@media (max-width: 768px) {
    .ProductDetaSection .detail-title {
        font-size: 13px;
    }
    .ProductDetaSection .icon-style {
        font-size: 16px;
    }
    .ProductDetaSection .info-value {
        font-size: 14px;
    }
    .ProductDetaSection .detail-value {
        font-size: 13px;
    }
    .ProductDetaSection .sku-number {
        font-size: 11px;
        text-align: center;
    }
    .ProductDetaSection .service-info {
        padding: 12px 15px;
    }
    .ProductDetaSection .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .ProductDetaSection .service-text {
        font-size: 12px;
    }
}
@media (max-width: 576px) {
    .ProductDetaSection .detail-header {
        padding: 15px;
    }
    .ProductDetaSection .detail-body {
        padding: 15px;
    }
    .ProductDetaSection .detail-body .mb-4 {
        margin-bottom: 0 !important;
    }
}

.DeliveryDetaSection {
}
.DeliveryDetaSection .delivery-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.DeliveryDetaSection .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}
.DeliveryDetaSection .custom-select {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}
.DeliveryDetaSection .custom-select:focus {
    border-color: #aa92d9;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
}
.DeliveryDetaSection .custom-select option {
    padding: 10px;
}
.DeliveryDetaSection .pincode-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.DeliveryDetaSection .input-group {
    flex: 1;
    background-color: #fef5e7;
    border-radius: 8px;
    overflow: hidden;
}
.DeliveryDetaSection .pincode-icon {
    background-color: #fef5e7;
    border: none;
    padding: 0.75rem 1rem;
    color: #aa92d9;
}
.DeliveryDetaSection .pincode-input {
    height: 50px;
    border: none;
    background-color: #fef5e7;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    color: #333;
}
.DeliveryDetaSection .pincode-input:focus {
    background-color: #fef5e7;
    box-shadow: none;
    border: none;
}
.DeliveryDetaSection .pincode-input::placeholder {
    color: #999;
}
.DeliveryDetaSection .btn-check1 {
    position: relative;
    background-color: transparent;
    border: none;
    color: #aa92d9;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: left;
    display: flex;
    align-items: center;
}
.DeliveryDetaSection .btn-check1:hover {
    color: #aa92d9;
}
.DeliveryDetaSection .btn-check1 i {
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .DeliveryDetaSection .delivery-section {
        padding: 1.5rem;
    }
    .DeliveryDetaSection .section-title {
        font-size: 1.25rem;
    }
    .DeliveryDetaSection .custom-select,
    .pincode-input {
        font-size: 0.9rem;
    }
}

.promo-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 350px;
    text-align: left;
}
.promo-banner:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}
.promo-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #aa92d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}
.promo-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}
.promo-content {
    flex: 1;
}
.promo-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}
.promo-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
.promo-text br {
    display: block;
}
@media (max-width: 576px) {
    .promo-banner {
        padding: 1rem 1.25rem;
    }
    .promo-icon {
        width: 40px;
        height: 40px;
    }
    .promo-icon i {
        font-size: 1.1rem;
    }
    .promo-title {
        font-size: 1rem;
    }
    .promo-text {
        font-size: 0.85rem;
    }
}

.DeliveryDetaSection .checkAvalSection {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.DeliveryDetaSection .availability-content {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
}
.DeliveryDetaSection .store-availability {
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.DeliveryDetaSection .store-availability i.fa-store {
    color: #aa92d9;
    font-size: 20px;
    margin-bottom: 5px;
}
.DeliveryDetaSection .availability-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.DeliveryDetaSection .availability-title {
    font-size: 16px;
    color: #a879d2;
    margin: 5px 0;
    font-weight: 600;
}
.DeliveryDetaSection .find-store-link {
    color: #aa92d9;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    transition: color 0.3s ease;
}
.DeliveryDetaSection .find-store-link:hover {
    color: #a879d2;
}
.DeliveryDetaSection .find-store-link i {
    font-size: 10px;
}
.DeliveryDetaSection .store-availability .sec1 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ReviewsDetaSection .review-box {
    background: linear-gradient(180deg, #e5dbf9, #aa92d9);
    padding: 60px 20px;
    border-radius: 10px;
    color: #fff;
}
.ReviewsDetaSection .review-stars i {
    color: #fff;
    font-size: 22px;
}
.ReviewsDetaSection .review-btn {
    background: #aa92d9;
    color: #fff;
    border-radius: 30px;
    padding: 5px 18px;
    font-weight: 600;
}
.ReviewsDetaSection .review-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 25px;
    display: flex;
}
.ReviewsDetaSection .review-stars-small i {
    color: #e3b551;
    font-size: 18px;
}
.ReviewsDetaSection .review-title {
    font-size: 16px;
    font-weight: 600;
}
.ReviewsDetaSection .review-text {
    font-size: 14px;
    color: #444;
}
.ReviewsDetaSection .review-card .text-left {
    text-align: left;
}
.ReviewsDetaSection .review-input {
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
}
.review-card .reviwPers img {
    border-radius: 15px;
}
.rating .star {
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
    transition: 0.2s;
}
.rating .star.active,
.rating .star:hover,
.rating .star:hover ~ .star {
    color: #a879d2;
}
#reviewModal .send-btn {
    background: #aa92d9;
    color: #fff;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
}
#reviewModal .send-btn:hover {
    background: #a879d2;
}
#reviewModal .modal-content {
    border-radius: 16px !important;
}
.productTopbar {
    transition: all 0.3s ease;
    z-index: 100;
    display: none !important;
}
.productTopbar.fixed-topbar {
    position: fixed;
    top: 97px;
    left: 0;
    right: 0;
    background: #f2e4f5;
    padding: 7px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9;
    animation: slideDown 0.3s ease-out;
    opacity: 1;
    display: flex !important;
}
.productTopbar .try-btn {
    padding: 4px 10px !important;
}
body.productTopbar-fixed {
    padding-top: 80px;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.productTopbar .icon-btn {
    width: 31px;
    height: 31px;
    font-size: 12px;
}
.promoSec1 {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.try-btn.active {
    background-color: #aa92d9;
    color: #fff;
    border: 0;
}

@media (max-width: 991px) {
    .promoSec1 {
        display: grid;
    }
    .productTopbar.fixed-topbar {
        padding: 10px 15px;
        top: 30px;
    }

    .productTopbar.fixed-topbar .try-btn {
        padding: 8px 12px !important;
        font-size: 12px;
        margin: 2px !important;
    }

    .productTopbar.fixed-topbar .icon-btn {
        width: 35px;
        height: 35px;
    }
    .promoSec1 {
        display: grid;
    }
}

.product-cart-section-fixed {
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 8px;
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 600px;
    box-shadow: 0px 6px 4px 0 #e3e3e380;
    border: 1px solid #ccc;
}
.product-cart-section-fixed .price-weight-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
    padding: 8px 15px;
    margin-bottom: 0px;
}
.product-cart-section-fixed .price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}
.product-cart-section-fixed .price-section .dropdown {
    width: 100%;
}

.product-cart-section-fixed .price-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.product-cart-section-fixed .weight-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(209, 189, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 98%;
    position: relative;
    border: 0;
}
.product-cart-section-fixed .weight-selector:hover {
    background: #e9ecef;
}
.product-cart-section-fixed .weight-icon {
    color: #666;
    font-size: 14px;
}
.product-cart-section-fixed .weight-text {
    font-size: 14px;
    color: #666;
    margin: 0 5px 0 0;
    width: 100%;
    text-align: left;
}
.product-cart-section-fixed .weight-value {
    font-weight: 600;
    color: #333;
}
.product-cart-section-fixed .dropdown-icon {
    color: #666;
    font-size: 12px;
    position: absolute;
    right: 12px;
}
.product-cart-section-fixed .add-to-cart-btn {
    background: #aa92d9;
    color: white;
    border: none;
    padding: 5px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-cart-section-fixed .add-to-cart-btn:hover {
    background: #a879d2;
}
.product-cart-section-fixed .add-to-cart-btn:active {
    transform: translateY(0);
}
.mySwiper2.v1 .swiper-slide img {
    width: 100px;
}
.mySwiper2.v1 .swiper-slide svg {
    width: 100px;
}
.mySwiper2.v1 .swiper-slide .p1 {
    font-size: 12px;
    padding-top: 5px;
    margin: 0;
}
.mySwiper2.v1 .swiper-slide .p2 {
    font-size: 12px;
    padding: 0;
    margin: 0;
}
.mySwiper2.v1 .swiper-slide .craft-card {
    height: 135px;
    box-shadow: 0px 0px 10px #ccc;
    margin: 0;
}
.swiper.mySwiper2.v1 {
    overflow: hidden;
}
.mySwiper2.v1 .swiper-button-next {
    width: 30px;
    height: 30px;
    right: -7px;
}
.mySwiper2.v1 .swiper-button-prev {
    width: 30px;
    height: 30px;
    left: -7px;
}

.mySwiper2a.v1 .swiper-slide img {
    width: 95px;
    height: 60px;
}
.mySwiper2a.v1 .swiper-slide svg {
    width: 95px;
    height: 60px;
}
.mySwiper2a.v1 .swiper-slide .p1 {
    font-size: 12px;
    padding-top: 5px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mySwiper2a.v1 .swiper-slide .p2,
.mySwiper2a.v1 .swiper-slide .p3 {
    font-size: 12px;
    padding: 0;
    margin: 0;
    display: none;
}
.mySwiper2a.v1 .swiper-slide .craft-card {
    height: 115px;
    box-shadow: 0px 0px 10px #ccc;
    margin: 0;
}
.swiper.mySwiper2a.v1 {
    overflow: hidden;
}
.mySwiper2a.v1 .swiper-button-next {
    width: 30px;
    height: 30px;
    right: -7px;
}
.mySwiper2a.v1 .swiper-button-prev {
    width: 30px;
    height: 30px;
    left: -7px;
}
.mySwiper2a .swiper-button-next {
    display: flex;
    right: -40px;
    background-image: url(../images/rightArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.mySwiper2a .swiper-button-prev {
    left: -40px;
    display: flex;
    background-image: url(../images/leftArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}

h5.product-title.v2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding: 0;
}
.mySwiper2a .swiper-button-next:after,
.mySwiper2a .swiper-button-prev:after {
    content: none;
}
/* Hide thumbnails by default */
.fancybox__thumbs {
    display: none !important;
}

/* Show thumbnails when active */
.fancybox__thumbs.is-masked {
    display: block !important;
    max-height: 68px !important;
}

.productTopbar .try-btn:hover {
    background: #aa92d9;
    color: white;
}
.mySwiper2a.v1 .swiper-pagination {
    bottom: 9px;
}
.mySwiper2a.v1 .swiper-pagination-bullet {
    background: #aa92d9;
    opacity: 0.4;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border-radius: 0;
}

.mySwiper2a.v1 .swiper-pagination-bullet-active {
    background: #aa92d9;
    opacity: 1;
}
.filter_buttons__container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: auto;
}
.filter_buttons__container .clear-all-button,
.filter_buttons__container .show-results-button {
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: #7c5cbe;
    color: #fff;
    font-size: 14px;
    width: 64%;
    padding: 5px 5px;
}
.filter_buttons__container button:hover {
    border: 1px solid #e5e5e5;
    background: #aa92d9;
    color: #fff;
}
.container-fluid.noPadding {
    padding: 0;
}
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-thumbnail:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail:hover .play-icon circle {
    fill: rgba(0, 0, 0, 0.8);
}
.productDetailsPage .breadcrumb {
    margin-bottom: 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* When there are exactly 3 images */
.image-grid .image-item:first-child:nth-last-child(3),
.image-grid
    .image-item:first-child:nth-last-child(3)
    ~ .image-item:nth-child(2) {
    /* First 2 images stay in their columns */
}

.image-grid
    .image-item:first-child:nth-last-child(3)
    ~ .image-item:nth-child(3) {
    /* 3rd image spans both columns and centers itself */
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    justify-self: center;
}
.image-grid .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
/*@media (max-width: 600px) {*/
/*.image-grid {*/
/*grid-template-columns: 1fr;*/
/*margin-bottom: 20px;*/
/*}*/

/*.image-grid .image-item:first-child:nth-last-child(3) ~ .image-item:nth-child(3) {*/
/*max-width: 100%;*/
/*}*/
/*}*/
.filterSection .accordion-item .accordion-button::after {
    content: none;
}
.filterSection .accordion-item .accordion-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    position: relative;
}
.filterSection .accordion-item .accordion-header .search-submit-btn {
    border: 0;
    background: none;
    top: -3px;
    position: relative;
}
.filterSection .accordion-item .accordion-header .accordion-button {
    border: 0;
    padding: 5px 10px;
    margin: 0;
    text-transform: capitalize;
}
.filterSection .accordion-item .accordion-header .search-submit-btn i {
    font-size: 20px;
    color: #7c5cbe;
}
.filterSection .accordion-item .accordion-header .inputGroup {
    position: absolute;
    left: 0;
    background: #ccc;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0;
    z-index: 999;
    width: 81%;
    top: 7px;
    font-size: 0;
}
.filterSection .accordion-item .accordion-header .inputGroup .search1 {
    background: #aa92d9;
    border-radius: 10px;
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
}

.clear-search-btn {
    position: absolute;
    right: 0px;
    z-index: 999;
    font-size: 19px;
    bottom: 0;
    right: 11px;
    background: none;
    border: 0;
    top: 0;
    color: #fff;
}

.clear-search-btn:hover {
    color: #333;
}
.filter-bar-wrapper .sort-section .sort-btn i {
    color: #7c5cbe;
}
.filter-bar-wrapper .stock-section .stock-btn i {
    color: #7c5cbe;
}
.ribbon-bestseller {
    background: linear-gradient(
        90deg,
        rgba(181, 160, 229, 0.9) 0%,
        rgba(221, 210, 248, 0.9) 135%
    ) !important;
    left: 0;
    top: 0;
    height: 30px;
    padding: 7px 12px;
    border-radius: 0 0 12px;
    position: absolute;
    color: #fff;
    line-height: 16px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.product-image {
    border-radius: 4px;
    width: 100%;
}
.customer-photo img,
.review-photos img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 6px;
}
.review-card {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}
.rating-badge {
    background: #aa92d9;
    color: #fff;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 5px;
    position: absolute;
    left: -7px;
}
.helpful-icons i {
    font-size: 15px;
    margin-left: 10px;
    cursor: pointer;
    color: #555;
}

.crafts-section .mySwiper2 .swiper-slide img {
    width: 150px;
}
.crafts-section .mySwiper2 .swiper-slide svg {
    width: 150px;
}

@media (max-width: 1299px) {
    .menu-links .nav-link {
        padding: 0.6rem 1rem !important;
    }
}

@media (max-width: 1199px) {
    .menu-links .nav-link {
        padding: 0.7rem 0.7rem !important;
        padding-left: 0 !important;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .product-cart-section-fixed {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 90%;
        bottom: 65px;
    }
    .product-cart-section-fixed .price-section {
        width: 100%;
    }
    .product-cart-section-fixed .weight-selector {
        width: 65%;
    }
    .product-cart-section-fixed .add-to-cart-btn {
        width: 100%;
        padding: 5px 12px;
    }
    .product-cart-section-fixed .price-text {
        font-size: 14px;
    }
    .product-cart-section-fixed .dropdown-icon {
        right: 0;
    }
    .swiper.mySwiper2.v1 {
        margin-bottom: 50px;
    }
    .swiper.mySwiper2a.v1 {
        margin-bottom: 50px;
    }
    .productDetailsPage .mobile_footer_menu {
        display: none !important;
    }
    .productDetailsPage .product-cart-section-fixed {
        bottom: 10px;
    }
    .mySwiper2a.v1 .swiper-slide img {
        width: 105px;
        height: 70px;
    }
    .mySwiper2a.v1 .swiper-slide svg {
        width: 105px;
        height: 70px;
    }
    .swiper.mySwiper2a.v1 {
        margin-bottom: 0;
    }
    .product-container.four-images {
        margin-bottom: 20px;
    }
    h5.product-title.v2 {
        padding-bottom: 10px;
        padding-top: 22px;
    }
    .swiper.mySwiper2a.v1 .swiper-slide {
        padding: 15px 5px;
    }
    .product-cart-section-fixed .price-weight-container {
        padding: 3px 8px;
    }
    .ProductDetaSection .product-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    .mySwiper2a.v1 .swiper-pagination {
        bottom: 6px;
    }
    .swiper.mySwiper2a.v1 .swiper-wrapper {
        padding-bottom: 20px;
    }
    .DeliveryDetaSection .my-5 {
        margin-top: 0 !important;
    }
    .mHideNew {
        display: none;
    }
    .filterSection .accordion-item .accordion-header .inputGroup {
        top: -5px;
        left: 8px;
    }
    .filter-bar-wrapper .filterBtn,
    .filter-bar-wrapper .sort-btn {
        border: 0;
    }
    .filter-bar-wrapper .filterBtn,
    .filter-bar-wrapper .stock-btn {
        border: 0;
    }
    .filter-bar-wrapper {
        background: #fff;
        border-bottom: 1px solid #eaeaec;
    }
    .filter-bar-wrapper .sort-section {
        position: relative;
    }
    .filter-bar-wrapper .stock-section {
        position: relative;
    }
    .filter-bar-wrapper .sort-section:before {
        position: absolute;
        content: "";
        left: 0;
        width: 1px;
        height: 19px;
        background: #eaeaec;
        top: 8px;
        z-index: 99;
    }
    .filter-bar-wrapper .stock-section:before {
        position: absolute;
        content: "";
        left: 0;
        width: 1px;
        height: 19px;
        background: #eaeaec;
        top: 8px;
        z-index: 99;
    }
    .filter-bar-wrapper .sort-section .sort-btn::after {
        content: none;
    }
    .filter-bar-wrapper .sort-section .sort-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .filter-bar-wrapper .sort-section .sort-btn i {
        color: #7c5cbe;
    }
    .filter-bar-wrapper .stock-section .stock-btn::after {
        content: none;
    }
    .filter-bar-wrapper .stock-section .stock-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .filter-bar-wrapper .stock-section .stock-btn i {
        color: #7c5cbe;
    }
    .tCenter {
        text-align: center;
        padding: 0px !important;
        padding-bottom: 5px !important;
        margin-bottom: 23px;
        display: block;
        border-bottom: 1px solid #eaeaec;
    }
    .price-slider-wrapper {
        margin-top: 10px;
    }
    .ribbon-bestseller {
        gap: 2px;
        font-size: 12px;
        height: 27px;
        padding: 7px;
    }
    .crafts-section.ty02 .share-button {
        width: 30px;
        height: 30px;
    }
}

.home-budget-section-outer {
    padding: 90px 0 110px;
    position: relative;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer {
        padding: 50px 0;
    }
}

.home-budget-section-outer .home-budget-section {
    position: relative;
    width: 100%;
    padding: 0;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .home-budget-section {
        padding: 0;
    }
}

.home-budget-section-outer .home-budget-section::before {
    content: "";
    position: absolute;
    width: 676px;
    height: 676px;
    border-radius: 676px;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(209, 74, 97, 0.4) 0%,
        rgba(255, 209, 217, 0.4) 100%
    );
    -webkit-filter: blur(227px);
    filter: blur(227px);
    left: -25%;
    top: -30%;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .home-budget-section::before {
        background: radial-gradient(
            50% 50% at 50% 50%,
            rgba(209, 74, 97, 0.6) 0%,
            rgba(255, 209, 217, 0.6) 100%
        );
        -webkit-filter: blur(94.5px);
        filter: blur(94.5px);
        -webkit-backface-visibility: hidden;
        -webkit-backdrop-filter: blur(94.5px);
        width: 304px;
        height: 304px;
        top: 0%;
        left: -150px;
    }
}

.home-budget-section-outer .budget-head-sec {
    position: absolute;
    left: 30px;
    top: 30px;
}

@media (max-width: 1023.98px) {
    .home-budget-section-outer .budget-head-sec {
        top: -30px;
    }
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec {
        position: relative;
        left: 0;
        top: 0;
        padding: 0 30px;
        text-align: center;
        margin-bottom: 22px;
    }
}

.home-budget-section-outer .budget-head-sec::before {
    content: "";
    position: absolute;
    background: url("../images/star-linear-39x39.svg") no-repeat;
    width: 39px;
    height: 39px;
    right: -65px;
    top: 4px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec::before {
        background: url("../images/star-linear-20x20.svg") no-repeat;
        width: 20px;
        height: 20px;
        right: initial;
        top: 4px;
        left: 65%;
    }
}

.home-budget-section-outer .budget-head-sec h6 {
    color: #7c5cbe;
    font-size: 16px;
    font-weight: 400;
}

.home-budget-section-outer .budget-head-sec h3 {
    color: #7c5cbe;

    font-size: 54px;
    font-weight: 400;
    letter-spacing: -3px;
    margin: -45px 0 0 10px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec h3 {
        margin: -10px 0 0;
        font-size: 20px;
    }
}

.home-budget-section-outer .budget-head-sec h3 span {
    font-weight: 400;
    letter-spacing: -3px;
    margin-left: -10px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec h3 span {
        margin-left: 0;
    }
}

.home-budget-section-outer .budget-head-sec h3 span.u-letter {
    font-size: 74px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec h3 span.u-letter {
        font-size: 28px;
    }
}

.home-budget-section-outer .budget-head-sec h3 span.d-letter {
    font-size: 84px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec h3 span.d-letter {
        font-size: 32px;
    }
}

.home-budget-section-outer .budget-head-sec h3 span.g-letter {
    font-size: 94px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec h3 span.g-letter {
        font-size: 36px;
    }
}

.home-budget-section-outer .budget-head-sec h3 span.e-letter {
    font-size: 104px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec h3 span.e-letter {
        font-size: 40px;
    }
}

.home-budget-section-outer .budget-head-sec h3 span.t-letter {
    font-size: 114px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-head-sec h3 span.t-letter {
        font-size: 44px;
    }
}

.home-budget-section-outer .budget-img-sec {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img {
    float: left;
    position: relative;
    cursor: pointer;
}

.home-budget-section-outer .budget-img-sec .budget-img img {
    width: 100%;
    height: 100%;
}

.home-budget-section-outer .budget-img-sec .budget-img::after {
    content: "";
    position: absolute;
    background: url("../images/arrow-right-black.webp") #fff no-repeat;
    width: 42px;
    height: 42px;
    background-size: 30px;
    left: 50%;
    bottom: 15px;
    border-radius: 50%;
    padding: 28px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-position: center;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 29px 34px -7px rgba(0, 0, 0, 0.13);
    box-shadow: 0 29px 34px -7px rgba(0, 0, 0, 0.13);
}

.home-budget-section-outer .budget-img-sec .budget-img1 {
    width: 20%;
    height: 100%;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img1 {
        width: 40%;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img1::before {
    content: "";
    position: absolute;
    background: url("../images/star-linear-107x107.svg") no-repeat;
    width: 86px;
    height: 86px;
    right: 0;
    top: -109px;
    background-size: 86px;
}

@media (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img1::before {
        top: -106px;
    }
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img1::before {
        background: url("../images/star-linear-67x67.svg") no-repeat;
        width: 67px;
        height: 67px;
        top: initial;
        bottom: -84px;
        left: 23px;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img1::after {
        width: 35px;
        height: 35px;
        background-size: 28px;
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img1::after {
        width: 35px;
        height: 35px;
        background-size: 28px;
        padding: 15px;
        bottom: 7px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img2 {
    width: 32%;
    height: 100%;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img2 {
        width: 60%;
        margin-left: -6px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img2 .budget-price p {
    font-size: 16px;
    margin-bottom: 2px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img2 .budget-price p {
        font-size: 12px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img2 .budget-price h4 {
    font-size: 44px;
}

@media (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img2 .budget-price h4 {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img2 .budget-price h4 {
        font-size: 24px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img2::after {
    bottom: 50px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img2::after {
        bottom: 20px;
        width: 35px;
        height: 35px;
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img2::after {
        width: 40px;
        height: 40px;
        background-size: 35px;
        padding: 24px;
        bottom: 20px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img3 {
    width: 44%;
    height: 100%;
}

@media (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3 {
        margin-left: -12px;
    }
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3 {
        width: 100%;
        margin-top: -20px;
        margin-left: 0;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img3 .budget-price p {
    font-size: 20px;
    margin-bottom: 2px;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3 .budget-price p {
        font-size: 12px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img3 .budget-price h4 {
    font-size: 52px;
}

@media (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3 .budget-price h4 {
        font-size: 42px;
    }
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3 .budget-price h4 {
        font-size: 24px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img3::after {
    bottom: 120px;
    width: 69px;
    height: 69px;
    background-size: 38px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3::after {
        bottom: 80px;
        width: 55px;
        height: 55px;
        background-size: 38px;
    }
}

@media (max-width: 575.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3::after {
        bottom: 50px;
    }
}

.home-budget-section-outer .budget-img-sec .budget-img3::before {
    content: "";
    position: absolute;
    background: url("../images/large-star-linear.svg") no-repeat;
    width: 170px;
    height: 170px;
    right: 13px;
    top: -6px;
    z-index: -1;
}

@media (max-width: 1023.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3::before {
        top: -40px;
    }
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-img-sec .budget-img3::before {
        opacity: 0;
    }
}

.home-budget-section-outer .budget-price {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.home-budget-section-outer .budget-price p {
    font-family: "Questrial", sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-price p {
        font-size: 12px;
    }
}

.home-budget-section-outer .budget-price h4 {
    font-family: "Fraunces", serif;
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 1023.98px) {
    .home-budget-section-outer .budget-price h4 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-price h4 {
        font-size: 24px;
    }
}

.home-budget-section-outer .budget-price h4.desktop {
    display: block;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-price h4.desktop {
        display: none;
    }
}

.home-budget-section-outer .budget-price h4.mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .home-budget-section-outer .budget-price h4.mobile {
        display: block;
    }
}

.home-budget-section-outer .budget-right-icon {
    text-align: center;
}

.home-budget-section-outer .budget-right-iconimg {
    width: 69px;
    height: 69px;
    background: #fff;
    border-radius: 50%;
    padding: 15px;
}

.home-budget-section-outer .budget-img:hover::after {
    opacity: 1;
}

/*.cartDetails-Section {padding-bottom:100px;}*/
.cartDetails-Section .checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background: white;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cartDetails-Section .step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 18px;
}

.cartDetails-Section .step-item.active {
    color: #7c5cbe;
    font-weight: 600;
    /*border-bottom:2px solid;*/
}

.cartDetails-Section .step-item.completed {
    color: var(--text-dark);
}

.cartDetails-Section .step-divider {
    width: 50px;
    height: 0;
    background: none;
    margin: 0 20px;
    border-bottom: 2px dotted #aa92d9;
}

.cartDetails-Section .step-divider.active {
    background: #7c5cbe;
}

/* Container */
.cartDetails-Section .checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Cart Items */
.cartDetails-Section .cart-item {
    background: white;
    /*border: 1px solid #ccc !important;*/
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    position: relative;
    padding: 10px;
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
    /*border-radius: 10px;*/
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15);
}

.cartDetails-Section .cart-item-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    left: 14px;
    accent-color: #7c5cbe;
    top: 15px;
}

.cartDetails-Section .cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 0px;
    object-fit: cover;
    border-radius: 10px;
}

.cartDetails-Section .cart-item-details {
    flex: 1;
}
.cartDetails-Section .cart-item-details .sku-number {
    margin-bottom: 10px;
    margin-top: -8px;
}

.cartDetails-Section .cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.cartDetails-Section .original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 8px;
}

.cartDetails-Section .cart-item-title {
    /*font-size: 14px;*/
    color: var(--text-dark);
    margin: 5px 0;
}

.cartDetails-Section .collection-badge {
    font-size: 12px;
    color: var(--text-muted);
    padding-bottom: 10px;
}

.cartDetails-Section .delivery-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #28a745;
    margin: 8px 0;
}

.cartDetails-Section .quantity-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.cartDetails-Section .qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cartDetails-Section .qty-btn:hover {
    background: var(--bg-light);
}

.cartDetails-Section .qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px;
}

.cartDetails-Section .wishlist-btn1 {
    background: none;
    border: none;
    color: var(--text-muted);
    /*font-size: 12px;*/
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
}
.checkout-container .wishlist-btn1 {
    color: #7c5cbe;
}
.cartDetails-Section .remove-item {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: 0px solid #ccc;
    color: #7c5cbe;
    cursor: pointer;
    font-size: 26px;
    width: 25px;
    height: 25px;
    /* line-height: 24px; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Summary Card */
.cartDetails-Section .summary-card {
    background: white;
    border-radius: 8px;
    padding: 0 10px;
    position: relative;
    top: 0px;
}

.cartDetails-Section .summary-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cartDetails-Section .coupon-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cartDetails-Section .coupon-input-group {
    display: flex;
    gap: 0;
    margin-top: 0;
}

.cartDetails-Section .coupon-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
}

.cartDetails-Section .apply-btn {
    background: white;
    border: 1px solid #ccc;
    color: #000;
    padding: 3px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    /*font-size: 12px;*/
}

.cartDetails-Section .apply-btn:hover {
    color: #000;
}

.cartDetails-Section .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    /*font-size: 14px;*/
}

.cartDetails-Section .price-label {
    color: var(--text-muted);
    font-size: inherit;
}

.cartDetails-Section .price-value {
    color: var(--text-dark);
    font-weight: 500;
}

.cartDetails-Section .discount-value {
    color: #28a745;
}

.cartDetails-Section .total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
}

.cartDetails-Section .place-order-btn,
.cartDetails-Section .continue-btn {
    width: auto;
    background: #7c5cbe;
    color: white;
    border: none;
    padding: 5px 18px;
    border-radius: 26px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
    margin: 22px auto 0;
    display: table;
    text-align: center;
}

.cartDetails-Section .place-order-btn:hover,
.continue-btn:hover {
    background: #aa92d9;
}

/* Address Section */
.cartDetails-Section .address-section {
    background: white;
    border-radius: 8px;
    padding: 0px;
    padding-bottom: 0px;
}

.cartDetails-Section .section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cartDetails-Section .add-address-btn {
    width: auto;
    background: #7c5cbe;
    color: white;
    border: none;
    padding: 5px 18px;
    border-radius: 26px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
    margin: 22px auto;
    display: block;
}

.cartDetails-Section .add-address-btn:hover {
    background: #7c5cbe;
}
.cartDetails-Section .btn-primary.b1 {
    background: #7c5cbe;
    border: 0;
}
.cartDetails-Section .address-note {
    font-size: 12px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 20px;
}

.cartDetails-Section .address-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.cartDetails-Section .address-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(124, 92, 219, 0.1);
}

.cartDetails-Section .address-card.selected {
    border-color: var(--primary-color);
    background: #f8f4ff;
}

.cartDetails-Section .address-radio {
    margin-right: 15px;
    top: 5px;
    position: relative;
    accent-color: #7c5cbe;
}

.cartDetails-Section .address-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.cartDetails-Section .address-details {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cartDetails-Section .address-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.cartDetails-Section .edit-btn,
.cartDetails-Section .remove-btn {
    border: 1px solid var(--border-color);
    background: #eee;
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.cartDetails-Section .edit-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cartDetails-Section .remove-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.cartDetails-Section .home-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
}

.cartDetails-Section .delivery-estimate {
    display: flex;
    gap: 10px;
    margin-top: 0px;
    padding: 0px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 10px;
}
.addressWrap {
    display: flex;
    vertical-align: top;
    align-items: flex-start;
}

.cartDetails-Section .delivery-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.cartDetails-Section .delivery-text {
    font-size: 13px;
    color: var(--text-dark);
}

/* Payment Section */
.cartDetails-Section .payment-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
}

.cartDetails-Section .payment-option {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.cartDetails-Section .payment-option:hover {
    border-color: var(--primary-color);
    background: #f8f4ff;
}

.cartDetails-Section .payment-option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cartDetails-Section .payment-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.cartDetails-Section .payment-name {
    font-weight: 500;
    font-size: 15px;
}

.cartDetails-Section .payment-chevron {
    color: var(--text-muted);
}

/* Tab Content */
.cartDetails-Section .tab-content-section {
    display: none;
}

.cartDetails-Section .tab-content-section.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .cartDetails-Section .checkout-steps {
        padding: 20px 10px;
    }
    .cartDetails-Section .step-divider {
        width: 30px;
        margin: 0 10px;
    }
    .cartDetails-Section .cart-item {
        flex-direction: column;
        padding-top: 0;
    }
    .cartDetails-Section #cart-section .cart-item {
        flex-direction: row;
    }
    .cartDetails-Section .address-actions {
        position: static;
        margin-top: 15px;
    }
    .cartDetails-Section .summary-card {
        position: static;
        margin-top: 20px;
    }
}

.cartDetails-Section .payment-section {
    padding: 0px;
}
.cartDetails-Section .section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.cartDetails-Section .payment-option-wrapper {
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.cartDetails-Section .payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cartDetails-Section .payment-option:hover {
    background-color: #f9f9f9;
}
.cartDetails-Section .payment-option-wrapper.active .payment-option {
    background-color: #f5f0ff;
    border-bottom: 1px solid #e0e0e0;
}
.cartDetails-Section .payment-option-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cartDetails-Section .payment-icon {
    font-size: 24px;
    color: #7c5cbe;
}
.cartDetails-Section .payment-name {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}
.cartDetails-Section .payment-chevron {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
}
.cartDetails-Section .payment-option-wrapper.active .payment-chevron {
    transform: rotate(180deg);
}

/* Accordion Content */
.cartDetails-Section .payment-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}
.cartDetails-Section .payment-option-wrapper.active .payment-accordion-content {
    max-height: 500px;
    padding: 20px;
}

/* UPI Options Styling */
.cartDetails-Section .upi-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cartDetails-Section .upi-option-item {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.cartDetails-Section .upi-option-item.active,
.cartDetails-Section .upi-option-item:has(.upi-radio:checked) {
    border-color: #7c5cbe;
    background-color: #f5f0ff;
}
.cartDetails-Section .upi-radio {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #7c5cbe;
}
.cartDetails-Section .upi-label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    cursor: pointer;
    margin-left: 12px;
    margin-bottom: 0;
}
.cartDetails-Section .upi-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cartDetails-Section .upi-option-item.active .upi-icon-wrapper,
.cartDetails-Section
    .upi-option-item:has(.upi-radio:checked)
    .upi-icon-wrapper {
    border-color: #7c5cbe;
    background: #f5f0ff;
}
.cartDetails-Section .qr-icon,
.cartDetails-Section .upi-logo {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
}
.cartDetails-Section .upi-option-text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}
/* UPI Input Section */
.cartDetails-Section .upi-input-section {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cartDetails-Section .upi-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.cartDetails-Section .upi-input:focus {
    outline: none;
    border-color: #7c5cbe;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.cartDetails-Section .upi-input::placeholder {
    color: #999;
}
.cartDetails-Section .upi-continue-btn {
    padding: 12px 24px;
    background: #7c5cbe;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cartDetails-Section .upi-continue-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.cartDetails-Section .upi-continue-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cartDetails-Section .payment-section {
        padding: 0px;
    }
    .cartDetails-Section .payment-option {
        padding: 14px 16px;
    }
    .cartDetails-Section .payment-icon {
        font-size: 20px;
    }
    .cartDetails-Section .payment-name {
        font-size: 14px;
    }
    .cartDetails-Section .upi-option-item {
        padding: 12px;
    }
    .cartDetails-Section .upi-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    .cartDetails-Section .qr-icon,
    .cartDetails-Section .upi-logo {
        width: 20px;
        height: 20px;
    }
    .cartDetails-Section
        .payment-option-wrapper.active
        .payment-accordion-content {
        padding: 15px;
    }
    .cartDetails-Section .address-section {
        padding: 0;
    }
}

/* Animation for smooth opening */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cartDetails-Section
    .payment-option-wrapper.active
    .payment-accordion-content
    > * {
    animation: slideDown 0.3s ease;
}
.cartDetails-Section .add-address-card {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cartDetails-Section .add-address-card:hover {
    border-color: #7c5cbe;
    background: #f9f5ff;
}
.cartDetails-Section .add-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.cartDetails-Section .add-icon i {
    font-size: 24px;
    color: #6b7280;
}
.cartDetails-Section .add-address-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}
.cartDetails-Section .address-card-new {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    transition: all 0.3s ease;
}
.cartDetails-Section .address-card-new:hover {
    border-color: #7c5cbe;
    box-shadow: 0 4px 12px rgba(124, 92, 190, 0.1);
}
.cartDetails-Section .address-header-new {
    display: flex;
    align-items: flex-start;
}
.cartDetails-Section .address-radio-new {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #7c5cbe;
    flex-shrink: 0;
}
.cartDetails-Section .address-content-new {
    flex: 1;
}
.cartDetails-Section .address-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 5px;
}
.cartDetails-Section .address-name-new {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}
.cartDetails-Section .address-details-new {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}
.cartDetails-Section .edit-link {
    background: none;
    border: none;
    color: #7c5cbe;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}
.cartDetails-Section .edit-link:hover {
    color: #6a4da8;
}
.cartDetails-Section .add-address-form-container {
    margin-top: 0;
    margin-bottom: 20px;
}
.cartDetails-Section .address-form-modal {
    background: #fff;
    border: 2px solid #7c5cbe;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-save-address {
    background: #7c5cbe;
    color: #fff;
    border: none;
    padding: 5px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-save-address:hover {
    background: #6a4da8;
}
.btn-cancel-address {
    background: #fff;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 5px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cancel-address:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}
.cartDetails-Section .delivery-estimates-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}
.cartDetails-Section .estimates-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.cartDetails-Section .estimates-note {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}
.cartDetails-Section .estimates-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cartDetails-Section .estimate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.cartDetails-Section .estimate-label {
    color: #4b5563;
    font-weight: 500;
}
.cartDetails-Section .estimate-value {
    color: #111827;
    font-weight: 600;
}
.cartDetails-Section .estimate-row-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
}
.cartDetails-Section .export-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #7c5cbe;
}
.cartDetails-Section .export-label {
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
    flex: 1;
}
.cartDetails-Section .order-estimates-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
}
.cartDetails-Section .order-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}
.cartDetails-Section .order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.cartDetails-Section .order-label {
    color: #4b5563;
    font-weight: 500;
}
.cartDetails-Section .order-value {
    color: #111827;
    font-weight: 600;
}
.cartDetails-Section .order-value.discount {
    color: #10b981;
}
.cartDetails-Section .grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
}
.cartDetails-Section .grand-total-label {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.5px;
}
.cartDetails-Section .grand-total-value {
    font-size: 20px;
    font-weight: 700;
    color: #7c5cbe;
}
.cartDetails-Section .continue-btn-new {
    width: 100%;
    background: linear-gradient(135deg, #7c5cbe 0%, #6a4da8 100%);
    color: #fff;
    border: none;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 92, 190, 0.3);
}
.cartDetails-Section .continue-btn-new:hover {
    background: linear-gradient(135deg, #6a4da8 0%, #5a3d98 100%);
    box-shadow: 0 6px 16px rgba(124, 92, 190, 0.4);
    transform: translateY(-2px);
}
.cartDetails-Section .continue-btn-new:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cartDetails-Section .add-address-card {
        padding: 40px 20px;
        min-height: 200px;
    }
    .cartDetails-Section .add-icon {
        width: 50px;
        height: 50px;
    }
    .cartDetails-Section .add-icon i {
        font-size: 20px;
    }
    .cartDetails-Section .add-address-title {
        font-size: 16px;
    }
    .cartDetails-Section .address-card-new {
        padding: 15px;
        min-height: auto;
    }
    .cartDetails-Section .address-name-new {
        font-size: 16px;
    }
    .cartDetails-Section .address-details-new {
        font-size: 13px;
    }
    .cartDetails-Section .delivery-estimates-section,
    .cartDetails-Section .order-estimates-section {
        padding: 20px;
        margin-bottom: 15px;
    }
    .cartDetails-Section .estimates-title {
        font-size: 14px;
    }
    .cartDetails-Section .estimates-note {
        font-size: 12px;
    }
    .cartDetails-Section .estimate-row,
    .cartDetails-Section .order-row {
        font-size: 13px;
    }
    .cartDetails-Section .grand-total-label {
        font-size: 14px;
    }
    .cartDetails-Section .grand-total-value {
        font-size: 18px;
    }
    .cartDetails-Section .continue-btn-new {
        padding: 12px 0;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cartDetails-Section .address-form-modal {
        padding: 20px;
    }
    .cartDetails-Section .btn-save-address,
    .cartDetails-Section .btn-cancel-address {
        width: 100%;
        margin-bottom: 10px;
    }
}
.cartDetails-Section .address-section * {
    transition: all 0.3s ease;
}
.cartDetails-Section .address-radio-new:focus,
.cartDetails-Section .export-checkbox:focus {
    outline: 2px solid #7c5cbe;
    outline-offset: 2px;
}
.cartDetails-Section .address-form-modal .form-control:focus {
    border-color: #7c5cbe;
    box-shadow: 0 0 0 0.2rem rgba(124, 92, 190, 0.25);
}
.cartDetails-Section .offers-card {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15);
}
.cartDetails-Section .offers-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.cartDetails-Section .icon {
    width: 24px;
    height: 24px;
    color: #333;
}
.cartDetails-Section .offers-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #282c3f;
    margin: 0;
}
.cartDetails-Section .offers-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    margin-left: 32px;
}
.cartDetails-Section .offer-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    color: #282c3f;
    line-height: 1.5;
}
.cartDetails-Section .offer-item::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: #282c3f;
    font-weight: bold;
}
.cartDetails-Section .offer-item.collapse-item {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.cartDetails-Section .offers-list.expanded .collapse-item {
    display: block;
    opacity: 1;
    max-height: 200px;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cartDetails-Section .toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #7c5cbe;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    transition: all 0.2s ease;
    margin-left: 40px;
}
.cartDetails-Section .toggle-btn:hover {
    opacity: 0.8;
}
.cartDetails-Section .toggle-btn:focus {
    outline: none;
}
.cartDetails-Section .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.cartDetails-Section .arrow-icon.rotated {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .cartDetails-Section .offers-card {
        padding: 16px;
    }
    .cartDetails-Section .offers-header h2 {
        font-size: 16px;
    }
    .cartDetails-Section .offer-item {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .cartDetails-Section .toggle-btn {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cartDetails-Section .offers-card {
        padding: 14px;
    }
    .cartDetails-Section .offer-item {
        font-size: 12px;
    }
}

.itemContainer-base-sizeAndQty {
    display: flex;
    flex-wrap: wrap;
    margin-right: 8px;
}
.itemComponents-base-size {
    display: inline-block;
    white-space: nowrap;
    padding: 4px 16px;
    background: #f5f5f6;
    color: #282c3f;
    font-weight: 700;
    cursor: pointer;
    margin-right: 11px;
    border-radius: 2px;
    line-height: 16px;
    font-size: 15px;
}
.itemComponents-base-size svg {
    position: relative;
    right: -10px;
}

.itemComponents-base-quantityHighlight {
    background-color: #fff1ec;
}
.itemComponents-base-quantity {
    display: inline-block;
    white-space: nowrap;
    padding: 4px 16px;
    background: #f5f5f6;
    color: #282c3f;
    font-weight: 700;
    cursor: pointer;
    margin-right: 11px;
    border-radius: 2px;
    line-height: 16px;
    font-size: 15px;
}
.itemComponents-base-quantityValue {
    background-color: #f5f5f6;
    padding: 2px 14px;
}
.itemComponents-base-quantityAction {
    padding: 0 8px;
}
.size-modal-content {
    border-radius: 12px;
    border: none;
    max-width: 450px;
    margin: auto;
}
.size-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: transparent;
    border: none;
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
    transition: transform 0.2s ease;
}
.size-modal-close:hover {
    transform: scale(1.1);
}
.size-modal-close i {
    color: #000;
}
.size-modal-product-section {
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.size-modal-product-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}
.size-modal-product-info {
    flex: 1;
}
.size-modal-product-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #000;
}
.size-modal-product-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.size-modal-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.size-modal-price .price-current {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.size-modal-price .price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}
.size-modal-price .price-discount {
    font-size: 12px;
    font-weight: 600;
    color: #7c5cbe;
    background: #ffe5ec;
    padding: 2px 8px;
    border-radius: 4px;
}
.size-selection-title {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 15px 0;
    color: #000;
}
.size-options-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.size-option-btn {
    padding: 12px 8px;
    border: 1.5px solid #d4d5d9;
    border-radius: 50px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #282c3f;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.size-option-btn:hover {
    border-color: #7c5cbe;
}
.size-option-btn.active {
    border-color: #7c5cbe;
    background: #7c5cbe;
    color: #fff;
}

/* Seller Information */
.size-modal-seller {
    padding: 12px 15px;
    background: #f5f5f6;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.size-modal-seller span {
    color: #666;
}
.size-modal-seller strong {
    color: #000;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}
.size-modal-done-btn {
    width: 100%;
    padding: 14px;
    background: #7c5cbe;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.size-modal-done-btn:hover {
    background: #aa92d9;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .size-modal-content {
        margin: 10px;
    }
    .size-options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .size-option-btn {
        padding: 10px 6px;
        font-size: 13px;
    }
    .size-modal-product-img {
        width: 70px;
        height: 90px;
    }
    .size-modal-product-title {
        font-size: 14px;
    }
    .size-modal-product-subtitle {
        font-size: 12px;
    }
}

.itemComponents-base-size {
    cursor: pointer;
    transition: all 0.2s ease;
}
.itemComponents-base-size:hover {
    color: #7c5cbe;
}
.quantity-modal-content {
    border-radius: 12px;
    border: none;
    max-width: 350px;
    margin: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.quantity-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: transparent;
    border: none;
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 1;
    transition: transform 0.2s ease;
}
.quantity-modal-close:hover {
    transform: scale(1.1);
}
.quantity-modal-close i {
    color: #000;
}
.quantity-selection-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px 0;
    color: #282c3f;
    text-align: left;
}
.quantity-options-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.quantity-option-btn {
    width: 50px;
    height: 50px;
    border: 1.5px solid #d4d5d9;
    border-radius: 50%;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #282c3f;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.quantity-option-btn:hover {
    border-color: #7c5cbe;
    transform: scale(1.05);
}
.quantity-option-btn.active {
    border-color: #7c5cbe;
    background: #7c5cbe;
    color: #fff;
    transform: scale(1.05);
}

/* Done Button */
.quantity-modal-done-btn {
    width: 100%;
    padding: 14px;
    background: #7c5cbe;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
}
.quantity-modal-done-btn:hover {
    background: #e6366a;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .quantity-modal-content {
        margin: 15px;
        max-width: calc(100% - 30px);
    }
    .quantity-options-grid {
        gap: 10px;
    }
    .quantity-option-btn {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }
    .quantity-selection-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .quantity-options-grid {
        gap: 8px;
    }
    .quantity-option-btn {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

/* Make existing quantity selector clickable */
.itemComponents-base-quantity {
    cursor: pointer;
    transition: all 0.2s ease;
}
.itemComponents-base-quantity svg {
    position: relative;
    right: -10px;
}
.itemComponents-base-quantity:hover {
    color: #7c5cbe;
}
.itemSectedSetion {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartDetails-Section .leftItem .cart-item-checkbox {
    position: relative;
    left: 0;
    top: 0px;
}
.cartDetails-Section .leftItem {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cartDetails-Section .rightItem {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cartDetails-Section .rightItem button {
    border: 0;
    background: none;
}
.cartDetails-Section .rightItem .moveWishlistBtn {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #ccc;
}

.remove-modal-content {
    border-radius: 8px;
    border: none;
    max-width: 400px;
    margin: 0 auto;
}
.remove-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 1;
    z-index: 10;
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    padding: 0;
    width: auto;
    height: auto;
}
.remove-modal-close:hover {
    color: #666;
}
.remove-modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #282c3f;
}
.remove-modal-text {
    font-size: 14px;
    color: #535766;
    margin-bottom: 20px;
}
.remove-modal-buttons {
    border-top: 1px solid #d4d5d9;
    padding-top: 10px;
}
.remove-modal-btn-cancel,
.remove-modal-btn-wishlist {
    flex: 1;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
}
.remove-modal-btn-cancel {
    color: #535766;
    border-right: 1px solid #d4d5d9;
    border-radius: 0;
}
.remove-modal-btn-cancel:hover {
    background-color: #f5f5f6;
}
.remove-modal-btn-wishlist {
    color: #7c5cbe;
    padding-left: 25px;
}
.remove-modal-btn-wishlist:hover {
    background-color: #fff0f3;
}

.wishlist-modal-content {
    border-radius: 8px;
    border: none;
    max-width: 400px;
    margin: 0 auto;
}
.wishlist-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 1;
    z-index: 10;
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    padding: 0;
    width: auto;
    height: auto;
}
.wishlist-modal-close:hover {
    color: #666;
}
.wishlist-modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #282c3f;
}
.wishlist-modal-text {
    font-size: 14px;
    color: #535766;
    margin-bottom: 20px;
}
.wishlist-modal-buttons {
    border-top: 1px solid #d4d5d9;
    padding-top: 10px;
}
.wishlist-modal-btn-cancel,
.wishlist-modal-btn-move {
    flex: 1;
    flex: 1;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
}
.wishlist-modal-btn-cancel {
    color: #535766;
    border-right: 1px solid #d4d5d9;
    border-radius: 0;
}
.wishlist-modal-btn-cancel:hover {
    background-color: #f5f5f6;
}
.wishlist-modal-btn-move {
    color: #7c5cbe;
    padding-left: 27px;
}
.wishlist-modal-btn-move:hover {
    background-color: #fff0f3;
}

/* Modal Content */
.coupon-modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

/* Modal Header */
.coupon-modal-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 20px;
}
.coupon-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #282c3f;
    margin: 0;
    letter-spacing: 0.5px;
}
.coupon-modal-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #282c3f;
    opacity: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coupon-modal-close:hover {
    opacity: 0.7;
}

/* Modal Body */
.coupon-modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Coupon Input Wrapper */
.coupon-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.coupon-code-input {
    flex: 1;
    height: 44px;
    border: 1px solid #d4d5d9;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    color: #282c3f;
}
.coupon-code-input:focus {
    border-color: #7c5cbe;
    box-shadow: none;
    outline: none;
}
.coupon-code-input::placeholder {
    color: #94969f;
}

.coupon-check-btn {
    height: 44px;
    padding: 0 24px;
    background-color: transparent;
    border: 1px solid #7c5cbe;
    border-radius: 4px;
    color: #7c5cbe;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.coupon-check-btn:hover {
    background-color: #7c5cbe;
    color: #fff;
}
.available-coupons-section {
    margin-top: 20px;
}
.unlock-coupons-header {
    background-color: #f5f5f6;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 4px;
}
.unlock-coupons-header span {
    font-size: 12px;
    font-weight: 700;
    color: #282c3f;
    letter-spacing: 1px;
}

.coupon-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid #d4d5d9;
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
}
.coupon-item.active {
    border-color: #7c5cbe;
    background-color: #fff5f7;
}
.coupon-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
}
.coupon-item:hover:not(.locked) {
    border-color: #7c5cbe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.coupon-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}
.coupon-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d4d5d9;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.coupon-radio:checked {
    border-color: #7c5cbe;
    background-color: #fff;
}
.coupon-radio:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #7c5cbe;
    border-radius: 50%;
}
.coupon-radio:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.coupon-content {
    flex: 1;
}
.coupon-code-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #fff;
    border: 1px dashed #7c5cbe;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #7c5cbe;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.coupon-code-badge.locked {
    border-color: #94969f;
    color: #94969f;
}
.coupon-details {
    margin-top: 8px;
}
.coupon-savings {
    font-size: 14px;
    font-weight: 700;
    color: #282c3f;
    margin: 0 0 4px 0;
}
.coupon-description {
    font-size: 13px;
    color: #535766;
    margin: 0 0 4px 0;
    line-height: 1.4;
}
.coupon-expiry {
    font-size: 12px;
    color: #94969f;
    margin: 0;
}
.coupon-platform {
    font-size: 12px;
    color: #535766;
    margin: 0;
}

.coupon-modal-footer {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.maximum-savings-info {
    font-size: 12px;
    color: #535766;
    line-height: 1.4;
}
.savings-amount {
    font-size: 16px;
    font-weight: 700;
    color: #03a685;
    display: block;
}
.coupon-apply-btn {
    height: 44px;
    padding: 0 32px;
    background-color: #7c5cbe;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.coupon-apply-btn:hover {
    background-color: #e6366b;
}
.coupon-apply-btn:active {
    transform: scale(0.98);
}

.coupon-modal-body::-webkit-scrollbar {
    width: 6px;
}
.coupon-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.coupon-modal-body::-webkit-scrollbar-thumb {
    background: #d4d5d9;
    border-radius: 10px;
}
.coupon-modal-body::-webkit-scrollbar-thumb:hover {
    background: #94969f;
}

/* Responsive Styles */
@media (max-width: 576px) {
    .coupon-modal-content {
        margin: 10px;
    }
    .coupon-modal-header {
        padding: 12px 16px;
    }
    .coupon-modal-title {
        font-size: 14px;
    }
    .coupon-modal-body {
        padding: 16px;
        max-height: 70vh;
    }
    .coupon-input-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    .coupon-check-btn {
        width: 100%;
    }
    .coupon-item {
        padding: 12px;
    }
    .coupon-code-badge {
        font-size: 12px;
        padding: 3px 10px;
    }
    .coupon-modal-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .coupon-apply-btn {
        width: 100%;
    }
}

.bdr1Right {
    border-right: 1px solid #eee;
    padding-right: 20px;
    padding-bottom: 50px;
}
.priceDetail-base-knowMore {
    color: #7c5cbe;
}

/* ============================================
ADDRESS SECTION - COMPLETE REDESIGN
============================================ */

/* Address Header Section */
.cartDetails-Section .address-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.cartDetails-Section .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #282c3f;
    margin: 0;
    text-align: left;
    padding-bottom: 15px;
}
.cartDetails-Section .btn-add-new-address {
    background: transparent;
    border: 1px solid #7c5cbe;
    color: #7c5cbe;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.cartDetails-Section .btn-add-new-address:hover {
    background: #7c5cbe;
    color: #fff;
}

/* Address Category Section */
.cartDetails-Section .address-category-section {
    margin-bottom: 30px;
}
.cartDetails-Section .address-category-title {
    font-size: 13px;
    font-weight: 700;
    color: #282c3f;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Address Card New Design */
.cartDetails-Section .address-card-new {
    border: 0px solid #d4d5d9;
    /*border-radius: 8px;*/
    padding: 20px;
    background: #fff;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15);
}
.cartDetails-Section .address-card-new:hover {
    border-color: #7c5cbe;
    box-shadow: 0 2px 8px rgba(124, 92, 190, 0.15);
}
.cartDetails-Section .address-card-new.selected {
    border-color: #7c5cbe;
    background: #fff;
}

/* Radio Button Wrapper */
.cartDetails-Section .address-radio-wrapper {
    flex-shrink: 0;
    padding-top: 2px;
}
.cartDetails-Section .address-radio-new {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #7c5cbe;
}

/* Address Content Wrapper */
.cartDetails-Section .address-content-wrapper {
    flex: 1;
}
.cartDetails-Section .address-label-clickable {
    cursor: pointer;
    margin: 0;
    display: block;
}
.cartDetails-Section .address-name-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.cartDetails-Section .address-name-new {
    font-size: 15px;
    font-weight: 600;
    color: #282c3f;
    margin: 0;
}
.cartDetails-Section .address-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}
.cartDetails-Section .address-badge.badge-office {
    background: #03a685;
    color: #fff;
}
.cartDetails-Section .address-badge.badge-home {
    background: #4285f4;
    color: #fff;
}
.cartDetails-Section .address-full-details {
    font-size: 14px;
    color: #535766;
    line-height: 1.6;
    margin: 0 0 8px 0;
}
.address-full-details img {
    width: 100%;
}
.cartDetails-Section .address-mobile {
    font-size: 14px;
    color: #535766;
    margin: 0 0 8px 0;
}
.cartDetails-Section .address-mobile strong {
    font-weight: 600;
    color: #282c3f;
}
.cartDetails-Section .address-cod-info {
    font-size: 13px;
    color: #535766;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cartDetails-Section .address-cod-info i {
    font-size: 6px;
    color: #535766;
}

/* Address Action Buttons */
.cartDetails-Section .address-actions-buttons {
    display: flex;
    gap: 10px;
}
.cartDetails-Section .btn-address-action {
    background: transparent;
    border: 1px solid #d4d5d9;
    color: #535766;
    padding: 4px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.cartDetails-Section .btn-address-action:hover {
    border-color: #7c5cbe;
    color: #7c5cbe;
}
.cartDetails-Section .btn-address-action.btn-edit {
    border-color: #7c5cbe;
    color: #7c5cbe;
}
.cartDetails-Section .btn-address-action.btn-edit:hover {
    background: #7c5cbe;
    color: #fff;
}
.cartDetails-Section .address-actions-buttons .btn-address-action {
}

/* Add New Address Link */
.cartDetails-Section .add-new-address-link {
    border: 1px solid #d4d5d9;
    border-radius: 10px;
    padding: 16px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cartDetails-Section .add-new-address-link:hover {
    border-color: #7c5cbe;
    background: #f9f5ff;
}
.cartDetails-Section .add-new-address-link i {
    font-size: 18px;
    color: #7c5cbe;
}
.cartDetails-Section .add-new-address-link span {
    font-size: 14px;
    font-weight: 600;
    color: #7c5cbe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cartDetails-Section .address-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cartDetails-Section .btn-add-new-address {
        width: 100%;
    }
    .cartDetails-Section .address-card-new {
        flex-direction: row;
        gap: 12px;
    }
    .cartDetails-Section .address-actions-buttons {
        flex-direction: column;
    }
    .cartDetails-Section .btn-address-action {
        width: 100%;
    }
}

.checkout-steps .icon1 {
    background-image: url(../images/cart-icon1.svg);
    width: 19px;
    height: 15px;
    background-size: 100%;
    display: inline-block;
}
.checkout-steps .icon2 {
    background-image: url(../images/location-icon1.svg);
    width: 19px;
    height: 15px;
    background-size: 100%;
    display: inline-block;
}
.checkout-steps .icon3 {
    background-image: url(../images/payment-icon1.svg);
    width: 19px;
    height: 15px;
    background-size: 100%;
    display: inline-block;
}
.checkout-steps .step-item.active .icon1 {
    background-image: url(../images/cart-icon1a.svg);
    width: 19px;
    height: 15px;
    background-size: 100%;
    display: inline-block;
}
.checkout-steps .step-item.active .icon2 {
    background-image: url(../images/location-icon1a.svg);
    width: 19px;
    height: 15px;
    background-size: 100%;
    display: inline-block;
}
.checkout-steps .step-item.active .icon3 {
    background-image: url(../images/payment-icon1a.svg);
    width: 19px;
    height: 15px;
    background-size: 100%;
    display: inline-block;
}

.watch-shop-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1px;
}

.main-swiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: inherit !important;
}
.main-swiper .swiper-slide {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.main-swiper .swiper-slide video {
    width: 100%;
}
.main-swiper .swiper-slide:hover {
    transform: translateY(-5px);
}

.slide-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}
.view-count {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    padding: 5px;
    color: #000;
    display: flex;
    background: #fff;
    margin: 8px;
    text-align: left;
    gap: 10px;
    border-radius: 8px;
}
.wathandShop .product-thumbnail {
    width: 72px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid white;
}
.product-info-overlay .product-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
    width: 100%;
}
.product-price {
    font-size: 16px;
    font-weight: 700;
}
.product-price-old {
    font-size: 13px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 8px;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active {
    display: flex;
}
.wathandShop .modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close {
    position: absolute;
    top: 5px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    transform: scale(1.1);
}
.modal-swiper {
    width: 100%;
    height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
}
.modal-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 70vh;
    border-radius: 0px;
    overflow: hidden;
    cursor: default;
}
.modal-swiper .swiper-slide-active {
    width: 290px;
    height: 100%;
}
.modal-video-item {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.modal-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-product-cards {
    position: absolute;
    right: 0px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
    left: 0;
    margin: auto;
    bottom: 60px;
}
.swiper-slide-active .modal-product-cards {
    opacity: 1;
    pointer-events: all;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    width: 75%;
    bottom: 10px;
}
.modal-product-card {
    padding: 0px 8px 6px 2px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.modal-video-item .modal-product-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.modal-product-details {
    flex: 1;
    text-align: left;
}
.modal-product-name {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 500;
}
.modal-product-price {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}
.modal-product-price-old {
    font-size: 12px;
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}
.modal-add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, #ffb6b9 0%, #ffa8ab 100%);
    color: #fff;
    border: none;
    padding: 6px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    margin-top: 0px;
}
.modal-add-to-cart:hover {
    background: linear-gradient(135deg, #ffa8ab 0%, #ff9a9d 100%);
}
.modal-swiper .swiper-button-next,
.modal-swiper .swiper-button-prev {
    color: #333;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.modal-swiper .swiper-button-next::after,
.modal-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    content: none;
}
.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
    color: #333;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.main-swiper .swiper-button-next::after,
.main-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}
.swiper-pagination-bullet {
    background: #7c5cbe;
    opacity: 0.3;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
#productModal .modal-content {
    width: 45%;
    overflow: inherit;
}
.main-swiper .swiper-button-next {
    right: 20px;
    background-image: url(../images/rightArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.main-swiper .swiper-button-prev {
    left: 20px;
    background-image: url(../images/leftArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.main-swiper .swiper-button-next::after,
.main-swiper .swiper-button-prev::after {
    content: none;
}
.main-swiper .swiper-pagination-bullet {
    background: #7c5cbe;
    opacity: 0.4;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-radius: 0;
}
.main-swiper .swiper-pagination-bullet-active {
    background: #7c5cbe;
    opacity: 1;
}

.modal-content .swiper-button-next {
    right: -100px;
    background-image: url(../images/rightArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.modal-content .swiper-button-prev {
    left: -100px;
    background-image: url(../images/leftArrow.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
}
.modal-content .swiper-button-next::after,
.modal-content .swiper-button-prev::after {
    content: none;
}
#productModal .modal-close {
    right: -126px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .modal-swiper .swiper-slide {
        width: 300px;
        height: 480px;
    }
    .modal-swiper .swiper-slide-active {
        width: 350px;
        height: 550px;
    }
}

.pT1,
.modal-product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}
.shareSModal {
    position: absolute;
    right: 10px;
    top: 35%;
    z-index: 9;
    text-align: center;
    color: #fff;
    font-size: 10px;
    display: grid;
    gap: 2px;
}
.shareSModal .icon-btn {
    width: 35px;
    height: 35px;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    margin: 0 !important;
}
.shareSModal .icon-btn.video-mute-btn {
    margin-bottom: 10px !important;
}
.shareSModal .icon-btn i {
    color: #fff;
}
.share-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: flex-end;
    justify-content: center;
}
.share-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.share-modal-content {
    background: white;
    width: 100%;
    max-width: 275px;
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    animation: slideUp 0.3s ease;
    top: 25%;
}
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.share-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}
.share-modal-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.whatmore-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.whatmore-logo {
    width: auto;
    height: 32px;
    border-radius: 8px;
}
.whatmore-brand span {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.share-options {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}
.share-options .share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease;
}
.share-options .share-option:hover {
    transform: scale(1.1);
}
.share-options .share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.share-options .whatsapp-icon {
    background: #25d366;
    color: white;
}
.share-options .twitter-icon {
    background: #000000;
    color: white;
}
.share-options .copy-icon {
    background: #007aff;
    color: white;
}
.share-options .more-icon {
    background: #f0f0f0;
    color: #333;
}
.share-option span {
    font-size: 13px;
    font-weight: 500;
}
.shareSModal .icon-btn.clickShareModal {
    margin-top: 10px !important;
}
.swiper-3d .swiper-wrapper {
    align-items: center;
}
.mySwiperCards {
    position: absolute;
    bottom: 50px;
    right: 0px;
    top: inherit;
    height: auto !important;
}
.mySwiperCards .modal-product-cards {
    position: relative;
    bottom: 0;
    height: auto !important;
    width: 100%;
}
.modal-swiper .mySwiperCards .swiper-slide {
    height: auto !important;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 24px;
    }
    .slide-image {
        height: 300px;
    }
    .modal-swiper {
        height: 100vh;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .modal-swiper .swiper-slide {
        width: 250px;
        height: 400px;
    }
    .modal-swiper .swiper-slide-active {
        width: 280px;
        height: 100%;
    }
    .modal-product-cards {
        max-width: 220px;
        right: 10px;
        bottom: 10px;
    }
    .modal-product-card {
        padding: 10px;
        gap: 10px;
    }
    .modal-product-thumb {
        width: 50px;
        height: 50px;
    }
    .bdr1Right {
        border: 0;
        padding-bottom: 20px;
    }
    #productModal .modal-content {
        width: 100%;
    }
    #productModal .modal-close {
        top: 30px;
        right: 3px;
        color: #fff;
    }
    .main-swiper .swiper-slide video {
        height: 300px;
    }
    #productModal .modal-swiper .swiper-button-next {
        right: 10px;
        width: 30px;
        height: 30px;
    }
    #productModal .modal-swiper .swiper-button-prev {
        left: 10px;
        width: 30px;
        height: 30px;
    }
    #productModal .modal-swiper .swiper-button-next::after,
    #productModal .modal-swiper .swiper-button-prev::after {
        font-size: 17px;
    }

    .wathandShop .product-thumbnail {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .product-price,
    .product-price-old {
        font-size: 12px;
    }
    .product-info-overlay {
        padding: 3px;
        margin: 3px;
        text-align: left;
        gap: 4px;
        border-radius: 8px;
    }
    .main-swiper .swiper-button-next {
        right: 0;
        width: 30px;
        height: 30px;
        background-size: 100%;
    }
    .main-swiper .swiper-button-prev {
        left: 0;
        width: 30px;
        height: 30px;
        background-size: 100%;
    }
    .modal-swiper {
        height: 100vh !important;
        padding: 0 !important;
    }
    .modal-swiper .swiper-slide {
        width: 100% !important;
        height: 100vh !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-swiper .swiper-slide-active {
        width: 100% !important;
        height: 100vh !important;
    }
    .modal-video-item {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .modal-video-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .modal-swiper .swiper-button-next,
    .modal-swiper .swiper-button-prev {
        display: none;
    }
    .swiper-slide-active .modal-product-cards {
        bottom: 50px;
        width: 90%;
    }
    .mySwiperCards .swiper-slide-active .modal-product-cards {
        bottom: 50;
        width: auto;
    }
    .mySwiperCards .modal-product-cards {
        bottom: 0px;
    }
    .modal-swiper .mySwiperCards .swiper-slide {
        width: auto !important;
    }
    #loginModal .modal-lg {
        --bs-modal-width: 90%;
    }
    #registerModal .modal-lg {
        --bs-modal-width: 90%;
    }
    header {
        position: fixed;
        top: 0;
        z-index: 99;
        width: 100%;
        animation: slideDown 0.4s ease-out;
    }
    #main-content {
        padding-top: 70px;
    }
    .colSection {
        padding-top: 0px;
    }
    .prodSEcWrap {
        padding-top: 50px;
    }
    .productDetailsPage .product-cart-section-fixed {
        z-index: 9;
    }
    .cartDetails-Section {
        padding-top: 65px;
    }
    .cartDetails-Section .step-item {
        font-size: 14px;
    }
}

@media (min-width: 1600px) {
    #productModal .modal-content {
        width: 60%;
    }
    .modal-swiper .swiper-slide-active {
        width: 400px;
    }
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
.video-mute-btn {
    pointer-events: auto !important;
    z-index: 100;
    position: relative;
}
.video-wrapper {
    pointer-events: none;
}
.video-wrapper video {
    pointer-events: auto;
}

/* Swipe for More Indicator */
.swipe-indicator {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 9999999999999999;
}

.swipe-indicator.hidden {
    opacity: 0;
}

.swipe-text {
    color: white;
    font-size: 29px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.swipe-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-60deg);
}

.swipe-hand-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: swipeAnimation 2s ease-in-out infinite;
}

@keyframes swipeAnimation {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-30px);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .swipe-indicator {
        bottom: 230px;
    }

    .swipe-text {
        font-size: 22px;
    }

    .swipe-hand-icon {
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 991px) {
    .swipe-indicator {
        display: none !important;
    }
}

/* Video Loader Styles */
.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    pointer-events: none;
}

.video-loader.hidden {
    display: none;
}

/* Spinner Animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Optional: Pulse effect */
.spinner-pulse {
    width: 60px;
    height: 60px;
    position: relative;
}

.spinner-pulse::before,
.spinner-pulse::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    animation: pulse 1.5s ease-out infinite;
}

.spinner-pulse::after {
    animation-delay: 0.75s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.myAccountSec {
    padding: 20px 0;
    background-color: #fff;
}

.myAccountSec .page-header {
    margin-bottom: 40px;
}

.myAccountSec .section-title {
    text-align: left;
}

.myAccountSec .breadcrumb,
.myOrderSec .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.myAccountSec .breadcrumb-item {
    color: #666;
}

.myAccountSec .breadcrumb-item.active {
    color: #000;
}

.myAccountSec .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #666;
}

.myAccountSec .breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.myAccountSec .breadcrumb-item a:hover {
    color: #7c5cbe;
}

.myAccountSec .account-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
}

.myAccountSec .account-card:hover {
    box-shadow: 0 5px 20px rgba(124, 92, 190, 0.15);
    border-color: #7c5cbe;
    transform: translateY(-5px);
}

.myAccountSec .account-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myAccountSec .account-card-icon i,
.myAccountSec .account-card-icon svg {
    font-size: 42px;
    color: #7c5cbe;
}

.myAccountSec .account-card-content {
    flex: 1;
}

.myAccountSec .account-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.myAccountSec .account-card-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.myAccountSec .logout-card .account-card-icon i {
    color: #dc3545;
}

.myAccountSec .logout-card .account-card-text {
    color: #dc3545;
}

@media (max-width: 767px) {
    .myAccountSec {
        padding: 0px 0;
    }

    .myAccountSec .page-title {
        font-size: 24px;
    }

    .myAccountSec .account-card {
        padding: 20px;
    }

    .myAccountSec .account-card-icon {
        width: 50px;
        height: 50px;
    }

    .myAccountSec .account-card-icon i {
        font-size: 36px;
    }

    .myAccountSec .account-card-title {
        font-size: 16px;
    }
}

:root {
    --primary-color: #7c5cbe;
    --primary-hover: #6a4da8;
    --text-dark: #2c2c2c;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
}

.myProfileSec {
    padding: 20px 0;
    min-height: 100vh;
}

.myProfileSec .section-title,
.myOrderSec .section-title {
    text-align: left;
}
.myProfileSec .profile-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.myProfileSec .profile-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.myProfileSec .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.myProfileSec .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--text-light);
}

.myProfileSec .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}

.myProfileSec .breadcrumb-item.active {
    color: var(--primary-color);
}

.myProfileSec .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.myProfileSec .form-control,
.myProfileSec .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.myProfileSec .form-control:focus,
.myProfileSec .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 92, 190, 0.1);
}

.myProfileSec .form-control:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.myProfileSec .phone-input-wrapper {
    position: relative;
}

.myProfileSec .phone-input-wrapper .flag-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    width: auto;
    height: auto;
}

.myProfileSec .phone-input-wrapper .form-control {
    padding-left: 80px;
}

.myProfileSec .change-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.myProfileSec .change-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.myProfileSec .update-btn:active {
    transform: translateY(0);
}

.myProfileSec textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.myProfileSec .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-hover)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(124, 92, 190, 0.2);
}

.myProfileSec .text-center-section {
    text-align: center;
    margin-bottom: 30px;
}

.myProfileSec .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .myProfileSec .profile-card {
        padding: 0px;
    }

    .myProfileSec .profile-header h1 {
        font-size: 24px;
    }

    .myProfileSec .update-btn {
        width: 100%;
        padding: 14px 24px;
    }
}

.myOrderSec {
    padding: 20px 0;
}

.myOrderSec .search-filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    margin-top: 20px;
}

.myOrderSec .search-box {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.myOrderSec .search-box input {
    margin: 0;
}

.myOrderSec .search-box input:focus {
    outline: none;
    border-color: #7c5cbe;
}

.myOrderSec .filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.myOrderSec .order-type-select {
    padding: 8px 35px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.myOrderSec .order-type-select:focus {
    outline: none;
    border-color: #7c5cbe;
}

.myOrderSec .action-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.myOrderSec .action-btn i {
    color: #000;
    transition: color 0.3s ease;
    position: relative;
    right: -10px;
}

.myOrderSec .action-btn:hover {
    color: #7c5cbe;
    border-color: #7c5cbe;
}

.myOrderSec .action-btn:hover i {
    color: #7c5cbe;
}

.myOrderSec .orders-table {
    background: white;
    overflow: hidden;
    margin-bottom: 50px;
}

.myOrderSec .table {
    margin-bottom: 0;
}

.myOrderSec .table thead {
    background-color: #f8f9fa;
}

.myOrderSec .table thead th {
    border-bottom: 2px solid #dee2e6;
    padding: 15px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.myOrderSec .table tbody td {
    padding: 15px;
    vertical-align: middle;
    font-size: 14px;
    color: #666;
}

.myOrderSec .no-data-row {
    text-align: center;
    padding: 40px 20px !important;
    color: #999;
    font-size: 14px;
}

.myOrderSec .table-footer {
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    font-size: 13px;
    color: #666;
}
.myOrderSec .orders-table .pagination .paginate_button.previous .page-link {
    color: #000;
    font-size: 0;
    width: 40px;
    background: #fff;
    height: 30px;
}
.myOrderSec .orders-table .pagination .paginate_button.next .page-link {
    color: #000;
    font-size: 0;
    width: 40px;
    background: #fff;
    height: 30px;
}
.myOrderSec .orders-table .pagination .paginate_button.disabled {
}
.myOrderSec .orders-table .pagination .paginate_button.active a {
    background: #7c5cbe !important;
    border-color: #7c5cbe;
    color: #fff;
}
.myOrderSec .orders-table .pagination .paginate_button a {
    padding: 2px 10px;
}
.myOrderSec
    .orders-table
    .pagination
    .paginate_button.previous
    .page-link:before {
    content: "";
    position: absolute;
    background: url(../images/leftArrowPegination.png) no-repeat;
    width: 22px;
    height: 25px;
    right: 8px;
    top: 1px;
    background-size: 100%;
}
.myOrderSec .orders-table .pagination .paginate_button.next .page-link:before {
    content: "";
    position: absolute;
    background: url(../images/rightArrowPegination.png) no-repeat;
    width: 22px;
    height: 25px;
    left: 8px;
    top: 1px;
    background-size: 100%;
}

.myOrderSec table.table-bordered.dataTable thead tr:first-child th:first-child {
    border-radius: 5px 0 0 0;
}
.myOrderSec table.table-bordered.dataTable thead tr:last-child th:last-child {
    border-radius: 0 5px 0 0;
}

.myOrderSec table.dataTable > tbody > tr.last1:first-child td:first-child {
    border-radius: 0 0 0 5px;
}
.myOrderSec table.dataTable > tbody > tr.last1:last-child td:last-child {
    border-radius: 0 0 5px 0;
}
.myOrderSec table.table-bordered.dataTable tr.last1 td:first-child {
    border-radius: 0 0 0 5px;
}

.myOrderSec table.table-bordered th {
    border-left-width: 0;
}
.myOrderSec table.table-bordered th:first-child {
    border-left: 1px solid #eee;
}
.myOrderSec .form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border: 2px solid #7c5cbe;
    margin: 0;
}
.myOrderSec .form-check-input:checked {
    background-color: #7c5cbe;
    border-color: #7c5cbe;
}
.myOrderSec .product-img-primary {
    width: 110px;
    margin: auto;
    display: block;
}
.faIconFev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.faIconFev i {
    color: #7c5cbe;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .myOrderSec .search-filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .myOrderSec .search-box {
        max-width: 100%;
    }

    .myOrderSec .filter-actions {
        flex-wrap: wrap;
        width: 100%;
    }

    .myOrderSec .order-type-select,
    .myOrderSec .action-btn {
        flex: 1;
        min-width: 140px;
        position: relative;
    }

    .myOrderSec .table {
        font-size: 12px;
    }

    .myOrderSec .table thead th,
    .myOrderSec .table tbody td {
        padding: 10px 8px;
    }
}

@media (max-width: 576px) {
    .myOrderSec .orders-table {
        overflow-x: auto;
    }
}

.table-footer .pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.table-footer .entries-control {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.table-footer .entries-control select {
    padding: 5px 30px 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.table-footer .entries-control select:focus {
    outline: none;
    border-color: #999;
}

.table-footer .pagination-info-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.table-footer .pagination-info {
    font-size: 14px;
    color: #333;
}

.table-footer .pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-footer .pagination-controls .page-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}

.table-footer .pagination-controls .page-btn:hover:not(:disabled) {
    background-color: #f8f9fa;
    border-color: #999;
}

.table-footer .pagination-controls .page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.table-footer .pagination-controls .page-number {
    min-width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 576px) {
    .table-footer .pagination-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .table-footer .pagination-info-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.thin-icon {
    font-size: 15px;
    color: #555;
    stroke-width: 0.2;
}

/* Add Address Card */

.myProfileSec .page-header {
    margin-bottom: 40px;
}

.add-address-card {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fafafa;
}

.add-address-card:hover {
    border-color: #7c5cbe;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 160, 92, 0.15);
}

.add-address-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.add-address-card:hover .add-address-icon {
    background: #7c5cbe;
}

.add-address-icon i {
    font-size: 36px;
    color: #999;
    transition: color 0.3s;
}

.add-address-card:hover .add-address-icon i {
    color: white;
}

.add-address-text {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s;
}

.add-address-card:hover .add-address-text {
    color: #7c5cbe;
}

/* Address Card */
.myAddressSec .address-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px 24px;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.myAddressSec .address-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #7c5cbe;
}

.myAddressSec .address-header {
    margin-bottom: 0px;
}

.myAddressSec .address-label {
    font-size: 14px;
    color: #7c5cbe;
    font-weight: 700;
}

.myAddressSec .address-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.myAddressSec .address-details {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 5px;
}
.myAddressSec .address-details p {
    margin-bottom: 0;
}

.myAddressSec .address-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid #f0f0f0;
}

.myAddressSec .btn-edit,
.myAddressSec .btn-remove {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.myAddressSec .btn-edit {
    color: #7c5cbe;
}

.myAddressSec .btn-edit:hover {
    color: #a88546;
    text-decoration: underline;
}

.myAddressSec .btn-remove {
    color: #666;
}

.myAddressSec .btn-remove:hover {
    color: #dc3545;
    text-decoration: underline;
}

.myAddressSec .action-divider {
    color: #ddd;
    font-weight: 300;
}

/* Form Styles */
.myAddressSec .btn-cancel-address {
    padding: 5px 18px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    height: auto;
}

.myAddressSec .btn-cancel-address:hover {
    border-color: #999;
    color: #333;
}

.myAddressSec .btn-save-address {
    padding: 5px 18px;
    border: none;
    background: #7c5cbe;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    height: auto;
}

.myAddressSec .btn-save-address:hover {
    background: #a88546;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .myAddressSec .profile-card {
        padding: 0px;
    }

    .myAddressSec .section-title {
        font-size: 24px;
    }

    .myAddressSec .add-address-card {
        min-height: 200px;
        padding: 20px 20px;
    }

    .myAddressSec .add-address-icon {
        width: 60px;
        height: 60px;
    }

    .myAddressSec .add-address-icon i {
        font-size: 28px;
    }

    .myAddressSec .address-card {
        min-height: 220px;
    }
}

.myProfileSec .update-btn {
    width: auto;
    background: #7c5cbe;
    color: white;
    border: none;
    padding: 5px 18px;
    border-radius: 26px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
    margin: 22px auto 0;
    display: table;
    text-align: center;
}

.bdr25 {
    border-radius: 25px;
}
.p25 {
    padding: 5px 18px;
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Animation for toast messages */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.btn-set-default {
    background: none;
    border: none;
    color: #7c5cbe;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.btn-set-default:hover {
    color: #5c0000;
    text-decoration: underline;
}

/* Modal styling to match your design */
#setDefaultConfirmModal .modal-content {
    border-radius: 8px;
    border: 1px solid #7c5cbe;
}

#setDefaultConfirmModal .modal-title {
    font-family: "Assistant", sans-serif;
}

/* Search Box Enhancement */
.myOrderSec #orderSearchInput {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 4px 12px;
    font-size: 14px;
    width: 100%;
}

.myOrderSec #orderSearchInput:focus {
    outline: none;
    border-color: #7c5cbe;
    box-shadow: 0 0 0 3px rgba(124, 92, 190, 0.1);
}

/* Custom Toast Styling */
.custom-toast {
    font-family: "Assistant", sans-serif;
}
.dataTables_wrapper {
    position: relative;
}
.dataTables_info {
    position: absolute;
    left: 0;
    bottom: 10px;
    left: 15px;
}

@media (max-width: 768px) {
    .dataTables_info {
        bottom: inherit;
        left: inherit;
        margin-bottom: 13px;
        position: relative;
    }
    .orders-table .dtr-details {
        display: block !important;
    }
    .myOrderSec .dataTables_wrapper .dtr-control:before {
        content: "▼" !important;
        color: #7c5cbe !important;
        position: absolute;
        right: 3px;
    }
    .orders-table .dtr-details .dt-body-center {
        display: flex;
    }
}

.eNChangeModal.bgModal .modal-content {
    background: #fff;
}
.eNChangeModal.bgModal .modal-content .btn-close1 {
    color: #000;
}
.eNChangeModal.bgModal .login-left-side,
.eNChangeModal.bgModal .login-right-side,
.eNChangeModal.bgModal .register-right-side,
.eNChangeModal.bgModal .register-left-side {
    padding: 0;
    box-shadow: none;
}
.eNChangeModal.bgModal .login-form-container .subtitle {
    margin-bottom: 20px;
}
.eNChangeModal.bgModal .email-input-group,
.eNChangeModal.bgModal .mobile-input-group {
    margin-bottom: 20px;
}
.checkboxSec {
    width: 15px;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    pointer-events: none;
}

.toast-notification {
    position: fixed;
    right: -400px;
    top: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    min-width: 350px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
    right: 0;
}

.toast-notification.success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toast-notification.error {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.toast-notification.warning {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.toast-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.4;
}

.toast-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    width: 100%;
    transform-origin: left;
    animation: progressBar 3s linear forwards;
}

@keyframes progressBar {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 768px) {
    .toast-notification {
        min-width: 300px;
        right: -350px;
    }
}

@media (max-width: 991px) {
    .myAccountSec .page-title {
        font-size: 28px;
    }
    .myAccountSec .account-card {
        padding: 25px;
    }
    .myProfileSec,
    .myAccountSec,
    .myOrderSec {
        padding: 0;
    }
    .myAccountSec .section-title,
    .myProfileSec .section-title,
    .myOrderSec .section-title {
        margin-bottom: 0;
    }
    .myAccountSec .breadcrumb,
    .myOrderSec .breadcrumb,
    .myProfileSec .breadcrumb {
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
    }
    .myAccountSec .page-header,
    .myProfileSec .page-header,
    .myProfileSec .page-header {
        margin-bottom: 15px;
    }
    .myOrderSec .search-filter-row {
        margin-top: 0;
    }
    .myOrderSec #orderSearchInput {
        padding: 0px 18px;
        height: 30px;
    }
    .myOrderSec .search-filter-row {
        gap: 0;
        padding-top: 10px;
        margin-bottom: 5px;
    }
}

/* Mobile Responsive Order Cards */
@media (max-width: 991px) {
    /* Hide default table structure */
    .myOrderSec .orders-table table thead {
        display: none;
    }

    .myOrderSec .orders-table table,
    .myOrderSec .orders-table table tbody,
    .myOrderSec .orders-table table tr {
        display: block;
        width: 100%;
    }

    /* Style each row as a card */
    .myOrderSec .orders-table table tbody tr {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .myOrderSec .orders-table table tbody tr:hover {
        box-shadow: 0 4px 12px rgba(124, 92, 190, 0.15);
        border-color: #7c5cbe;
    }

    /* Hide default table cells */
    .myOrderSec .orders-table table tbody tr td {
        display: block;
        text-align: left;
        padding: 8px 0;
        border: none;
        position: relative;
        padding-left: 50%;
    }

    /* Add labels before content */
    .myOrderSec .orders-table table tbody tr td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        color: #333;
        text-align: left;
    }

    /* Checkbox and Sr.No in first row - Side by side */
    .myOrderSec .orders-table table tbody tr td.checkboxSec {
        display: inline-block !important;
        width: auto;
        padding: 0;
        padding-right: 15px;
        vertical-align: middle;
        position: relative;
        padding-left: 0;
    }

    .myOrderSec .orders-table table tbody tr td.checkboxSec:before {
        display: none;
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(2) {
        display: inline-block !important;
        width: auto;
        padding: 0;
        padding-left: 0;
        margin-bottom: 15px;
        font-weight: 600;
        color: #333;
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(2):before {
        content: "Sr.No: ";
        position: static;
        display: inline;
        width: auto;
        font-weight: 800;
        color: #666;
        margin-right: 5px;
    }

    /* Status badge styling */
    .myOrderSec .orders-table table tbody tr td .badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    /* Actions styling */
    .myOrderSec .orders-table table tbody tr td .faIconFev {
        justify-content: flex-start;
        gap: 15px;
    }

    /* Remove dtr-control functionality */
    .myOrderSec .orders-table .dtr-control:before {
        display: none !important;
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(3) {
        border-top: 1px solid #ccc;
        margin-top: 10px;
    }

    /* Order Number - Special styling */
    .myOrderSec .orders-table table tbody tr td:nth-child(4) {
        font-size: 16px;
        font-weight: 700;
        color: #7c5cbe;
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(4):before {
        content: "Order No: ";
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }

    /* Other fields styling */
    .myOrderSec .orders-table table tbody tr td:nth-child(3):before {
        content: "Order Date: ";
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(5):before {
        content: "Order Type: ";
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(6):before {
        content: "No. Of Item: ";
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(7):before {
        content: "Order Total: ";
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(8):before {
        content: "Status: ";
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(9):before {
        content: "Actions: ";
    }

    .myOrderSec .orders-table.v2 table tbody tr td:nth-child(3):before {
        content: "Product Image: ";
    }

    .myOrderSec .orders-table.v2 table tbody tr td:nth-child(4):before {
        content: "SKU: ";
    }
    .myOrderSec .orders-table.v2 table tbody tr td:nth-child(5):before {
        content: "Variants: ";
    }
    .myOrderSec .orders-table.v2 table tbody tr td:nth-child(6):before {
        content: "Avl. Qty: ";
    }
    .myOrderSec .orders-table.v2 table tbody tr td:nth-child(7):before {
        content: "Rate: ";
    }
    .myOrderSec .orders-table.v2 table tbody tr td:nth-child(8):before {
        content: "Status: ";
    }
    .myOrderSec .orders-table.v2 table tbody tr td:nth-child(9):before {
        content: "Actions: ";
    }
    .myOrderSec .product-img-primary {
        display: INLINE;
    }
    .myOrderSec .orders-table table tbody tr td:nth-child(9) {
        border-top: 1px solid #ccc;
        padding-top: 10px;
        margin-top: 10px;
    }

    /* Responsive DataTables pagination */
    .myOrderSec .dataTables_wrapper .dataTables_paginate {
        text-align: center;
        margin-top: 20px;
    }

    .myOrderSec .dataTables_wrapper .dataTables_paginate .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    /* Checkbox styling */
    .myOrderSec .orders-table table tbody tr td.checkboxSec .form-check-input {
        width: 18px;
        height: 18px;
        cursor: pointer;
        border: 2px solid #7c5cbe;
        margin: 0;
        position: relative;
        top: 2px;
    }
    .myOrderSec .action-btn i {
        position: absolute;
        right: 10px;
    }
}

/* Extra styling for better mobile experience */
@media (max-width: 576px) {
    .myOrderSec .orders-table table tbody tr {
        padding: 12px;
    }

    .myOrderSec .orders-table table tbody tr td {
        font-size: 13px;
        padding: 6px 0;
        padding-left: 45%;
    }

    .myOrderSec .orders-table table tbody tr td:before {
        font-size: 12px;
        width: 40%;
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(4) {
        font-size: 15px;
    }

    .myOrderSec .orders-table table tbody tr td:nth-child(2) {
        font-size: 13px;
        position: absolute;
        top: 15px;
    }
}

.myOrderSec .orders-table .top {
    display: none;
}

.loader-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: relative;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-top: 2px dotted #7c5cbe;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Payment Processing Loader */
.payment-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.payment-loader-overlay.active {
    display: flex;
}

.payment-loader-content {
    text-align: center;
    background: #d8c7fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.payment-loader-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.payment-loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-top: 2px dotted #7c5cbe;
    border-radius: 50%;
    animation: paymentSpin 1s linear infinite;
}

.payment-loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-loader-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-loader-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.payment-loader-subtext {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

@keyframes paymentSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Alternative pulse loader style */
.payment-spinner-pulse {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.payment-spinner-pulse::before,
.payment-spinner-pulse::after {
    content: "";
    position: absolute;
    border: 4px solid #daa520;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: paymentPulse 2s ease-out infinite;
}

.payment-spinner-pulse::after {
    animation-delay: 1s;
}

@keyframes paymentPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.address-card-new {
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-card-new:hover {
    border-color: #03a685;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 166, 133, 0.15);
}

.address-card-new.active {
    border-color: #03a685;
    background-color: rgba(170, 146, 217, 0.3);
}

.address-label-clickable {
    cursor: pointer;
    user-select: none;
}

.address-name-new {
    cursor: pointer;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Searchable Select Styles */
.country-select-wrapper {
    position: relative;
}

.country-display-input {
    width: 100%;
    padding: 10px 35px 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    background-color: white;
}

.country-display-input:focus {
    outline: none;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.country-select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.country-select-wrapper.active .country-select-icon {
    transform: translateY(-50%) rotate(180deg);
}

.country-dropdown {
    position: absolute;
    bottom: calc(100% + 5px); /* Changed from top to bottom */
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.country-dropdown.show {
    display: block;
}

.country-search-box {
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

.country-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.country-search-input:focus {
    outline: none;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.country-options-list {
    max-height: 200px;
    overflow-y: auto;
}

.country-option {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.country-option:hover {
    background-color: #f8f9fa;
}

.country-option.selected {
    background-color: #e7f3ff;
    color: #0d6efd;
    font-weight: 500;
}

.country-option.no-results {
    color: #6c757d;
    text-align: center;
    cursor: default;
    padding: 20px 12px;
}

.country-option.no-results:hover {
    background-color: white;
}

/* Scrollbar styling for country dropdown */
.country-options-list::-webkit-scrollbar {
    width: 6px;
}

.country-options-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.country-options-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.country-options-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    width: 90%;
    margin: auto;
    height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* .mega-menu-content2 {
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
}

.mega-menu-content2 .mega-menu-column-wrap {
    flex: 1;
    min-width: 180px;
    padding: 20px 10px 20px 20px;
} */

.mega-menu-content {
    padding: 0px;
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
}

.mega-menu-column-wrap {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    padding: 20px 10px 20px 20px;
    display: inline-block;
    width: 100%;
}

.mega-menu-column-wrap .mega-menu-column {
    border-bottom: 1px solid rgba(204, 204, 204, 0.4);
    margin-bottom: 10px;
}
.mega-menu-column-wrap .mega-menu-column:last-child {
    border-bottom: 0px solid #ccc;
    margin-bottom: 0px;
}

.mega-menu.v2 .mega-menu-column {
    flex: 1;
    min-width: 180px;
    padding: 20px;
}

.mega-menu-column:nth-child(odd) {
}
.mega-menu-column:nth-child(even) {
    /*background: #f8f5ff;*/
    background: #fcfbfe;
}

.mega-menu-column-wrap:nth-child(odd) {
}
.mega-menu-column-wrap:nth-child(even) {
    /*background: #f8f5ff;*/
    background: #fcfbfe;
}

.mega-menu-column-wrap .mega-menu-column:nth-child(even) {
    background: none;
}

.mega-menu-column h4 {
    color: #7a5abb;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.mega-menu-column h3 {
    color: #7a5bbb;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 10px;
}

.mega-menu-column ul li a {
    color: #282c3f;
    font-size: 15px;
    text-decoration: none;
    display: block;
    transition:
        color 0.3s,
        padding-left 0.3s;
    display: flex;
    align-items: center;
}

.mega-menu-column ul li a:hover {
    color: #000;
    /*padding-left: 5px;*/
    font-weight: 600;
}

.mega-menu-column ul li .mv1 {
    text-align: center;
    padding: 2px;
    background: #e4d9fe;
    margin-right: 10px;
    border-radius: 50px;
    display: inline-block;
    width: 42px;
    height: 42px;
}

.mega-menu.v2 .mega-menu-column ul li a {
    padding-left: 50px;
    position: relative;
    display: flex;
    min-height: 50px;
}
.mega-menu.v2 .mega-menu-column ul li .mv1 {
    position: absolute;
    left: 0;
}

.mega-menu-column ul li .mv1 img {
    width: 30px;
    height: 30px;
}

.mega-menu-column.full {
    width: 100%;
}
.mega-menu-column.full ul {
    display: block;
    text-align: center;
}
.mega-menu-column.full li {
    width: 15%;
    margin: 10px;
    display: inline-block;
}
.mega-menu-column .collection-card {
    padding-bottom: 10px;
    border: 1px solid #fff;
}
.mega-menu-column .collection-card:hover {
    box-shadow: 0 17px 20px rgba(124, 92, 190, 0.2);
    padding-bottom: 10px;
    border: 1px solid #aa92d9 !important;
}
.mega-menu-column .card-image-wrapper {
    box-shadow: none;
    margin: 0;
    padding: 10px;
    height: auto;
}
.mega-menu-column .collection-card:hover .card-image-wrapper img {
    transform: inherit !important;
}
.mega-menu-column .collection-card:hover,
.mega-menu-column .card-image-wrapper:hover {
    transform: inherit !important;
}
.mega-menu-column .card-image-wrapper img {
    border-radius: 10px;
}
.mega-menu-column a {
    text-transform: capitalize;
    text-decoration: none;
}

@media (min-width: 1600px) {
    .mega-menu {
        width: 80%;
    }
}
/* Responsive */
@media (max-width: 1200px) {
    .mega-menu-content {
        gap: 25px;
        padding: 25px 30px;
    }

    .mega-menu-column {
        min-width: 150px;
    }
}

@media (max-width: 992px) {
    .mega-menu-content {
        flex-wrap: wrap;
    }

    .mega-menu-column {
        flex: 0 0 calc(33.333% - 20px);
    }
    .mega-menu-content {
        padding: 15px;
        text-align: left;
        gap: 0;
        columns: 1;
        max-width: 100%;
    }
    .mega-menu-column.full li {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .menu-links .nav {
        flex-direction: column;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-item:hover .mega-menu {
        display: block;
        text-align: left;
        padding-left: 0px;
    }

    .mega-menu-column {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

/* WebKit browsers (Chrome, Safari, Edge) */
.mega-menu::-webkit-scrollbar {
    width: 8px;
}

.mega-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: #aa92d9;
    border-radius: 10px;
    min-height: 40px; /* Ensures thumb has minimum height */
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: #8b6fb9; /* Slightly darker on hover */
}

/* Firefox */
.mega-menu {
    scrollbar-width: thin;
    scrollbar-color: #aa92d9 #f1f1f1;
}
/* Show nav-link underline when hovering on nav-item (for mega menu) */
.nav-item:hover .nav-link::before {
    -webkit-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
}
.menu-links .nav-link::before {
    background-color: #7c5cbe;
    border-radius: 0.313rem;
    bottom: 0px;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    z-index: 21;
}

.menu-links .nav-link:hover:before {
    -webkit-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
}

/* Show underline when hovering nav-item (mega menu trigger) */
.nav-item:hover .nav-link::before {
    -webkit-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
}

/* Mobile Mega Menu Accordion Styles */
@media (max-width: 991px) {
    .mega-menu-column h3 {
        position: relative;
        margin-top: 0 !important;
        font-size: 14px;
        margin-bottom: 21px;
    }
    .mega-menu-column h3::after {
        content: "\002B"; /* Plus sign */
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 15px;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .mega-menu-column h3.active::after {
        content: "\2212"; /* Minus sign */
    }

    .mega-menu-column h3 + ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        margin: 0;
        padding: 0;
    }

    .mega-menu-column h3 + ul.active {
        max-height: 1000px; /* Adjust based on your content */
        margin-bottom: 15px;
    }

    .mega-menu-column ul li {
        /*opacity: 0;*/
        transform: translateY(-10px);
        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
        margin-bottom: 10px;
    }

    .mega-menu-column ul.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation for list items */

    .mega-menu-column ul li a {
        display: block;
        padding: 0px;
        color: #666;
        text-decoration: none;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }

    .mega-menu-column ul li a:hover {
        background: #f8f9fa;
        color: #333;
        /*border-left-color: #d4af37;*/
        /*padding-left: 20px;*/
    }

    /* Add spacing between accordion sections */
    .mega-menu-column,
    .mega-menu.v2 .mega-menu-column,
    .mega-menu-column-wrap {
        padding: 0;
        margin: 0;
    }
}
@media (max-width: 991px) {
    .mega-menu-column h3::after {
        font-family: "Font Awesome 6 Free";
        content: "\f107"; /* fa-angle-down */
        font-weight: 900;
        transition: transform 0.3s ease;
    }

    .mega-menu-column h3.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .nav-item .nav-link::after {
        font-family: "Font Awesome 6 Free";
        content: "\f054"; /* fa-angle-down */
        font-weight: 900;
        transition: transform 0.3s ease;
        position: absolute;
        right: 0px;
        top: 29%;
        /*transform: translateY(-50%);*/
        font-size: 15px;
    }

    .nav-item.active .nav-link::after {
        /*transform: translateY(-50%) rotate(180deg);*/
        content: "\f107";
    }

    .mega-menu-column:nth-child(even) {
        background: none;
    }
    .mega-menu {
        height: 75vh;
    }
    .menu-links .nav-link {
        position: relative;
    }
    .menu-links .nav-link::before {
        height: 0;
    }
    .mega-menu {
        margin-bottom: 10px;
    }
    .mega-menu-column-wrap .mega-menu-column {
        border-bottom: 0px solid rgba(204, 204, 204, 0.4);
        margin-bottom: 0px;
    }
    .mega-menu-column .collection-card {
        padding: 0;
        margin: 0;
    }
}

/* PDF Modal Styles */
.pdf-modal-close {
    border: 0;
    background: none;
    font-size: 35px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 0;
}
.pdf-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-modal-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.pdf-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 90vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.pdf-modal-overlay.active .pdf-modal-container {
    transform: scale(1);
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    color: #000;
    position: relative;
}

.pdf-modal-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-modal-title i {
    font-size: 22px;
}

.pdf-modal-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pdf-action-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pdf-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.pdf-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.pdf-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.pdf-modal-body {
    height: calc(90vh - 70px);
    padding: 0;
    background: #f5f5f5;
}

.pdf-viewer-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pdf-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pdf-loading-text {
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pdf-modal-container {
        width: 95%;
        height: 95vh;
    }

    .pdf-modal-header {
        padding: 12px 15px;
    }

    .pdf-modal-title {
        font-size: 16px;
    }

    .pdf-action-btn {
        padding: 5px 10px;
        font-size: 13px;
    }

    .pdf-action-btn span {
        display: none;
    }

    .pdf-modal-body {
        height: calc(95vh - 60px);
    }
}

/* Error State */
.pdf-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
}

.pdf-error-icon {
    font-size: 64px;
    color: #dc3545;
    margin-bottom: 20px;
}

.pdf-error-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.pdf-error-subtext {
    font-size: 14px;
    color: #999;
}

/* Loader Added Start */
#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.25);
    z-index: 999999999;
}
#overlay .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#overlay .borderSpiner {
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: transparent;
    border-radius: 50%;
    background-color: transparent;
    border: 3px solid #fff;
    border-top-color: #7c5cbe;
    -webkit-animation: 0.8s spin linear infinite;
    animation: 0.8s spin linear infinite;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* Loader Added End */

.variant-card.active-variant {
    border: 2px solid #c8a96e;
    box-shadow: 0 0 10px rgba(200, 169, 110, 0.4);
    border-radius: 8px;
}

/* custome model  */
#customAlertModal {
    z-index: 99999;
}
#customAlertModal .modal-content {
    border: 1px solid #ccc;
    border-radius: 13px;
    box-shadow: 0 0 11px #ccc;
}

/**  dsgsgdsgs**/

.vote-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #6c757d;
    transition: 0.2s ease;
}

.vote-btn i {
    font-size: 18px;
}

.vote-btn:hover {
    transform: scale(1.1);
}

.active-yes {
    color: #28a745; /* Green */
}

.active-no {
    color: #dc3545; /* Red */
}

.active-yes {
    color: #28a745 !important;
}

.active-no {
    color: #dc3545 !important;
}

.promoSec1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.promo-banner {
    width: calc(33.33% - 14px);
}

/* ===== OUTER ROW ===== */
.jewelry-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 1200px;
    width: 100%;
    height: 566px;
    overflow-x: scroll;
    margin: auto;
    text-align: center;
    justify-content: center;
}

/* ===== BASE CARD ===== */
.jewelry-wrapper .card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    flex-shrink: 0;
}

.jewelry-wrapper .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.jewelry-wrapper .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.jewelry-wrapper .card:hover img {
    transform: scale(1.07);
}

.jewelry-wrapper .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.jewelry-wrapper .col-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 285px;
    flex-shrink: 0;
}

.jewelry-wrapper .col-stack .card {
    flex: 1;
    /* each takes equal height */
    width: 100%;
}

.jewelry-wrapper .card-stack-2 {
    width: 300px;
    height: 100%;
}

@media (max-width: 991px) {
    .promoSec1 {
        display: block;
    }
    .promoSec1 .promo-banner {
        width: 100%;
        margin-bottom: 20px;
    }
}

.nav-icons .nav-icon-item .nav-link.dropdown-item i {
    margin: 0;
}
.order-result-actions .order-btn-orders:hover {
    background: var(--primary-color, #282c3f);
}
.wrapInfo1 .btn-view-more {
    padding: 3px 10px;
}

.backBtn {
    position: absolute;
    left: 7px;
    top: 10px;
    background: none;
    border: 0;
}

.backBtnemail {
    position: absolute;
    left: 7px;
    top: 10px;
    background: none;
    border: 0;
}
.backBtnphone {
    position: absolute;
    left: 7px;
    top: 10px;
    background: none;
    border: 0;
}

.filter-dropdowns .dropdown-menu {
    height: 200px;
    overflow-y: scroll;
}
.show1 {
    display: none !important;
}
.show1.show {
    display: block !important;
}
/*register */
.btn-purple-gradient {
    background: linear-gradient(90deg, #7b5fc9 0%, #8e6edb 100%);
    color: #fff;
    border: none;
    padding: 7px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(123, 95, 201, 0.3);
}

.btn-purple-gradient:hover {
    background: linear-gradient(90deg, #6a4ec2 0%, #7b5fc9 100%);
    box-shadow: 0 6px 15px rgba(123, 95, 201, 0.4);
    transform: translateY(-1px);
}

/*review video*/
.media-thumb {
    width: 120px;
    height: 120px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.media-thumb img,
.media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb video {
    pointer-events: none;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 35px;
}

.media-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.media-modal-content img,
.media-modal-content video {
    max-width: 90%;
    max-height: 90%;
}

.close-media {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

.review-media-thumb {
    width: 100px;
    height: 100px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.review-media-thumb img,
.review-media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb video {
    pointer-events: none;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 30px;
}

.review-media-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#reviewMediaContainer img,
#reviewMediaContainer video {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 10px;
}

.close-review-media {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.wrapInfo1 {
    display: flex;
    justify-content: center;
}

.wrapInfo1 .btn-view-more {
    background: #7c5cbe;
    border-radius: 7px;
    box-shadow: 0 2px 4px #ccc;
    color: #fff;
}
.wrapInfo1 .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}
.ProductDetaSection .detail-body {
    background: rgba(209, 189, 255, 0.2);
}
.product-cart-section-fixed .weight-selector {
    background: rgba(209, 189, 255, 0.2);
}

.crafts-section.ty03 .categories-grid.one {
    grid-template-columns: repeat(1, 1fr);
}
.crafts-section.ty03 .categories-grid.three {
    grid-template-columns: repeat(3, 1fr);
}
.crafts-section.ty03 .categories-grid.four {
    grid-template-columns: repeat(4, 1fr);
}
.crafts-section.ty03 .categories-grid.five {
    grid-template-columns: repeat(5, 1fr);
}

.collection-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.collection-grid.four {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.collection-grid.four .card-image-wrapper {
    height: 225px;
}
.collection-grid.four .card-image-wrapper a {
    height: 100%;
}
.collection-grid.three {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.collection-grid.three .card-image-wrapper {
    height: 300px;
}
.collection-grid.two {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.collection-grid.six {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.collection-grid.two .card-image-wrapper {
    height: 350px;
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0 !important;
    }
    .card-image-wrapper {
        height: 100px;
        margin-bottom: 0.8rem 12.8px;
        padding: 0;
    }
}

.mySwiper2a .swiper-wrapper {
    justify-content: center;
}
.btn-view-more {
    display: inline-flex !important;
    width: auto;
    height: 40px;
    align-items: center;
    justify-content: center;

    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;

    background: #7c5cc4;
    color: #fff;
    text-decoration: none;

    line-height: 1;
    gap: 6px;
}

.faint-text {
    color: #8b8b8b; /* perfect faint grey */
    font-weight: 400;
    font-size: 14px;
}

.modal-content {
    position: relative;
}

/* LEFT BACK BUTTON */
.btn-back {
    position: absolute;
    top: 12px;
    left: 12px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #fff; /* WHITE ARROW */
    padding: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.btn-back:hover {
    color: #ffffff;
}

.avlQtyInfo {
    background: rgba(209, 189, 255, 0.2);
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 600;
}
.avlQtyInfo.outStock {
    color: red;
}
.avlQtyInfo.avlStock {
    color: green;
    font-weight: 700;
}

.listingSwapper {
    padding: 16px 0;
}

.listingSwapper .listingSwapperSwiper {
    padding-bottom: 4px;
}

.listingSwapper .swapper-card {
    cursor: pointer;
    text-align: center;
}

.listingSwapper .swapper-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f5f5f5;
}

.listingSwapper .swapper-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.listingSwapper .swapper-card:hover .swapper-img-wrap img {
    transform: scale(1.04);
}

.listingSwapper .swapper-title {
    margin-top: 8px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listingSwapper .img-fluid {
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .listingSwapper {
        margin-top: 45px;
    }
    .listingSwapper.v2 {
        margin-top: 0px;
        padding-top: 0;
    }
    .card-image-wrapper img {
        border-radius: 12px;
        height: 95px;
    }
}

/*  PURPLE TIMER */
#phoneOtpTimer,
#emailOtpTimer {
    color: #7c3aed;
    font-weight: 700;
    letter-spacing: 1px;
}

/*  PURPLE RESEND BUTTON */
#resendPhoneOtpBtn,
#resendEmailOtpBtn {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

/* hover effect */
#resendPhoneOtpBtn:hover,
#resendEmailOtpBtn:hover {
    color: #5b21b6;
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #22c15e;
}
.back-to-top {
    position: fixed;
    bottom: 90px; /* 👈 above WhatsApp button */
    right: 20px;
    width: 40px;
    height: 40px;
    background: #6f42c1; /* Jiami purple */
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none; /* hidden initially */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #5b35a5;
}
.price-slider-wrapper .btn {
    background: #7c5cbe;
    border: 1px solid #7c5cbe;
    padding: 4px 10px;
}
.defaultBtn {
}

/* Out of Stock Overlay */
.product-grid .product-image {
    position: relative;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    top: 21px;
    left: -35px;
    width: 143px;
    text-align: center;
    background: #ff3b30;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    letter-spacing: 0.5px;
}

.stock-filter-label {
    border: 1px solid #886fbf;
    cursor: pointer;
}

.stock-filter-checkbox {
    accent-color: #7c5cbe;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.key-collection-section.v2 .collection-card {
    background: none;
    border-radius: 0;
}
.key-collection-section.v2 .card-image-wrapper {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    padding: 0;
}

.key-collection-section.v2 .collection-grid .card-image-wrapper {
    height: auto;
}

