@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;
}
/* 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;
    text-decoration:none;
    display: flex;
    justify-content: center;
    align-items: center;
    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 */
}

@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-title {
    font-weight: bold;
    color: #461327; /* Ensure the text is readable on the dark background */
}

.quantity-input input {
    width: 60px;
    text-align: center;
    background-color: transparent; /* Match input background to the body */
    color: #461327; /* Set input text color */
    border: 1px solid #461327; /* Set input border color */
}

.total-price {
    font-weight: bold;
    color: #461327; /* Ensure the text is readable on the dark background */
}

.btn-link {
    color: #007bff;
}

.card {
    border: 1px solid #461327; /* Set white border */
    background-color: transparent; /* Set the background color to match the body */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    border-radius: 10px; /* Optional: Add some rounding to the corners */
}

.card p, .card h5, .card .total-price, .card .product-title {
    color: #461327; /* Ensure all text is readable */
}

.btn-block {
    display: block;
    width: 100%;
}

.input-group .form-control {
    background-color: transparent; /* Match input background to the body */
    color: #461327; /* Set input text color */
    border: 1px solid #461327; /* Set input border color */
}

.input-group .btn {
    background-color: #461327;
    color: #370717;
}

.input-group-append .btn {
    border: 1px solid #461327; /* Border color for the button */
}
 .cart-heading{
    font-size: 3rem;
    color:#461327;
    font-weight: 300;
 }   
 .btn.remove-item {
    background-color: transparent; /* Transparent background */
    border: 2px solid white; /* White border */
    border-radius: 50%; /* Circle shape */
    color: #461327; /* Yellow color for the icon */
    padding: 10px; /* Adjust padding for icon size */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.btn.remove-item i {
    font-size: 1rem; /* Adjust icon size */
}

/* Optional: Hover effect */
.btn.remove-item:hover {
    background-color: #461327; /* Yellow background on hover */
    color: #fff; /* Dark color for the icon on hover */
    border-color: #461327; /* Yellow border on hover */
}
    .footer-section{
        background:#5e3b3b !important;
    }