/* font-family: "Quicksand", sans-serif; */

.header-container {
    background-color: #f5e8d3;
}

.navbar-brand {
    color: #5c4033;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    color: #5c4033;
    font-size: 1rem;
    margin: 0 15px;
}

.nav-link:hover {
    color: #8b5e3c;
}

.dropdown-menu {
    background-color: #f5e8d3;
    border: none;
}

.dropdown-item {
    color: #5c4033;

}

.dropdown-item:hover {
    background-color: #e8d4b9;
    color: #5c4033;
}

.bottom-border {
    height: 10px;
    background: linear-gradient(to right, #ff0000, #ff4500, #ffa500, #ffff00, #00ff00, #0000ff, #8b00ff);
}

@media (max-width: 768px) {
    .navbar-nav.mx-auto {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        margin: 5px 0;
    }

    .navbar-nav:last-child {
        margin-top: 10px;
    }
}

.footer {
    color: #D4A373;
    padding: 40px 0;
}


.footer a {
    color: #D4A373;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #F5E8C7;
}

.footer .list-unstyled {
    padding-left: 0;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer .social-icons a {
    margin-right: 15px;
    font-size: 20px;
}

.footer .text-center {
    border-top: 1px solid #D4A373;
    padding-top: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer .col-md-3 {
        margin-bottom: 20px;
    }

    .footer .text-center {
        padding-top: 15px;
    }
}

/* hero section  */
.hero-section {
    position: relative;
    background-color: #4A2C2A;
}

.swiper {
    height: 600px;
}

.swiper-slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.swiper-pagination-bullet {
    background-color: #4A2C2A !important;
}

@media (max-width: 768px) {
    .swiper {
        height: 400px;
    }
}

/* best selling product ============================================================== 
*/
.invitation-carousel-section {
    padding: 30px 20px;
    background-color: #fdf4e9;
}

.invitation-carousel-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #3b2f1d;
    margin-bottom: 20px;
}

.invitation-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.invitation-carousel::-webkit-scrollbar {
    display: none;
}

.invitation-card {
    width: 280px;
    border-radius: 1.5rem 1.5rem 0 1.5rem;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background-color: transparent;
    border: 2px solid var(--bg-primary);
}

.image-container {
    position: relative;
    width: 100%;
    height: 29rem;
}

/* Default image overlay: transparent (image fully visible) */
.image-container .black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /* Fully transparent initially */
    opacity: 0;
    transition: all 0.4s ease;
}

/* On hover: darken smoothly */
.invitation-card:hover .black-overlay {
    opacity: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            /* light transparent top */
            rgba(0, 0, 0, 0.7) 100%
            /* deep black bottom */
        );
}

.invitation-card .tag-banner {
    position: absolute;
    top: 15px;
    left: 0;
    background: var(--color-secondary);
    color: white;
    padding: 6px 14px;
    font-size: 15px;
    /* border-top-right-radius: 10px;
    border-bottom-right-radius: 10px; */
    font-weight: bold;
}


.tag-banner:after {
    width: 0;
    height: 0;
    border: 12.7px solid transparent;
    position: absolute;
    content: "";
    border-top-color: var(--color-secondary);
    right: -23px;
    top: 0px;
    border-left-color: var(--color-secondary);
}

.tag-banner:before {
    width: 0;
    height: 0;
    border: 18px solid transparent;
    position: absolute;
    content: "";
    border-bottom-color: var(--color-secondary);
    right: -23px;
    top: -1px;
}

.invitation-card .image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.invitation-card .heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
}

