  @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');

body {
    padding-top: 70px; /* Adjust this value based on the actual height of your navbar */
    background: #f5f1e5;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
    body {
        padding-top: 90px; /* Adjust this value based on the actual height of your navbar on mobile */
    }
    h2,h1{
        font-size:25px !important;
    }
}
.product-card {
    background-color: transparent;
    border: none;
    color: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.product-card .image-container {
    position: relative; /* Ensure proper positioning for wishlist icon */
}

.product-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
}

.product-card .wishlist-icon {
    position: absolute;
    top: 10px; /* Position it at the top of the image */
    right: 10px; /* Align it to the right within the image */
    color: #461327;
    cursor: pointer;
    font-size: 20px; /* Adjust size as needed */
    z-index: 10; /* Ensure it stays on top of the image */
}

.product-card .card-body {
    padding: 15px;
    position: relative;
}

.product-card .card-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.product-card .card-text {
    font-size: 0.9rem;
    margin-bottom: 35px; /* Maintain space between price and cart icon */
}

.product-card .old-price {
    text-decoration: line-through;
    color: #ccc;
    margin-right: 5px;
}

.product-card .price {
    font-size: 1.2rem;
    color: #461327;
    display: block; /* Ensure price takes up the full width */
}

.product-card .cart-icon {
    position: absolute;
    bottom: 45px; /* Keep the cart icon higher */
    right: 15px;
    background-color: transparent;
    border: 2px solid #461327;
    border-radius: 50%;
    padding: 10px;
    color: #461327;
    cursor: pointer;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px; /* Adjust distance from right */
    top: 50%; /* Place at the middle of the page */
    transform: translateY(-50%); /* Adjust position to center properly */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration:none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    z-index: 1000; /* Ensure it's above other elements */
}

.whatsapp-float:hover {
    transform: translateY(-50%) scale(1.1); /* Slight zoom effect on hover */
    background-color: #1EBE57; /* Darker green on hover */
}

/* Adjustments for smaller screens */
@media (max-width: 576px) {
    .product-card .card-text {
        margin-bottom: 45px; /* Extra space to avoid overlap */
    }

    .product-card .cart-icon {
        bottom: 60px; /* Further adjustment to prevent overlap on smaller screens */
    }
    
}
.hero-heading {
    font-size: 3rem;
    color:#461327;
    font-weight: 300;
}
@media (max-width: 576px) {
    .hero-heading{
        font-size: 2rem;
    }
}
.footer-section{
        background:#5e3b3b !important;
    }