@font-face {
    font-family: 'Carattere';
    src: url('/static/vendor/googleFonts/Carattere-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Fira Sans";
    src: url('/static/vendor/googleFonts/FiraSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.carattere {
    font-family: "Carattere", cursive;
}

body {
    font-family: "Fira Sans", sans-serif;
    text-transform: capitalize;
    color: #161616 !important;
    background: white;
    scroll-behavior: smooth;
    /* padding-bottom: 300px; */
}

/***************************************Navbar style start****************************************/
.searchBox {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #EF2E95;
    border-radius: 25px;
    padding: 6px 12px;
    width: 250px;
    transition: 0.3s ease;
}

.searchBox:focus-within {
    border-color: #c50b6e;
    box-shadow: 0 0 14px rgba(239, 226, 218, 0.89);
}

.searchBox .searchBtn i {
    color: #EF2E95;
    font-size: 16px;
    margin-right: 8px;
    cursor: pointer;
}

.searchBox .searchInput {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
}

.searchBox .searchInput::placeholder {
    color: #999;
    font-size: 16px;
}

.cursorPointer {
    cursor: pointer;
}

.boxShadowNone {
    box-shadow: none !important;
}

.categoryMenu {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
    position: relative;
    z-index: 1;
    gap: 130px;
}

.categoryMenu div {
    display: flex;
    justify-content: around;
    column-gap: 70px;
}

.categoryMenu:after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0 0 14px 14px;
    transform: perspective(110px) rotateX(-6deg);
    z-index: -1;
}

.categoryMenu li {
    list-style: none;
    cursor: pointer;
    font-size: 16px !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.categoryMenu li:hover {
    color: #EF2E95;
}

.categoryMenu li {
    list-style: none;
}

.categoryMenu a {
    text-decoration: none;
    color: #342f2f;
    font-weight: 300;
    transition: color 0.3s ease;
    font-size: 16px !important;
}

.categoryMenu a:hover {
    color: #e91e63 !important;
    /* pink hover */
}


.centerLogo {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 10;
    width: 140px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.centerLogo:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


@media (max-width: 1200px) {
    .categoryMenu {
        gap: 60px;
    }

    .categoryMenu div {
        column-gap: 30px;
    }

    .centerLogo {
        width: 120px;
        top: -25%;
    }

    .categoryMenu li {
        font-size: 16px;
    }

    .firstHalfNav {
        padding-left: 0rem !important;
    }

    .secondHalfNav {
        padding-right: 0rem !important;
    }
}

@media (max-width: 768px) {
    .categoryMenu {
        gap: 40px;
    }

    .categoryMenu div {
        column-gap: 40px;
    }

    .centerLogo {
        width: 90px;
        top: -25%;
    }

    .categoryMenu li {
        font-size: 13px;
    }
}


.appHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.appHeader.hideHeader {
    transform: translateY(-100%);
    opacity: 0;
}

.appHeader::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -30px;
    right: -30px;
    bottom: 77px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: -1;
    border-radius: 20px;
}

.offcanvasBottom {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
    animation: slideUp 0.3s ease-out;
    --bs-offcanvas-height: 40vh !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.offcanvasBottom .offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
}

.offcanvasBottom .offcanvas-title {
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

.menuIcon {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.menuIcon:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(255, 20, 147, 0.3));
}

.offcanvasBottom small {
    display: block;
    margin-top: 6px;
    font-weight: 500;
    font-size: 13px;
    color: #EF2E95 !important;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.offcanvasBottom a {
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.offcanvasBottom a:hover {
    background: #EF2E95;
    /* solid pink */
    transform: scale(1.05);
}

.offcanvasBottom a:hover .menuIcon {
    filter: brightness(0) invert(1);
    transform: scale(1.15);
}

.offcanvasBottom a:hover small {
    color: #fff !important;
}

@media(max-width:768px) {
    .categoryMenuNav {
        display: none !important;
    }

    .mobileLogo {
        display: block !important;
    }
}

.offcanvasTop {
    height: var(--bs-offcanvas-height) !important;
}

@media (max-width: 568px) {

    .searchBox {
        display: none !important;
    }

    .searchIconMobile {
        display: inline-block !important;
    }

    .contactText {
        display: none !important;
    }

    .contactIcon {
        display: inline-block !important;
    }
}



/***************************************Navbar style End****************************************/


/***************************************Index Page Style Start***************************************/

/*  Elegant Pink Shimmer Placeholder */
.placeholder-shimmer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fce4ec, #d4c8cd);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(255, 182, 193, 0.3);
}

/*  Soft moving shimmer light */
.placeholder-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);
    animation: shimmer 1.6s infinite ease-in-out;
    filter: blur(2px);
    opacity: 0.9;
}