/* Play button transition — fades in nicely */
.image-container .play-button {
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.image-container:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: var(--color-secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.play-button:hover {
    background: #7a4d1d;
}



.invitation-card .cart-icon {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 6.5rem;
    height: 5.5rem;
    background: var(--bg-primary);
    border-top-left-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.invitation-card .cart-icon::before {
    position: absolute;
    content: "";
    bottom: 0.08rem;
    left: -1.5rem;
    background: transparent;
    width: 24px;
    height: 23px;
    border-bottom-right-radius: 1.5rem;
    box-shadow: 0.38rem 0.38rem 0 0.35rem var(--bg-primary);
}

.invitation-card .cart-icon::after {
    position: absolute;
    content: "";
    top: -1.5rem;
    right: 0.09rem;
    background: transparent;
    width: 23px;
    height: 23px;
    border-bottom-right-radius: 1.5rem;
    box-shadow: 0.38rem 0.38rem 0 0.35rem var(--bg-primary);
}

.cart-fa-icon {
    font-size: 1.4rem;
    color: white;
}

.card-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0px 10px 10px;
    /* background: #00000052; */
}

.event-name {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}



/* ❤️ Like animation */
.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.heart-icon .fa-heart {
    color: #fff;
    font-size: 22px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.heart-icon.liked .fa-heart {
    color: red;
    transform: scale(1.2);
}

/* 🛒 Add to cart "fly" animation */
/* ================== CART ANIMATION ================== */

/* ================== CART ANIMATION ================== */

.inner-cart-button {
    position: relative;
    overflow: hidden;
    background-color: var(--color-secondary);
    border: none;
    outline: none;
    border-radius: 1.2rem;
    width: 5rem;
    height: 4rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.inner-cart-button:hover {
    background-color: #7a4d1d;
}

.cart-icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.cart-fa-icon {
    font-size: 1.6rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

/* Plus icon animation */
.plus-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Added icon (checkmark) */
.added-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    color: #fff;
}

/* When added */
.inner-cart-button.added .main-icon {
    transform: translate(-150%, -50%);
    opacity: 0;
}

.inner-cart-button.added .added-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* + sign dropping effect */
.inner-cart-button.animate .plus-icon {
    opacity: 1;
    top: 35%;
    animation: dropPlus 0.5s ease forwards;
}

@keyframes dropPlus {
    0% {
        opacity: 0;
        top: -20px;
    }

    50% {
        opacity: 1;
        top: 35%;
        transform: translateX(-50%) scale(1.2);
    }

    100% {
        opacity: 0;
        top: 80%;
        transform: translateX(-50%) scale(0.8);
    }
}

@media (max-width: 768px) {
    .invitation-card {
        min-width: 280px;
    }

    .image-container {
        height: 29rem;
    }

    .invitation-card .cart-icon {
        width: 6.5rem;
        height: 5.3rem;
    }

    .inner-cart-button {
        width: 5rem;
        height: 4rem;
    }



    .cart-fa-icon {
        font-size: 1.2rem;
    }
}

/* Best selling product css +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.testimonial-wrapper {
    background-color: #fef3e2;
    padding: 3rem 1rem;
    overflow: hidden;
    perspective: 1000px;
    /* Added: gives depth for 3D effect */
    perspective: 3000px;
}

.testimonial-heading {
    text-align: center;

    font-weight: 600;
    font-size: 2rem;
    color: #2a1c0d;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.testimonial-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1.0rem;
    padding: 1rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transform-style: preserve-3d;
    /* Added: keeps 3D effect on child cards */
}

.testimonial-scroll-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    max-width: 300px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform-style: preserve-3d;
    /* Added: allow 3D transforms for the card itself */
}

.testimonial-card:hover {
    transform: rotateY(5deg) scale(1.05);
    /* Added slight 3D tilt */
}

.testimonial-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.testimonial-name {
    position: absolute;
    bottom: 10px;
    left: 20px;

    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .testimonial-heading {
        /* font-size: 1.5rem; */
        text-align: center;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .testimonial-card img {
        height: 380px;
    }
}

/* Overlay on hover */
.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 1;
    border-radius: 8px;
}

/* Content inside overlay */
.testimonial-overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
    padding: 1rem;
}

.testimonial-overlay-content .name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-overlay-content .stars {
    color: #ffcc00;
    margin-bottom: 0.5rem;
}

.testimonial-overlay-content .comment {
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 250px;
}

/* Hover effects */
.testimonial-card:hover::after {
    background: rgba(0, 0, 0, 0.6);
}

.testimonial-card:hover .testimonial-overlay-content {
    opacity: 1;
}


/* NEW: Curved wave container */
/* HERO-STYLE DEEP CURVED WAVE – EXACT MATCH */
.curve-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 80px;
    /* border-radius: 100px; */
    margin: 0 2rem;
    background: #fef3e2;
    /* your original bg */
    z-index: 1;
}

.curve-container::before {
    top: -145px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    box-shadow: 0 120px 0 0 #fef3e2;
}

.curve-container::after {
    bottom: -66px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    box-shadow: 0 -120px 0 0 #fef3e2;
}

.curve-container::before {
    content: '';
    position: absolute;
    left: -13%;
    right: -17%;
    height: 90px;
    background: #fef3e2;
    z-index: 3;
    border-radius: 50%;
    /* top: 0px; */
}

.curve-container::after {
    content: '';
    position: absolute;
    left: -16%;
    right: -23%;
    height: 79px;
    background: #fef3e2;
    z-index: 3;
    border-radius: 50%;
}


/* Ensure scroll container sits perfectly inside */
.testimonial-scroll-container {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    margin: 0;
    transform: translateZ(0);
    /* fixes minor render glitch */
}

