/***************************************Index Page Style Start***************************************/

.milonga-regular {
    font-family: "Milonga", serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AstralSisters';
    /* Name you give */
    src: url('/static/vendor/astral_sisters/Astral\ Sisters.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.astralSisters {
    font-family: 'AstralSisters', sans-serif;
}




body {
    font-family: "Source Sans 3", sans-serif;
    text-transform: capitalize;
    color: #161616 !important;
}


.appNavBar {
    background: #FFF0E5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: relative;
}

.appNavBar ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.appNavBar ul li {
    cursor: pointer;
    font-weight: 400;
    transition: color 0.3s ease;
    color: #616161;
}

.appNavBar ul li a {
    position: relative;
    text-decoration: none;
    color: inherit;
    padding: 4px 0;
    transition: color 0.3s;
}

.appNavBar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 0;
    height: 2.3px;
    background: #ff6a006d;
    transition: width 0.3s ease-in-out;
    border-radius: 5px;
}

.appNavBar ul li a:hover {
    color: #FF6A00;
}

.appNavBar ul li a:hover::after {
    width: 80%;
}

.navLink.active {
    color: #FF6A00;
    font-weight: 600;
}

.cursorPointer {
    cursor: pointer;
}

.rightNavElements {
    display: flex;
    align-items: center;
    gap: 30px;
}

.searchBox {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #FF6A00;
    border-radius: 25px;
    padding: 8px 12px;
    width: 250px;
    transition: 0.3s ease;
}

.searchBox:focus-within {
    border-color: #FF6A00;
    box-shadow: 0 0 14px rgba(211, 84, 0, 0.3);
}

.searchBox .searchBtn i {
    color: #FF6A00;
    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;
}