/*  Smooth shimmer motion */
@keyframes shimmer {
    100% {
        transform: translateX(300%);
    }
}

/*  Optional: subtle animation for entry fade */
.placeholder-shimmer.fadeIn {
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.indexHero {
    height: 120vh;
    background-position: center;
    background-size: cover;
    /* animation: heroBgChange 9s infinite; */
    /* 3 images × 3s each */
    background-image: url("/static/img/background/indexHeroBg1.png");
    ;
}

@keyframes heroBgChange {
    0% {
        background-image: url("/static/img/background/indexHeroBg1.png");
    }

    33% {
        background-image: url("/static/img/background/indexHeroBg2.png");
    }

    66% {
        background-image: url("/static/img/background/indexHeroBg3.png");
    }

    100% {
        background-image: url("/static/img/background/indexHeroBg1.png");
    }
}

.indexHeroContent h1 {
    font-size: clamp(43px, 6vw, 80px) !important;
}

.indexHeroContent p {
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.3rem) !important;
    font-weight: 300 !important;
}

.indexHeroContent {
    padding: 250px 90px;
}

@media (max-width: 768px) {
    .indexHeroContent {
        padding: 240px 80px;
    }
}

@media (max-width: 576px) {
    .indexHeroContent {
        padding: 190px 30px;
    }

    .indexHero {
        height: 90vh;
    }
}

@media (max-width: 306px) {

    .indexHero {
        height: 120vh;
    }
}


.sectionPadding {
    padding: 50px;
}

.sscCard {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sscCard img {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
}

@media(max-width:768px) {

    .sscCardImg4,
    .sscCardImg1 {
        height: 100% !important;
    }

    .sectionPadding {
        padding: 30px 20px;
    }
}

@media(max-width:424px) {

    .sectionPadding {
        padding: 30px 10px;
    }
}


.sscCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sscContent {
    border-radius: 0 0 16px 16px;
}

.textDecorationUnderline {
    text-decoration: underline !important;
    font-weight: 500;
}

.sscCard {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sscCard img {
    width: 100%;
    display: block;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
}

.sscCard::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 90%;
    height: 100%;
    background: linear-gradient(170deg,
            transparent,
            rgba(255, 255, 255, 0.084),
            transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    50% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

.sscCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


.productWithCategoriesContainerOne,
.productWithCategoriesContainerThree {
    background: #fff0f8;
}


.productWithCategoriesContainerTwo,
.productWithCategoriesContainerFour {
    background: #FFF3DB;
}

.earingsAndNecklesContainer,
.chainCollectionContainer,
.ringCollectionContainer,
.banglesCollectionContainer {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 60px;
    overflow: hidden;
}

.leftImage {
    flex: 0 0 30%;
    text-align: center;
}

.leftImage img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    transition: filter 0.5s ease;
}

.leftImage img:hover {
    filter: saturate(1.5);
    cursor: pointer;
}

.rightContent {
    flex: 0 0 70%;
    overflow: hidden;
}

.productSwiperNecklesAndEarings,
.productSwiperChain,
.productSwiperRings,
.productSwiperBangles {
    width: 100%;
    padding-bottom: 40px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide.productItem {
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.swiper-slide.productItem img {
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
    transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.4s ease;
    transform-origin: center;
}

.swiper-slide.productItem img:hover {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.5);
    box-shadow: 0 0 35px rgba(242, 5, 159, 0.525);
}


.swiper-slide.productItem:hover {
    cursor: grab;
}

@media (max-width: 992px) {

    .earingsAndNecklesContainer,
    .chainCollectionContainer,
    .ringCollectionContainer,
    .banglesCollectionContainer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 60px 40px;
        gap: 50px;
    }

    .leftImage,
    .rightContent {
        flex: 0 0 100%;
        width: 100%;
    }

    .leftImage img {
        max-width: 320px;
        margin: 0 auto;
    }

    .productSwiperNecklesAndEarings {
        padding: 20px 0 40px 0;
    }
}

@media (max-width: 576px) {

    .earingsAndNecklesContainer,
    .chainCollectionContainer,
    .ringCollectionContainer,
    .banglesCollectionContainer {
        padding: 40px 16px;
        gap: 30px;
    }

    .leftImage img {
        max-width: 260px;
    }
}

.swiperButtonNext,
.swiperButtonPrev,
.necklesNext,
.necklesPrev,
.ringNext,
.ringPrev,
.banglesNext,
.banglesPrev {
    color: #d63384;
    transition: 0.3s ease;
    position: static !important;
}

.swiperButtonNext:hover,
.swiperButtonPrev:hover,
.necklesNext:hover,
.necklesPrev:hover,
.ringNext:hover,
.ringPrev:hover,
.banglesNext:hover,
.banglesPrev:hover {
    color: #9b0056;
}


.adCWESection {
    background-image: url("/static/img/background/cweBg.png");
    background-position: center;
    background-size: cover;
    height: 90vh;
}

.adCWESection2 {
    background: #FFE3AA;
}

@media(max-width:768px) {
    .adCWESection2 {
        justify-content: center;
    }
}

.adPadding {
    padding: 0px 130px;
}

@media(max-width:768px) {
    .adPadding {
        padding: 20px;
        text-align: center;
    }

    .adCWESection2 {
        flex-wrap: wrap !important;
        padding: 20px;
        justify-content: center !important;
    }
}

.adCWESection2 {
    padding: 50px;
}

.testimonialCard {
    border-radius: 16px;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;

}

.testimonialCard img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 12px;
}

.testimonialCard p {
    color: #333;
    font-size: 15px !important;
    margin-bottom: 10px;
    height: 60px;
    overflow-y: auto;
    scrollbar-width: none;
}

.testimonialCard p::-webkit-scrollbar {
    display: none;
}

.testimonialCard hr {
    width: 80%;
    margin: 10px auto;
    height: 1px;
    border: none;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), #d14773, rgba(255, 255, 255, 0.8));
}

.testimonialCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
    .testimonialSwiper {
        padding-left: 40px !important;
    }
}

@media (max-width: 400px) {
    .testimonialSwiper {
        padding-left: 10px !important;
    }

    .testimonialCard {
        border-radius: 16px;
        width: 290px;
        text-align: center;
        transition: all 0.3s ease;

    }
}

@media (max-width: 340px) {
    .testimonialCard {
        width: 260px;

    }
}

.swiper {
    width: 100%;
    padding-bottom: 40px;
}

.swiper-pagination-bullet {
    background: #d14773;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #d14773;
}

.contactContainer {
    background-color: #ffeef7;
    border-radius: 16px;
}

.contactInfo p {
    color: #333;
    font-size: 16px;
}

.contactDetail i {
    font-size: 18px;
    color: #d14773;
}

.contactForm {
    border-radius: 16px;
}

.formHeader {
    background: linear-gradient(90deg, #f35ca3, #e94a85);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.borderPrimary {
    border: 1px solid #f35ca3 !important;
    border-radius: 6px;
}

.borderPrimary:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 92, 163, 0.25);
}

@media (max-width: 768px) {
    .contactContainer {
        padding: 40px 20px;
    }

    .formHeader {
        font-size: 18px;
    }

    .contactInfo p {
        font-size: 14px;
    }
}

.contactDetail i {
    font-size: 16px;
    color: #fff;
    background-color: #e94a85;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contactDetail:hover i {
    background-color: #fff;
    color: #e94a85;
    border: 1px solid #e94a85;
    transform: scale(1.05);
}

.footerContainer {
    display: flex;
    justify-content: space-evenly !important;
    flex-wrap: wrap;
    align-items: start;
    gap: 60px;
    padding: 60px 60px 0px;

}

.footerBrand {
    flex: 1 1 220px;
    border-radius: 50px 50px 0 0;

}

.footerBrandBox {
    text-align: center;
    padding: 30px 20px;
    padding-bottom: 150px;
}

.footerLogo {
    width: 120px;
    margin-bottom: 15px;
}

/* Columns */
.footerColumn {
    flex: 1 1 120px;
    min-width: 160px;
}

