@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
    font-family: "Poppins", sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif !important;
}

p {
    font-size: 15px;
    font-weight: 500;
}

.product-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 500px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -11px;
    right: -10px;
    background: #dc3545;
    color: white;
    border-radius: 20%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

footer {
    background-color: #2c3e50;
    color: white;
}

.btn-primary {
    background-color: #fff;
    border-color: #db057c;
    color: #db057c;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #db057c 0%, #962c97 100%);
    /* background-color: #db057c; */
    border-color: #db057c;
    color: #fff;
    transform: translateY(-1px);
}

#products {
    scroll-margin-top: 100px;
    padding-top: 40px;
}

.custom-navbar {
    /* position: absolute; */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* force true centering */
    /* z-index: 1030; */
    background: rgba(219, 5, 124, 0.6);
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, padding 0.25s ease;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    margin-top: 10px;
    width: 90%;

}

h1,
h2,
h3 {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 700;
    /* keeps bold look */
}

.custom-navbar.scrolled {
    background: rgba(219, 5, 124, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.35rem 1rem;
}


.navbar-dark .navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

.text-style1 {
    color: #855770;
    font-size: 18px;
    font-weight: 500;
}

.navbar-brand img {
    height: 90px;
    width: auto;
}


.carousel-caption {
    z-index: 1010;
}

#giftClosed {
    height: 250px;
}

.caption-animate {
    /* opacity: 0; */
    transform: translateX(-30px);
    transition: transform 0.6s cubic-bezier(.2, .7, .2, 1), opacity 0.6s ease;
    will-change: transform, opacity;
}

.caption-animate.slide-right {
    transform: translateX(30px);
}

.caption-animate.show {
    opacity: 1;
    transform: translateX(0);
}


#myCarousel .carousel-item img {
    /* height: 70vh; */
    object-fit: cover;
}

.navbar-collapse {
    z-index: 1040;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 3.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-caption1 {
    position: absolute;
    right: 15%;
    bottom: 14.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

/* Base animation */
.caption-animate {
    opacity: 0;
    transition: all 0.9s ease-in-out;
}

/* Slide from left */
.slide-left {
    transform: translateX(-100px);
}

.carousel-item.active .slide-left {
    transform: translateX(0);
    opacity: 1;
}

/* Slide from right */
.slide-right {
    transform: translateX(100px);
}

.carousel-item.active .slide-right {
    transform: translateX(0);
    opacity: 1;
}

/* Popup from bottom */
.popup {
    transform: translateY(100px);
}

.carousel-item.active .popup {
    transform: translateY(0);
    opacity: 1;
}


.review-section {
    padding: 10px 0;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    border: 1px solid #db057c;
}

.review-card h6 {
    font-weight: bold;
    color: #333;
}

.review-card small {
    color: gray;
}

.review-card p {
    color: #333;
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    margin: 5px 0;
    font-size: 25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.abouttext {
    color: #db057c;
    font-style: italic;
    font-weight: 600;
}


.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: border 0.3s, transform 0.2s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.gallery-thumb.active {
    border: 2px solid #007bff;
    /* bootstrap primary blue */
}


/* about section styles */

.product-card .aboutproduct {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    width: calc(200%);
    animation: scroll-right 20s linear infinite;
}

.product-card {
    position: relative;
    min-width: 150px;
    margin-right: 10px;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 193, 220, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .overlay {
    opacity: 1;
}

.product-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    text-align: center;
    pointer-events: none;
    font-style: italic;
    color: #db057c;
    font-size: 22px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* gift box  */

.gift-container {
    position: relative;
    text-align: center;
}

.gift-text {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: #d63384;
    /* opacity: 0; */
    transition: opacity 0.8s ease-in-out;
}

.show-text {
    opacity: 1;
}

.gift-img {
    transition: transform 0.5s ease-in-out, width 0.5s ease-in-out;
    /* width: 250px; */
}

.open-size {
    width: 180px;
}




/* <!-- Floating Social Icons Css --> */
.floating-icons-right {
    position: fixed;
    top: 85%;
    right: 2%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icons-right a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: float 2s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-icons-right a:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Green */
.whatsapp-icon {
    background-color: #25D366;
}

/* Instagram Gradient */
.instagram-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}


@media (min-width: 300px) and (max-width: 1200px) {
 .navbar-brand img {
    height: 40px;
    width: auto;
}

.carousel-caption1 {

    bottom: 2.25rem;
}
h1,
h2,
h3{

    font-size: 24px !important;
}


}

@media (min-width: 300px) and (max-width: 600px) {
    #myCarousel .carousel-item img {
        height: 280px;
}
}