/* testimonial css end==================================================================== */
.blade-section {
    padding: 40px 20px;
    background-color: #f9ece3;
    overflow: hidden;
}

.blade-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #5c4033;
}

.products-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.products-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 250px;
    background: #fff5e6;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.discount-label {
    position: relative;
    top: 10px;
    left: 10px;
    background: #d4a373;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    animation: pulse 1.5s infinite;
    width: 58px;
}

.discount-label:after {
    width: 0;
    height: 0;
    border: 12.5px solid transparent;
    position: absolute;
    content: "";
    border-top-color: #39b6ba;
    right: -23px;
    top: 0px;
    border-left-color: #39b6ba;
}

.discount-label:before {
    width: 0;
    height: 0;
    border: 13px solid transparent;
    position: absolute;
    content: "";
    border-bottom-color: #39b6ba;
    right: -23px;
    top: -1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    /* background: #fff5e6; */
    /* border-radius: 50%; */
    padding: 5px;
    font-size: 25px;
}

/* .heart-icon img {
    width: 20px;
    height: 20px;
} */

.product-info {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #caa178;
    color: white;
}

.product-details {
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1rem;
    color: white;
    font-weight: bold;
}

.add-to-cart {
    background: #634a31;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart:hover {
    background: #b88a5d;
    transform: scale(1.1);
}

.add-to-cart img {
    width: 20px;
    height: 20px;
}





/* combo 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.combo-section {
    /* background: #9d7034 !important;

    font-weight: 400;
    font-style: normal;
    /* padding-block: min(20vh, 2rem); */
    /* width: 100%; */
    /* Ensure full width */
    /* padding-inline: 20px; */
    /* Add space on left and right */
    /* color: #111;
    border: none !important;
    padding: 50px 0px; */
}

.combo-section h2 {
    text-align: center;
    color: #fff;

}

.combo-container {
    /* margin-top: 5em; */
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem;
    border: none !important;
}

.combo-container::-webkit-scrollbar {
    display: none;
}

.combo-card {
    flex: 0 0 auto;
    width: 35rem;
    background: #9d7034;
    border: none !important;
}

.combo-card-inner {
    position: relative;
    width: inherit;
    height: 19.75rem;
    background: #9d7034;
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
    border: none !important;
}



.combo-box {
    width: 100%;
    height: 100%;
    background: #9d7034;
    border-radius: 1.25rem;
    overflow: hidden;
    border: none !important;
}

.combo-imgBox {
    position: absolute;
    inset: 0;
    border: none !important;
}

.combo-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none !important;
}

.combo-icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 5rem;
    height: 5rem;
    background: #9d7034;
    border-top-left-radius: 30px;
    border: none !important;
}

.combo-icon:hover .combo-iconBox {
    transform: scale(1.1);
    border: none !important;
}

.combo-icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #9d7034;
    border: none !important;
}

.combo-icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #9d7034;
    border: none !important;
}

.combo-iconBox {
    position: absolute;
    inset: 0.625rem;
    background: #fff;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: none !important;
}

.combo-iconBox i {
    color: #634a31;
    font-size: 1.4rem;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .combo-card {
        width: 25rem;
    }

    .combo-card-inner {
        height: 14.75rem;
    }

    .combo-icon {
        width: 5rem;
        height: 5rem;
    }
}


/* margee+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.marquee-section {
    background-color: #fdf4e9;
    /* pastel yellow from image */
    color: #5a431d;
    /* brown text color */

    /* border-bottom: 1px dotted #00a0db; */
    overflow: hidden;
    padding: 90px 0px !important;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    background-color: #f9e3ab;
    padding: 40px 0px;
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 5s linear infinite;

}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    padding: 0 30px;
    white-space: nowrap;
    font-size: 0.9rem;
}

/* You can replace these icons with your actual icon images or inline svgs */
/* Using Bootstrap Icons for example, add Bootstrap Icons CDN in your app layout */
.marquee-item i {
    font-size: 1.3rem;
    color: #5a431d;
}

/* marquee animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* CATEGORY CONTAINER SECTION START ================================================================== */
/* ===================================================================================== */

.category-section {
    background-color: #fdf4e9;
    padding: 30px 20px;
    width: 100%;
}

.category-section-tittle {
    text-align: center;
    padding: 40px 0px;
    text-transform: capitalize;
    font-weight: bold;
    color: #522E00;
    -webkit-text-stroke: 1px black;
    letter-spacing: 1px;
}

.category-container {
    width: 90%;
    margin: 0 auto;
}

/* CATEGORY CONTAINER SECTION END================================================================== */
/* ===================================================================================== */