.footerColumn h4 {
    color: #e94a85;
    font-size: clamp(1.3rem, 2.5vw + 0.2rem, 1.5rem) !important;
    font-weight: 600;
    margin-bottom: 16px;
    text-decoration: underline;
}

.footerColumn ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerColumn li {
    margin-bottom: 20px;
}

.footerColumn a {
    text-decoration: none;
    color: #444;
    transition: all 0.3s ease;
}

.footerColumn a:hover {
    color: #e94a85;
    padding-left: 6px;
    font-weight: bold;
}

/* Divider & Bottom Text */
.footerSection hr {
    margin: 40px 0 20px;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f5b6ca, transparent);
}

.footerBottom {
    text-align: center;
    padding: 20px;
    margin: 0;
    font-size: 15px !important;
}

.footerBottom a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    font-size: 18px !important;
}

.footerBottom a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footerContainer {
        justify-content: center;
    }

    .footerBrandBox {
        text-align: center;
        padding: 30px;
        padding-bottom: 0px;
    }
}

@media (max-width: 768px) {

    .footerColumn h4 {
        margin-top: 20px;
    }

    .footerContainer {
        gap: 20px;
        align-items: center !important;
    }
}

@media (max-width: 769px) {
    .footerBrand {
        flex: 1 1 30%;
    }

    .footerColumn {
        flex: 1 1 20%;
    }
}

@media(max-width:424px) {

    .footerColumn,
    .footerBrand {
        flex: 1 1 100%;
        text-align: center;
    }

    .footerContainer {
        display: flex;
        justify-content: space-evenly !important;
        flex-wrap: wrap;
        align-items: center;
        gap: 3px;
        padding: 0px;
    }

    .footerBottom {
        padding: 15px;
        font-size: 12px !important;
    }

    .footerBottom a {
        font-size: 14px !important;
    }
}

:root {
    --accent: #e94a85;
}

.userDropdownWrapper {
    position: relative;
    display: inline-block;
}

.userDropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: fit-content;
    display: none;
    z-index: 1000;
    animation: fadeIn 0.25s ease forwards;
}

.userDropdown.show {
    display: block;
}

.userInfo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.userInfo i {
    font-size: 28px !important;
    color: var(--accent);
}

.userText {
    display: flex;
    flex-direction: column;
}

.userName {
    font-size: 15px !important;
    font-weight: 600;
    color: var(--accent);
}

.userEmail {
    font-size: 13px !important;
    color: #555;
    margin-top: 2px;
}

.userDropdown hr {
    margin: 12px 0;
    border-color: #eee;
}

.dropdownBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdownBtn i {
    font-size: 16px;
}

.dropdownBtn:hover {
    background-color: #d13b73;
    transform: translateY(-1px);
}

.outlineBtn {
    background-color: #fff;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.outlineBtn:hover {
    background-color: var(--accent);
    color: #fff;
}

.cursorPointer {
    cursor: pointer;
}

.textAccent {
    color: var(--accent);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive: tablets & mobile */

@media (max-width: 356px) {
    .userDropdown {
        right: -90px !important;
        width: 200px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .userDropdown {
        right: -40px;
        width: 200px;
        padding: 12px;
    }

    .userInfo i {
        font-size: 24px !important;
    }

    .userName {
        font-size: 14px !important;
    }

    .userEmail {
        font-size: 12px !important;
    }

    .dropdownBtn {
        font-size: 13px !important;
        padding: 7px;
    }
}

@media(max-width:320px) {
    .prevNextBtns {
        gap: 10px !important;
        justify-content: center !important;
    }
}

.modalBgColor {
    background-color: #fff5fa;
    border-radius: 16px;
}

#addressFormContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.placeOrderAddress {
    flex: 1 1 48%;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(233, 74, 133, 0.1);
}

.placeOrderAddress h6 {
    color: #e94a85;
}

.form-floating label {
    color: #777;
}

.border-primary {
    border: 1px solid #e94a85 !important;
    border-radius: 8px;
}

.border-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 74, 133, 0.25);
}