.rightNavElements i {
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rightNavElements i:hover {
    color: #f06b0c;
}

.logoOne,
.logoTwo {
    transition: opacity 0.6s ease, transform 0.6s ease;
    /* smoother & slower */
}

/* LogoOne absolute positioning stays same */
.logoOne {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    display: flex;
}

.logoOne.hide {
    opacity: 0;
    transform: translate(-30%, -90%) scale(0.7) rotate(300deg);
    transition: all 0.6s ease-in-out;
    /* smooth animation */
}


/* LogoTwo default hidden but with flex */
.logoTwo {
    display: flex;
    opacity: 0;
    transform: scale(1.1);
    /* slightly zoomed out when hidden */
}

/* When active, fade + zoom in */
.logoTwo.show {
    opacity: 1;
    transform: scale(1);
    /* normal size */
}


.navCenterdLogo {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #FFF0E5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.navCenterdLogo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .navCenterdLogo {
        width: 100px;
        height: 100px;
        padding: 10px;
        top: 110%;
    }

    .navCenterdLogo img {
        width: 70px;
        height: 70px;
    }

    .appNavBar {
        padding: 20px 20px;
    }

    .appNavBar ul {
        gap: 15px;
        font-size: 14px;
    }

    .rightNavElements {
        gap: 15px;
    }

    .input-group {
        width: 160px;
        padding: 5px 10px;
    }

    .input-group input {
        font-size: 12px;
    }

    .rightNavElements i {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .logoOne {
        display: none !important;
    }

    .logoTwo {
        display: flex !important;
    }
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998;
}

.searchPopup {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 11000
}

.searchPopup input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.searchBox {
    display: flex;
    align-items: center;
}

.searchIcon {
    display: none;
}

@media (max-width: 900px) {
    .searchBox {
        display: none;
    }

    .searchIcon {
        display: inline-block;
        font-size: 20px;
        cursor: pointer;
        margin: 0 10px;
    }
}

.menu-icon {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #FF6A00;
}

.menu-icon:hover {
    cursor: pointer;
}

@media (max-width: 900px) {
    .leftNavElements {
        display: none !important;
    }

    .menu-icon {
        display: block !important;
    }
}

.offcanvas {
    --bs-offcanvas-width: 650px !important;
}

.offcanvas-top {
    height: 350px;
    /* same as your design */
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-body ul li a {
    text-decoration: none;
    color: #616161;
    font-size: 16px;
}

.offcanvas-body ul li a:hover {
    color: #FF6A00;
}

.offcanvas-body ul {

    flex-direction: column;
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
    border-radius: 0px !important;
}

::-webkit-scrollbar-thumb {
    background: #ff6a008b !important;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5782b;
}

.navCenterdLogo img {
    transition: transform 0.4s ease-in-out;
}

.navCenterdLogo img:hover {
    transform: scale(1.05) rotate(15deg);
    cursor: zoom-in;
}

.logoTwo a {
    transition: transform 0.4s ease-in-out;
}

.logoTwo a:hover {
    transform: scale(1.05) rotate(15deg);
}




/* Index page hero section */

body {
    background-image: url("/static/img/background/Pattern.png");
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
}

@media (max-width: 992px) {
    body {
        background-size: 950px;
    }
}

@media (max-width: 576px) {
    body {
        background-size: 900px;
    }
}

.indexHero {
    background-image: url("/static/img/background/heroImg1.png");
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.indexHeroTwo {
    background-image: url("/static/img/background/heroImg2.png");
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.indexHeroThree {
    background-image: url("/static/img/background/heroImg3.png");
    background-position: center;
    background-size: cover;
    height: 100vh;
}

@media (max-width: 768px) {
    .indexHero {
        background-position: calc(100% + 216px) center;
        background-size: cover;
    }

    .indexHeroTwo {
        background-position: calc(100% + 216px) center;
        background-size: cover;
    }

    .indexHeroThree {
        background-position: calc(100% + 196px) center;
        background-size: cover;
    }
}

.heroContent {
    padding: 200px 40px;
}

.heroDescription {
    font-weight: 350;
}

.indexPageNutsAndSnacksPagination {
    position: static !important;
}

.indexPageNutsAndSnacksPagination .swiper-pagination-bullet {
    background: #e9e6e6 !important;
    height: 12px !important;
    width: 12px !important;
    opacity: 0.7 !important;
}

.indexPageNutsAndSnacksPagination .swiper-pagination-bullet-active {
    background: #ff8205 !important;
    opacity: 1 !important;
    height: 12px !important;
    width: 12px !important;
}

.searchGroup {
    width: 100%;
    padding: 5px 10px;
}

.searchInput {
    box-shadow: none !important;
}

.productSection {
    padding: 40px 20px;
}


.productCard {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.productCard:hover {
    box-shadow: 0 8px 16px rgba(125, 123, 123, 0.2);
}

.productCard img {
    width: 100%;
    object-fit: cover;
}

.productTitle {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.productRating {
    font-size: 14px;
    color: #f39c12;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.productRating span {
    color: #555;
    font-size: 13px;
}

.productPrice {
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
}

.stars {
    color: #FF6A00;
    font-size: 20px;
    display: flex;
}

.productSection,
.shopByCollection,
.customerTestimonial,
.nutsAndSnacksProducts,
.sareesAndDresses {
    padding: 60px;
}

@media (max-width: 992px) {

    .productSection,
    .shopByCollection,
    .customerTestimonial,
    .nutsAndSnacksProducts,
    .sareesAndDresses {
        padding: 40px;
    }
}

@media (max-width: 576px) {

    .productSection,
    .shopByCollection,
    .customerTestimonial,
    .nutsAndSnacksProducts,
    .sareesAndDresses {
        padding: 20px;
    }
}

.productCard {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.productImg {
    position: relative;
    overflow: hidden;
}

.productImg img {
    width: 100%;
    display: block;
    transition: filter 0.4s ease;
}

.productCard:hover .productImg img {
    filter: brightness(0.8);
}

.buyBtn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    transition: all 0.4s ease;
    padding: 5px 15px;
    border: 2px solid #FF6A00;
}

.productCard:hover .buyBtn {
    opacity: 1;
    transform: translate(-50%, 0);
}

.adBlockOne img {
    transition: transform 0.4s ease-in-out;
}

.adBlockOne img:hover {
    transform: scale(1.05);
    filter: saturate(1.5);
}

/*index page shop by collection */
.collectionCard {
    height: 470px;
    background-size: cover;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    box-shadow: inset 0 -113px 60px -20px #ff6a00d1;
}

.collectionCard:hover {
    filter: saturate(1.2)
}

.collectionCard .btn {
    transform: translateY(29px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.collectionCard:hover .btn {
    transform: translateY(0);
    opacity: 1;
}


@media (max-width: 991px) {
    .collectionCard {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .collectionCard {
        height: 380px;
    }
}

.sbcOverlay h5 {
    color: white;
    font-size: 1.3rem;
    text-align: center;
    display: inline-block;
}

/* index page - celebrating kanchivaram silk */

.celebratingKanjivaram {
    background-color: #f7b38251;
}

.bgBlock {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;

}

.bgBlock::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.219);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bgContent {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 5px 10px;
}

.bgContent h4 {
    font-size: clamp(2rem, 2vw + 1rem, 2.3rem) !important;
    font-weight: lighter !important;
    margin: 0;
    color: #fff !important;
}

.bgBlock:hover::after {
    opacity: 1;
}

.bgBlock:hover .bgContent {
    opacity: 1;
}

.kanchivaramCollectionbg1 {
    background-image: url('/static/img/product/sarees/kanjivaramImg1.png');
    min-height: 605px;
}

.kanchivaramCollectionbg2 {
    background-image: url('/static/img/product/sarees/kanjivaramImg2.png');
    min-height: 350px;
}

.kanchivaramCollectionbg3 {
    background-image: url('/static/img/product/sarees/kanjivaramImg3.png');
    min-height: 240px;
}

@media (max-width: 407px) {
    .kanchivaramCollectionbg1 {
        min-height: 500px;
    }

    .kanchivaramCollectionbg2 {
        min-height: 350px;
    }

    .kanchivaramCollectionbg3 {
        min-height: 250px;
    }
}

@media (min-width: 500px) and (max-width: 991px) {
    .kanchivaramCollectionbg1 {
        min-height: 650px;
    }

    .kanchivaramCollectionbg2 {
        min-height: 400px;
    }

    .kanchivaramCollectionbg3 {
        min-height: 300px;
    }
}

.scaleWrapper {
    position: relative;
    overflow: hidden;
}

.bgBlock {
    transition: transform 0.5s ease;
}

.scaleWrapper:hover .bgBlock {
    transform: scale(1.08);
}

.ckborder {
    position: relative;
    display: inline-block;
}

.ckborder::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 6px;
    background: #f97316;
    mask: repeating-linear-gradient(-45deg, #000 0 6px, transparent 6px 12px),
        repeating-linear-gradient(45deg, #000 0 6px, transparent 6px 12px);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


/* index page - testimonial card  */

.testimonialCard {
    background-color: #FFF0E5 !important;
    border-radius: 12px;
    width: 310px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin: auto;
}

.testimonialCard img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.feedback {
    text-overflow: ellipsis;
    min-height: 60px;
    max-height: 60px;
    margin-top: 10px;
}

.testimonialCard p {
    margin: 0;
    padding: 3px;
}

.feedback {
    height: 80px;
    overflow-y: auto;
    margin-top: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-size: 14px !important;
}

.feedback::-webkit-scrollbar {
    display: none;
}

.testimonialPagination {
    bottom: 10px !important;
}

.testimonialPagination .swiper-pagination-bullet {
    background-color: rgba(128, 128, 128, 0.563) !important;
}

.testimonialPagination .swiper-pagination-bullet-active {
    background: #ff8205 !important;
}

@media (max-width: 991px) {
    .testimonialCard {
        width: 260px;
        height: 500px;
    }

    .testimonialCard img {
        height: 380px;
    }

    .feedback {
        height: 70px;
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .testimonialCard {
        width: 220px;
        height: 420px;
    }

    .testimonialCard img {
        height: 320px;
    }

    .feedback {
        height: 60px;
        font-size: 12px !important;
    }
}


/* index page nuts&snaks adblock */

.nutsAndSnacksBgOne {
    background-image: url("/static/img/nutsAndSnacks/nuts&snacksBg1.png");
    background-position: center;
    background-size: cover;
    height: 620px;
}

.nutsAndSnacksBgTwo {
    background-image: url("/static/img/nutsAndSnacks/nuts&snacksBg2.png");
    background-position: center;
    background-size: cover;
    height: 620px;
}

.nutsAndSnacksBgOne .text-white {
    width: 50%;
    margin-left: auto;
    text-align: start;
    padding: 40px;
}

@media (max-width: 1429px) {
    .nutsAndSnacksBgOne .text-white {
        width: 60%;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .nutsAndSnacksBgOne .text-white {
        width: 70%;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .nutsAndSnacksBgOne .text-white {
        width: 100%;
        margin-left: 0;
        padding: 20px;
        text-align: center;
    }
}

.nutsAndSnacksBgTwo {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 30px;
}

.nutsAndSnacksBgOne:hover {
    filter: saturate(1.5);
}

.nutsAndSnacksBgTwo:hover {
    filter: saturate(1.2);
}

/* index page nuts&snack product grid */

.nutsAndSnacksPagination {
    position: static !important;
    margin-top: 10px !important;
}

.nutsAndSnacksPagination .swiper-pagination-bullet {
    background: #000 !important;
    opacity: 0.3;
}

.nutsAndSnacksPagination .swiper-pagination-bullet-active {
    background: #ff6600 !important;
    opacity: 1;
}


/* app footer */

.appHeader {
    position: sticky;
    top: 0;
    z-index: 10;
}

.appFooter {
    background-color: #ff6600;
}

.appFooter li {
    margin-bottom: 20px;
}

.appFooter h5 {
    text-decoration: underline;
}

.appFooter a:hover {
    color: #ff6600 !important;
    text-decoration: underline !important;
}

.appFooter i {
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    padding: 14px;
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.appFooter a {
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.5rem) !important;
    line-height: 1.6;
}

.appFooter .copyright {
    font-size: clamp(0.8rem, 1.3vw + 0.2rem, 1.1rem) !important;
    text-decoration: underline;
}

.appFooter .copyright:hover {

    color: #fff !important;
}

/* index page modalbox and cart offcanvas styles */

.productImgOnModal {
    position: relative;
}

tr {
    border-color: transparent !important;
    border-style: none !important;
    border-width: 0
}

.custom-prev,
.custom-next {
    background-color: #ff6600;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
}

.custom-prev {
    left: -8px;
}

.custom-next {
    right: -8px;
}

.custom-prev::after,
.custom-next::after {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}


.badge.rounded {
    border-radius: 0.5rem !important;
}

@media(max-width:1000px) {
    .modal-body .row {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 1000px) {
    .productImgOnModal {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }

    .productImgOnModal+.col-md-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.boxOfFlex {
    background-color: #fde9db;
    padding: 30px;
    border-radius: 30px;
}

.quantityGroup {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 172px;
}

@media(max-width:424px) {
    .quantityGroup {
        width: 140px !important;
    }
}

.quantityGroup .quantity-display {
    pointer-events: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
    user-select: none;
}

.quantityGroup .btn {
    border: none;
    transition: all 0.2s ease-in-out;
}

.quantityGroup .btn i {
    font-size: 14px;
}

.quantityGroup .btn:hover {
    background-color: #ff6600;
}

.quantityGroup .btn:disabled {
    color: #aaa;
    cursor: not-allowed;
}

.socialIconForShare {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.instagramIcon {
    background: #E1306C;
}

.whatsappIcon {
    background: #25D366;
}

.chromeIcon {
    background: #4285F4;
}

.socialIconForShare:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.offcanvas {
    z-index: 1200 !important;
}

.weightSelect {
    border: 3px solid rgba(203, 203, 203, 0.855);
    background: transparent;
    width: auto;
    border-radius: 30px;
    box-shadow: none !important;
    text-align: center;
    padding: 5px 15px;
}

.cartListItems li {
    margin-bottom: 35px;
}

.dividerLine {
    background-color: #ff6600;
    height: 1px;
    width: 100%;
    margin-bottom: 30px;
}

@media(max-width:280px) {
    .cartListItems li div {
        flex-wrap: wrap;
    }
}

/* make offcanvas backdrop darker and above modals */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.708) !important;
    z-index: 1070 !important;
    /* higher than modal backdrop/modal */
}

/* make offcanvas layer above modal */
.offcanvas {
    z-index: 1080 !important;
}


/***************************************Index Page Style End***************************************/


/***************************************Sarees And Dresses Page Style Start***************************************/


.sareesAndDressesHero {
    background-image: url("/static/img/background/sareesPageHeroImg1.png");
    background-position: center;
    background-size: cover;
    height: 55vh;
}

.sareesAndDressesHeroTwo {
    background-image: url("/static/img/background/sareesPageHeroImg2.png");
    background-position: center;
    background-size: cover;
    height: 55vh;
}

@media (max-width: 768px) {
    .sareesAndDressesHero {
        background-position: calc(100% + 216px) center;
        background-size: cover;
    }

    .sareesAndDressesHeroTwo {
        background-position: calc(0% + -120px) center;
        background-size: cover;
    }
}

.heroContentsareesAndDresses {
    padding: 100px 40px;
}

.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: #FFE7D6;
}

.customAccordion .accordion-header {
    background: #FFE7D6;
}

.customAccordion .accordion-item {
    border-radius: 6px;
    overflow: hidden;
}

.sidebar ul li {
    font-size: clamp(0.9rem, 1.3vw + 0.2rem, 1.3rem) !important;
    font-weight: 600;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #FF6A00;
    border-radius: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: #FF6A00;
    border-color: #FF6A00;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: #FF6A00;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.SareeCollection li:hover {
    color: #FF6A00 !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: #FF6A00 !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: #ff6600 !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: #ff6600 !important;
    color: #fff !important;
}




/***************************************Sarees And Dresses Page Style end***************************************/

/***************************************Nuts And Snacks Page Style start***************************************/

.nutsAndSnacksProductsHero {
    background-image: url("/static/img/background/nutsPageHeroImg1.png");
    background-position: center;
    background-size: cover;
    height: 55vh;
}

.nutsAndSnacksProductsHeroTwo {
    background-image: url("/static/img/background/nutsPageHeroImg2.png");
    background-position: center;
    background-size: cover;
    height: 55vh;
}

@media (max-width: 768px) {
    .nutsAndSnacksProductsHero {
        background-position: calc(100% + 216px) center;
        background-size: cover;
    }

    .nutsAndSnacksProductsHeroTwo {
        background-position: calc(0% + -120px) center;
        background-size: cover;
    }

}

.heroContentnutsAndSnacksProducts {
    padding: 130px 40px;
}

.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: #FFE7D6;
}

.customAccordion .accordion-header {
    background: #FFE7D6;
}

.customAccordion .accordion-item {
    border-radius: 6px;
    overflow: hidden;
}

.sidebar ul li {
    font-size: clamp(0.9rem, 1.3vw + 0.2rem, 1.3rem) !important;
    font-weight: 600;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #FF6A00;
    border-radius: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: #FF6A00;
    border-color: #FF6A00;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: #FF6A00;
}


.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.SareeCollection li:hover {
    color: #FF6A00 !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: #FF6A00 !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: #ff6600 !important;
    color: #fff !important;
}

/***************************************Nuts And Snacks Page Style end***************************************/

/***************************************Place Order Page Style Start***************************************/

.placeOrderHero {
    background-image: url("/static/img/background/cartPageHeroImg.png");
    background-position: center;
    background-size: cover;
    height: 50vh;
}

@media (max-width: 1024px) {
    .placeOrderHero {
        background-position: calc(58% + 10px);
    }
}

@media (max-width: 768px) {
    .placeOrderHero {
        background-position: 80%;
    }
}

.placeOrderBgColor {
    background-color: #FFF9F4;
}

.placeOrderFinalItems,
.placeOrderAddress {
    flex: 1 1 100%;
    box-sizing: border-box;
    background: #FFF0E5;
    border-radius: 20px;
}



.placeOrderContent {
    padding: 50px;

}

.placeOrderFinalItems,
.placeOrderAddress {
    padding: 50px;

}

@media(max-width:1024px) {
    .placeOrderFlex {
        flex-wrap: wrap;
    }
}

.placeOrderFlex {
    gap: 100px;
}

@media(max-width:568px) {
    .placeOrderFlex {
        gap: 50px;
    }

    .placeOrderFinalItems,
    .placeOrderAddress {
        padding: 25px;

    }

    .placeOrderContent {
        padding: 25px;
    }
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: #FF6A00 !important;
}

.form-control,
.form-select {
    background-color: transparent !important;
}

.oldPrice {
    text-decoration: line-through;
    color: gray;
    font-size: 0.9rem;
}

.removeBtn {
    background-color: rgb(200, 20, 7);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 13px;
}

.removeBtn:hover {
    background-color: darkred;
}

@media(max-width:424px) {
    .flexWrapContent {
        flex-wrap: wrap;
    }
}

/***************************************Place Order Page Style end***************************************/

/***************************************contact us Page Style Start***************************************/

.contactUsHero {
    background-image: url("/static/img/background/contactPageHeroImg.png");
    background-position: center;
    background-size: cover;
    height: 50vh;
}

@media (max-width: 1024px) {
    .contactUsHero {
        background-position: calc(30% + 10px);
    }
}

@media (max-width: 768px) {
    .contactUsHero {
        background-position: 0%;
    }

    .contactBody {
        padding: 40px !important;
        gap: 30px !important;
    }
}

@media (max-width: 400px) {
    .contactBody {
        padding: 20px !important;
        gap: 20px !important;
    }
}

.contactUsBodySec {
    background: #FFF0E5;
}

.leftSection {
    flex-basis: 40%;
    max-width: 40%;
    padding: 60px;
}

.rightSection {
    flex-basis: 60%;
    max-width: 60%;
}

.contactBody {
    padding: 80px;
    gap: 80px;
}

@media(max-width:1000px) {
    .contactBody {
        flex-wrap: wrap;
    }

    .leftSection {
        flex-basis: 100%;
        max-width: 100%;
        padding: 60px;
    }

    .rightSection {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.contactAddressMenu i {
    background: #ff6600 !important;
    color: #fff !important;
    border-radius: 50% !important;
    padding: 14px !important;
    font-size: 18px !important;
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 10px !important;
}

.fancyBorder {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: -10px;
}

.fancyBorder::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 220px;
    height: 6px;
    background: #f97316;
    mask: repeating-linear-gradient(-45deg, #000 0 6px, transparent 6px 12px),
        repeating-linear-gradient(45deg, #000 0 6px, transparent 6px 12px);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@media(max-width:768px) {
    .fancyBorder::after {
        width: 130px !important;
    }
}

/***************************************contact us Page Style end***************************************/


@media(max-width: 995px) {
    #addressFormContainer {
        flex-wrap: wrap;
    }
}


.productCard {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* background: #fff; */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.productImg {
    flex-shrink: 0;
    text-align: center;
}

.productCard h6,
.productCard .productPrice {
    margin: 5px 0;
}

/* ensures productTitle uses remaining space if needed */
.productTitle {
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.col-12.col-sm-6.col-md-4.col-lg-3 {
    display: flex;
    margin-bottom: 20px;
    /* spacing between rows */
}

.productCard {
    flex: 1;
    /* stretch to full height inside column */
}

/* 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: 24px !important;
    color: #ff7505;
    cursor: pointer;
}

/* Suggestions */
.searchSuggestions {
    margin-top: 20px;
}

.suggestionTitle {
    font-weight: bold;
    color: #ff7505;
    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: #ff7505;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 576px) {
    .customSearchModal {
        width: 95%;
        padding: 16px;
    }

    .searchModalHeader {
        padding: 8px 12px;
    }

    .searchModalInput {
        font-size: 14px !important;
    }
}

/* Dynamic Search Inventory Names */
/* Modal wrapper */
.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: #FF7505;
    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: #FF7505;
    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;
}


.link-animate {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#kanchivaramModal .modal-content {
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

#kanchivaramModalBody {
    position: relative;
    padding: 2rem 1rem;
}

/* 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 img {
    border-radius: 12px;
}

.badge {
    font-size: 0.8rem;
}

.invoiceBtn:hover {
    background-color: transparent !important;
    color: #FF7505 !important;
    border-color: #FF7505;
}

.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: #28a745 !important;
    border-color: #28a745 !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: #ffa500 !important;
    animation: pulse 2.2s infinite ease-in-out;
    box-shadow: 0 0 18px rgba(255, 165, 0, 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;
}