body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

h1, h2 {
    color: #C0392B;
}

.navbar {
    background-color: #2C3E50;
}

.navbar-brand, .navbar-nav .nav-link {
    color:rgb(255, 255, 255);
}
.navbar-brand{
    font-family: cursive;
    color: red;
}

.footer {
    background-color: #34495E;
    color: white;
    padding: 40px 20px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-links a, .social-links a {
    color: #ECF0F1;
    text-decoration: none;
}

.footer-links a:hover, .social-links a:hover {
    text-decoration: underline;
}

.carousel-image {
    height: 400px; /* Set a fixed height for the images */
    object-fit: cover; /* Ensures images cover the area without distortion */
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better readability */
    border-radius: 5px; /* Rounded corners for the caption */
}

.about-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}       
.about-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 4px solid #ddd;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-description {
    max-width: 600px;
    color: #333;
}

.about-description h3 {
    font-size: 24px;
    color: #C0392B;
    margin-bottom: 15px;
}

.about-description p {
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: justify;
}
.addToCartBtn::after {
    content: "🛒 Add";
}
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .hide-on-mobile {
        display: none !important;  
    }

    .about-image {
        margin-bottom: 20px;
    }

    h1, h2 {
        font-size: 1.5rem; /* Responsive font size for headings */
    }

    .footer {
        padding: 20px 10px; /* Less padding on mobile */
    }

    .carousel-image {
        height: 300px; /* Adjust height for smaller screens */
    }

    #productCarousel {
        max-width: 100%; /* Allow full width on smaller screens */
    }
    .carousel-inner{
        height: 300px;
    }
    /* .addToCartBtn{
        font-size: 12px;
    } */
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Back to Top Button */
/* #backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
} */

/* Base Styles */
#backToTop, #whatsappButton {
    position: fixed;
    right: 20px;
    z-index: 99;
    transition: opacity 0.6s ease, transform 0.6s ease; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px); /* Initially hidden below */
}

/* WhatsApp Button - Reveal on Load */
#whatsappButton {
    bottom: 20px; /* Close to Back to Top button */
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 0.8s ease;
}

/* Back to Top Button - Reveal on Scroll */
#backToTop {
    bottom: 90px; /* Reduced spacing */
    visibility: hidden;
}

/* Bigger Button Size */
#backToTop, #whatsappButton {
    width: 50px;   /* Bigger width */
    height: 50px;  /* Bigger height */
    font-size: 28px; /* Larger icon */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* Hover Effects */
#backToTop:hover, #whatsappButton:hover {
    transform: scale(1.15);
}

.swiper {
    width: 100%;
    height: auto;
    padding: 15px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease-in-out;
}

.swiper-slide:hover {
    transform: scale(1.05);
}

.product-card {
    width: 100%;
    max-width: 160px; /* Smaller cards for mobile */
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    margin: 5px;
    background: #fff;
}

.product-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.product-card h5 {
    font-size: 14px;
    margin-top: 5px;
}

.product-card h6 {
    font-size: 12px;
    color: #555;
}

.product-card p {
    font-size: 11px;
    color: #777;
}

.product-card .btn {
    font-size: 12px;
    padding: 5px;
}

.btn {
    font-size: 12px; /* Adjust button font size */
    padding: 5px 10px; /* Adjust button padding */
}
#sendToWhatsAppBtn {
    font-size: 20px; /* Adjust button font size */
    padding: 5px 10px; /* Adjust button padding */
}

/* Header styling */
header {
    /* position: relative;
    height: 100px;
    background: #f1f1f1;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; */
}

/* Navbar fixes */
.navbar {
    padding: 20px 15px;  /* Add padding to prevent content overlap */
}

/* for cart button */
/* Floating cart base style */
#floating-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: none;
}

.floating-cart-link {
    display: flex;
    align-items: center;
    position: relative;
}

.floating-cart-icon {
    width: 50px;
    height: 50px;
}

.floating-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Large devices (desktops and larger tablets) */
@media (min-width: 992px) {
    .floating-cart-icon {
        width: 60px;
        height: 60px;
    }

    .floating-cart-count {
        font-size: 14px;
        padding: 5px 9px;
        top: -10px;
        right: -10px;
    }

    #floating-cart {
        bottom: 30px;
        left: 30px;
    }
}

/* Medium devices (tablets and smaller screens) */
@media (max-width: 991px) and (min-width: 768px) {
    .floating-cart-icon {
        width: 55px;
        height: 55px;
    }

    .floating-cart-count {
        font-size: 13px;
        padding: 5px 9px;
        top: -9px;
        right: -9px;
    }

    #floating-cart {
        bottom: 25px;
        left: 25px;
    }
}

/* Small devices (phones) */
@media (max-width: 767px) {
    .floating-cart-icon {
        width: 65px;
        height: 65px;
    }

    .floating-cart-count {
        font-size: 14px;
        padding: 5px 9px;
        top: -10px;
        right: -10px;
    }

    #floating-cart {
        bottom: 15px;
        left: 15px;
    }
}

/* Extra small devices (smaller phones) */
@media (max-width: 480px) {
    .floating-cart-icon {
        width: 60px;
        height: 60px;
    }

    .floating-cart-count {
        font-size: 12px;
        padding: 4px 8px;
        top: -8px;
        right: -8px;
    }

    #floating-cart {
        bottom: 10px;
        left: 10px;
    }
}

/* for slider next button */
.custom-swiper-button-prev,
.custom-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.custom-swiper-button-prev {
    left: 10px;
}

.custom-swiper-button-next {
    right: 10px;
}

/* Logo container */
/* .logo-container {
    position: absolute;
    top: 0;      
    left: 10;    
    z-index: 999;
    padding: 0;  
    margin: 0;   
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
} */

/* Logo image */
/* .logo-container img {
    width: auto;          
    height: 100px;         
    margin: 0;            
    padding: 0;           
    object-fit: contain;  
} */

/* Sliding animation */
/* @keyframes slideDown {
    0% {
        top: -100px;  
    }
    100% {
        top: 0;        
    }
} */

/* .logo-container {
    animation: slideDown 1.5s forwards; 
} */