/* Responsive Layouts */
@media (max-width: 992px) {
    .placeOrderAddress {
        flex: 1 1 100%;
    }


    .placeOrderAddress form {
        position: static !important;
    }

    .modal-dialog {
        max-width: 95% !important;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .placeOrderAddress {
        padding: 16px;
    }

    .form-floating label {
        font-size: 13px;
    }

    .modal-body {
        padding: 10px;
    }
}

/* Optional: Smooth modal transition */
.modal.fade .modal-dialog {
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.smallCase {
    text-transform: lowercase;
}


.searchBox:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.searchInput {
    border: none;
    outline: none;
    flex: 1;
    background: transparent;
    font-size: 15px !important;
    color: #555;
    cursor: pointer;
}

.searchBtn {
    color: #555;
    cursor: pointer;
}

/* Overlay */
.customSearchOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* Modal Box */
.customSearchModal {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    padding: 20px;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Active state */
.customSearchOverlay.active {
    display: flex;
    opacity: 1;
}

.customSearchOverlay.active .customSearchModal {
    transform: translateY(0);
    opacity: 1;
}

/* Header */
.searchModalHeader {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 15px;
    background: #fafafa;
}

.searchModalInput {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px !important;
    background: transparent;
    color: #333;
}

.closeSearchModal {
    font-size: 14px !important;
    color: #e94a85;
    cursor: pointer;
}

/* Suggestions */
.searchSuggestions {
    margin-top: 20px;
}

.suggestionTitle {
    font-weight: bold;
    color: #e94a85;
    margin-bottom: 10px;
}

.searchSuggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.searchSuggestions li {
    padding: 8px 0;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.searchSuggestions li:hover {
    color: #e94a85;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 576px) {
    .customSearchModal {
        width: 95%;
        padding: 16px;
    }

    .searchModalHeader {
        padding: 8px 12px;
    }

    .searchModalInput {
        font-size: 14px !important;
    }
}

/* *************  product page start ******************* */

.categoryMenuProduct {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
    position: relative;
    z-index: 1;
    gap: 130px;
}

.categoryMenuProduct div {
    display: flex;
    justify-content: around;
    column-gap: 120px;
}

.categoryMenuProductList:after {
    content: "";
    background-color: #FFE7F4;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0 0 14px 14px;
    transform: perspective(110px) rotateX(-6deg);
    z-index: -1;
}

.btn-plus,
.btn-minus {
    --bs-btn-padding-x: 0.95rem !important;
}

.categoryMenuProduct li {
    list-style: none;
    cursor: pointer;
    font-size: 16px !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.categoryMenuProduct li:hover {
    color: #EF2E95;
}

@media (max-width: 1200px) {
    .categoryMenuProduct {
        gap: 60px !important;
    }

    .categoryMenuProduct div {
        column-gap: 60px !important;
    }

    .centerLogo {
        width: 120px !important;
        top: -25%;
    }

    .categoryMenuProduct li {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .categoryMenuProduct {
        gap: 40px !important;
    }

    .categoryMenuProduct div {
        column-gap: 40px !important;
    }

    .centerLogo {
        width: 90px !important;
        top: -25% !important;
    }

    .categoryMenuProduct li {
        font-size: 13px !important;
    }
}


.productSpecs {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.productSpecs td {
    padding: 5px 0;
    vertical-align: top;
}

.productSpecs .label {
    white-space: nowrap;
    padding-right: 10px;
    position: relative;
}

.productSpecs .label::after {
    content: " : ";
    position: absolute;
    right: 0;
}

.thumbImg {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumbImg:hover,
.thumbImg.active {
    border-color: #e91e63;
}


.productImageWrapper {
    gap: 20px;
}

.thumbs {
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .thumbs {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .thumbImg {
        width: 90px;
        height: 90px;
    }

    .mainImage {
        flex: 1;
    }
}

@media (max-width: 991px) {
    .thumbs {
        flex-direction: row;
        justify-content: center;
    }

    .thumbImg {
        width: 60px;
        height: 60px;
    }

    .productView {
        padding: 0px !important;
        padding-top: 120px !important;
    }

    .rightSideProductInfo {
        padding: 40px !important;
    }

    .leftSideProductInfo {
        padding: 20px !important;
    }
}

.infoBoxContainer {
    background-color: #FFE7F4;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px 40px;
    width: fit-content;
}

.text-pink {
    color: #e94a85;
}

.infoItem i {
    flex-shrink: 0;
}

.infoItem p {
    font-size: 14px !important;
    line-height: 1.2;
}

.infoItem small {
    font-size: 12px;
}

.productView {
    padding: 200px 0 0 0;
}

.relatableProductContainer img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.relatableProductContainer img:hover {
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: #ef2e95 !important;
    /* pink */
    opacity: 0.4;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* *************  product page end ******************* */



/* *************  cart page start ******************* */

.cartHero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 90vh;
    padding: 60px 8%;
    padding-top: 200px;
    gap: 40px;
}


.cartHeroContent h1 {
    margin-bottom: 20px;
}

.cartHeroContent p {
    margin-bottom: 25px;
    color: #444;
}

.cartHeroImages .imgGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
    justify-items: center;
    perspective: 1000px;
}

.cartHeroImages img {
    width: 85%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    /* box-shadow: 8px 8px 22px rgba(241, 73, 157, 0.55),
        -3px -3px 12px rgba(255, 182, 219, 0.3); */
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #fff, #ffe4f3);
}

/* Layout positioning */
.cartHeroImages img:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
}

.cartHeroImages img:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
}

.cartHeroImages img:nth-child(3) {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 92%;
}

/* Hover Effects */
.cartHeroImages img:hover {
    transform: scale(1.05) rotateY(6deg) rotateX(6deg);
    /* box-shadow: 12px 12px 30px rgba(241, 73, 157, 0.75),
        -4px -4px 15px rgba(255, 182, 219, 0.4); */
    filter: brightness(1.15) saturate(1.4);
    cursor: pointer;
}

@media (max-width: 768px) {
    .cartHeroImages .imgGrid {
        grid-template-columns: 1fr 1fr;
    }

    .cartHeroImages img {
        width: 100%;
    }

    .cartHeroImages img:nth-child(3) {
        grid-column: span 2;
        grid-row: auto;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .cartHero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .cartHeroContent {
        order: 2;
    }

    .cartHeroImages {
        order: 1;
    }

    .cartHeroContent h1 {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
    }

    .cartHeroContent p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .cartHeroContent button {
        margin-top: 10px;
    }

    .cartHeroImages .imgGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cartHeroImages img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .cartHeroImages img:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }
}

/* Cart Badge */
.cart-badge-fix {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    text-align: left;
}

.placeOrderContent {
    padding: 60px 8%;
    min-height: 100vh;
}

.placeOrderFlex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.placeOrderFinalItems {
    flex: 2;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.placeOrderAddress {
    flex: 1.2;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dividerLine {
    height: 1px;
    background-color: #f65da9;
    margin: 25px 0;
}

.quantityGroup {
    width: auto;
}

.removeBtn {
    font-size: 0.69rem;
    border-radius: 30px;
    padding: 6px 12px !important;
}

@media (max-width: 1322px) {
    .placeOrderFlex {
        flex-direction: column;
        gap: 30px;
    }

    .placeOrderFinalItems,
    .placeOrderAddress {
        width: 100%;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    }

    .placeOrderAddress {
        order: 1;
    }

    .placeOrderFinalItems {
        order: 2;
    }
}

@media (max-width: 576px) {
    .placeOrderContent {
        padding: 40px 5%;
    }

    .flexWrapContent {
        flex-wrap: wrap;
    }

    .placeOrderFinalItems,
    .placeOrderAddress {
        padding: 20px;
    }

    .flexWrapContent img {
        width: 150px;
    }

    .cartListItems h6 {
        font-size: 1rem;
    }

    .quantityGroup button,
    .quantityGroup .quantity-display {
        font-size: 0.9rem;
    }

    #btnPlaceOrder {
        font-size: 0.95rem;
        padding: 10px;
        border-radius: 25px;
    }
}

/* *************  cart page end ******************* */


/***************** Contactus page style start**********************/
.contactUsSection {
    padding: 80px 8%;
    /* background: linear-gradient(180deg, #fff, #fff0f7); */
    background: #fff0f7;
}

.contactContainer {
    gap: 40px;
}

.contactLeft {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-left: 6px solid #f1499d;
}

.contactRight {
    flex: 1.2;
    min-width: 320px;
}

.contactInfo p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}



/* Input Styling */
.inquiryForm .form-control {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.inquiryForm .form-control:focus {
    border-color: #f1499d;
    box-shadow: 0 0 10px rgba(241, 73, 157, 0.2);
}

/* Button Hover */
.inquiryForm button:hover {
    background-color: #f1499d;
    border-color: #f1499d;
    color: #fff;
    box-shadow: 0 5px 15px rgba(241, 73, 157, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contactContainer {
        flex-direction: column;
        align-items: stretch;
    }

    .contactLeft,
    .contactRight {
        max-width: 100%;
    }

    .contactUsSection {
        padding: 60px 6%;
    }
}

@media (max-width: 576px) {
    .contactInfo p {
        font-size: 0.95rem;
    }

    .inquiryForm .form-control {
        padding: 10px 14px;
    }

    .inquiryForm button {
        width: 100%;
    }
}

@media(max-width:424px) {
    .contactContainer2 {
        gap: 0px !important;
    }

    .contactContainer2 {
        padding: 0px 0px;
        justify-content: center !important;
        align-items: start !important;
    }

    .contactRight {
        flex: 1.2;
        min-width: 100%;
    }

    .contactUsSection {
        padding: 0px 0px;
    }
}

/***************** Contactus page style end**********************/


/*******************All products Page Style Start*********************/

/* .productImg {
    overflow: hidden;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

@media(max-width:424px){
    .productImg{
        height: 240px;
    }
}

.productImg img {
    height: 280px;
} */

.customAccordion .accordion-header {
    background: transparent;
    border: none;
    padding: 10px 12px;
    font-weight: 600;
    color: #333;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.customAccordion .accordion-header:hover {
    background: #FFE7F4;
}

.customAccordion .accordion-header {
    background: #FFE7F4;
}

.customAccordion .accordion-item {
    border-radius: 6px;
    overflow: hidden;
}

.sidebar ul li {
    font-size: clamp(0.9rem, 1.3vw + 0.2rem, 1.3rem) !important;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #EF2E95;
    border-radius: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: #EF2E95;
    border-color: #EF2E95;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: #EF2E95;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.jewelCollection li:hover {
    color: #EF2E95 !important;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .sidebar {
        display: none !important;
    }

    .content {
        width: 100% !important;
    }

    .filterToggle {
        display: block !important;
    }
}

.productFilterOffcanvas {
    --bs-offcanvas-width: 350px !important;
}

.productFilterOffcanvas .customAccordion .accordion-header {
    background: #EF2E95 !important;
    color: white !important;
}

.nutsAndSnacksPagination .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #ccc !important;
    color: #000 !important;
    text-align: center;
    opacity: 1;
    font-weight: bold;
}

.nutsAndSnacksPagination .swiper-pagination-bullet-active {
    background: #EF2E95 !important;
    color: #fff !important;
}

.swiper-pagination-bullet {

    border-radius: 50%;
    background: #ccc !important;
    color: #000 !important;
    text-align: center;
    opacity: 1;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: #EF2E95 !important;
    color: #fff !important;
}

.fa-xmark {
    font-size: 30px !important;
}


.allProducts {
    position: relative;
    overflow: hidden;
    /* padding: 160px 0 0 0; */
}

.allProductsContainer {
    display: flex;
    align-items: center;
}

.jewelleryCard {
    position: relative;
    height: 420px;
    width: 300px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.jewelleryCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.jewelleryCard:hover img {
    transform: scale(1.08);
}

.overlayContent {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(249, 152, 201, 0.75), rgba(0, 0, 0, 0.1));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.jewelleryCard:hover .overlayContent {
    opacity: 0;
}



/* Responsive */
@media (max-width: 768px) {
    .jewelleryCard {
        width: 90%;
        height: 340px;
    }
}

.productCard {
    transition: all 0.35s ease;
    background: #fff;
}

.productCard:hover {
    transform: translateY(-8px);
    box-shadow: 6px 6px 18px rgba(222, 201, 212, 0.35), -3px -3px 12px rgba(255, 182, 219, 0.25);
}

.productImg img {
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.productCard:hover .productImg img {
    transform: scale(1.08);
}

.buyBtn {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    background: #fff;
    color: #f1499d;
    font-weight: 500;
    border: 2px solid #f1499d;
}

.productCard:hover .buyBtn {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.buyBtn:hover {
    background: #f1499d;
    color: #fff;
    border-color: #f1499d;
}

.productPrice {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .productCard {
        margin-bottom: 1.5rem;
    }
}

.productBadgeGroup {
    gap: 8px;
}

.smallBadge {
    font-size: 12px !important;
    padding: 6px 10px !important;
    letter-spacing: 0.3px !important;
}

.productBadgeGroup .bg-secondary {
    background-color: #f3e6f0 !important;
    color: #d63384 !important;
}

.productBadgeGroup .text-bg-danger {
    background-color: #f1499d !important;
    color: #fff !important;
}

.productContainer {
    padding: 20px;
}

@media(max-width:768px) {
    .productContainer {
        padding: 10px;
    }
}

.fa-circle-arrow-left,
.fa-circle-arrow-right {
    cursor: pointer;
    transition: all 0.2s ease;
    color: #d63384;
    /* subtle pink tone */
}

.fa-circle-arrow-left:hover,
.fa-circle-arrow-right:hover {
    transform: scale(1.2);
    color: #b91c74;
    /* darker shade on hover */
    text-shadow: 0 2px 8px rgba(214, 51, 132, 0.5);
}

.fa-circle-arrow-left:active,
.fa-circle-arrow-right:active {
    transform: scale(0.95);
    color: #a31860;
    /* slightly deeper on press */
    filter: brightness(0.9);
}

.customSearchModal {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* Header with bottom border */
.searchModalHeader {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

/* 🔸 Loader bar just below header border */
.loader-bar {
    width: 0%;
    height: 3px;
    background-color: #EF2E95;
    position: relative;
    top: 0;
    left: 0;
    border-radius: 2px;
    animation: loadingBar 1.5s infinite;
    margin-top: -1px;
    /* aligns exactly under header border */
}

/* Animation */
@keyframes loadingBar {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 70%;
        left: 15%;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}

.loading-text {
    color: #EF2E95;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
}

/* ✨ Smooth blinking animation */
@keyframes blink {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.inventory-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
}

.inventory-item img.inventory-thumb {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.inventory-item .inventory-name {
    font-weight: 500;
}

.inventory-item .inventory-stock {
    margin-left: auto;
    font-size: 0.85em;
    color: #777;
}

.no-results {
    text-align: center;
    padding: 10px;
    color: #999;
}

.searchBtn {
    pointer-events: auto;
}

/* Order Placed Page */
#globalSpinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

/* Validate Order from Order Place Page */
.validateOrder {
    --bs-modal-width: 700px !important;
}

/* My Orders Page  Css*/
.my-orders-section .order-item:hover {
    transform: translateY(-3px);
    transition: 0.2s ease-in-out;
}

.my-orders-section {
    padding: 150px 8%;
}

.my-orders-section img {
    border-radius: 12px;
}

.badge {
    font-size: 0.8rem;
}

.invoiceBtn:hover {
    background-color: transparent !important;
    color: #EF2E95 !important;
    border-color: #EF2E95;
}

.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline::before {
    content: "";
    width: 3px;
    background: #dcdcdc;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 22px;
    border-radius: 10px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-right: 15px;
    z-index: 3;
    background: #e0e0e0;
    border: 3px solid #cccccc;
    transition: 0.3s ease;
}

.timeline-item.completed .timeline-icon {
    background: white !important;
    color: #EF2E95 !important;
    border-color: #EF2E95 !important;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
}

.timeline-item.active .timeline-icon {
    /* background: #fff3cd !important; */
    border-width: 4px !important;
    border-color: #EF2E95 !important;
    animation: pulse 2.2s infinite ease-in-out;
    box-shadow: 0 0 18px rgba(255, 0, 255, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1.0);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.0);
    }
}

.timeline-content h6 {
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.timeline-progress {
    position: absolute;
    width: 3px;
    background: #28a745;
    left: 22px;
    top: 0;
    border-radius: 10px;
    z-index: 1;
    transition: height 0.8s ease;
}

.timeline-icon i {
    font-size: 20px !important;
    line-height: 1 !important;
    margin: auto !important;
}

.timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    box-sizing: border-box !important;
}

/* Responsive styling for My Orders & Invoice buttons */
@media (max-width: 768px) {

    .track-btn,
    .invoiceBtn {
        font-size: 10px !important;
    }
}

@media(max-width: 320px) {

    .track-btn,
    .invoiceBtn {
        font-size: 9px !important;
    }
}