¸
html, body {
    overflow-x: hidden;
}
/* 📌 Adjust Product Cards Section */
.product-cards {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    gap: 20px;
    flex-wrap: wrap;
    background-image: url('/images/hero-bg.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Frosted Glass Effect */
.product-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
    backdrop-filter: blur(5px);
}

/* 📌 Product Card Styling */
.card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 250px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

/* 📌 Hover Effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* 📌 Image Styling (Responsive & Mobile Optimized) */
.card img {
    width: 100%;
    height: auto;         /* ✅ keep natural aspect ratio */
    max-height: 200px;    /* ✅ avoid giant stretched images */
    object-fit: contain;  /* ✅ ensures full product image is visible */
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}

/* 📌 Product Name */
.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* 📌 Price Badge */
/* 📌 Price Styling (Without Box) */
.card p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333; /* Regular text color */
    font-weight: bold;
}


/* 📌 Add to Cart Button */
.card button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #f4b400;
    color: #333;
}

/* 📌 "Coming Soon" Overlay */
.coming-soon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 12px;
}

/* Lock Icon */
.coming-soon::before {
    content: "🔒 Coming Soon";
}

/* 📌 Responsive Design */
@media (max-width: 768px) {
    .product-cards {
        flex-direction: column;
        gap: 20px;
    }
    .card {
        width: 80%;
    }
}

/* Ensure the cart-popup is hidden initially */
.cart-popup {
    display: none;
    position: fixed;
    right: 20px;
    top: 80px;
    width: 320px;
    background-color: #fff;
    border-left: 3px solid #333;
    border-radius: 10px;
    box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow-y: auto;
    max-height: 70vh;
}

/* Show the cart-popup when active with smooth transition */
.cart-popup.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Cart Popup Header */
.cart-popup h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* Cart Items List */
.cart-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 60%;
}

.cart-popup ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.cart-popup ul li span {
    font-weight: bold;
    color: #222;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #f4b400;
}

/* Remove Button */
.remove-btn {
    background: transparent;
    border: none;
    color: #f00;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #b30000;
}

/* Cart Total and Discounts */
.cart-popup .cart-total {
    font-weight: bold;
    margin-top: 15px;
    color: #333;
    font-size: 1.1rem;
    text-align: center;
}

.discount-message {
    margin-top: 10px;
    color: #27ae60;
    font-size: 0.9rem;
    text-align: center;
}

/* Checkout and Continue Shopping Buttons */
.cart-popup button {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
}

button.checkout {
    background-color: #3498db;
    color: #fff;
}

button.checkout:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

button.continue {
    background-color: #f4c10f;
    color: #333;
    margin-top: 8px;
}

button.continue:hover {
    background-color: #f39c12;
    transform: scale(1.05);
}

/* Floating Cart Button */
.cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f4b400;
    padding: 12px 20px;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cart-button:hover {
    background-color: #333;
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

footer a {
    color: #f4b400;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}

footer a:hover {
    color: #fff;
    transition: 0.3s;
}
.temp-message {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 14px;
}
/* Toast Notification Styling */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(20px);
    z-index: 1000;
}

.toast.visible {
    opacity: 0.9;
    transform: translateY(0);
}

/* Responsive Cart Popup */
.cart-popup {
    width: 350px;
    max-width: 80%;
    padding: 15px;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .cart-popup {
        width: 90%;
        left: 5%;
    }
}
/* General Styles */
body {
    font-family: 'Poppins', Arial, sans-serif; /* Enhanced font for better aesthetics */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f9;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background-color: #333;
    color: #fff;
    padding: 15px 40px; /* Increased padding for better spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000; /* Higher z-index for better layering */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Brand Title */
.navbar h1 {
    margin: 0;
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    color: #f4b400;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navbar Menu */
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px; /* Slightly increased for better spacing */
}

.navbar ul li {
    display: inline;
}

/* Navbar Links */
.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    padding: 8px 12px;
    border-radius: 5px;
}

.navbar ul li a:hover {
    color: #f4b400;
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background effect */
}

.cart-button {
    background-color: #f4b400;
    color: #333;
    border: none;
    padding: 8px 15px;
    cursor: pointer; /* 🔥 Added for better UX */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cart-button:hover {
    background-color: #fff;
    color: #333;
}

/* Hero Section */
.hero-section {
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5); /* 🔥 Added subtle shadow for text visibility */
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 25px 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* 🔥 Added shadow for better pop */
    max-width: 600px;
}

.hero-text h2 {
    margin-bottom: 15px;
    font-size: 34px;
    color: #f4b400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* 🔥 Enhanced text-shadow for readability */
}

.hero-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
}

.hero-text button {
    background-color: #f4b400;
    border: none;
    padding: 10px 25px;
    color: #fff;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-text button:hover {
    background-color: #333;
    transform: translateY(-3px); /* 🔥 Added subtle hover animation */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text {
        padding: 15px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .navbar ul {
        gap: 10px;
    }

    .cart-button {
        padding: 6px 12px;
    }
}

/* Adjust Product Cards Section */
.product-cards {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    gap: 20px;
    flex-wrap: wrap;
    background-image: url('/images/hero-bg.jpg'); /* Use the same background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh; /* Adjust as needed */
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7); /* Light overlay for better readability */
    z-index: -1;
    backdrop-filter: blur(5px); /* Frosted effect */
}

.card {
    background-color: rgba(255, 255, 255, 0.8); /* Adjust transparency */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 250px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(5px); /* Enhance frosted glass effect */
    z-index: 1;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* 📌 Image Styling (Responsive & Mobile Optimized) */
.card img {
    width: 100%;
    height: auto;         /* ✅ keep natural aspect ratio */
    max-height: 200px;    /* ✅ avoid giant stretched images */
    object-fit: contain;  /* ✅ ensures full product image is visible */
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.card button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #f4b400;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-cards {
        flex-direction: column;
        gap: 20px;
    }
    .card {
        width: 80%;
    }
}

/* Ensure the cart-popup is hidden initially */
.cart-popup {
    display: none;
    position: fixed;
    right: 20px;
    top: 80px;
    width: 320px;
    background-color: #fff;
    border-left: 3px solid #333;
    border-radius: 10px;
    box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow-y: auto;
    max-height: 70vh;
}

/* Show the cart-popup when active with smooth transition */
.cart-popup.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Cart Popup Header */
.cart-popup h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* Cart Items List */
.cart-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 60%;
}

.cart-popup ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.cart-popup ul li span {
    font-weight: bold;
    color: #222;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #f4b400;
}

/* Remove Button */
.remove-btn {
    background: transparent;
    border: none;
    color: #f00;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #b30000;
}

/* Cart Total and Discounts */
.cart-popup .cart-total {
    font-weight: bold;
    margin-top: 15px;
    color: #333;
    font-size: 1.1rem;
    text-align: center;
}

.discount-message {
    margin-top: 10px;
    color: #27ae60;
    font-size: 0.9rem;
    text-align: center;
}

/* Checkout and Continue Shopping Buttons */
.cart-popup button {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
}

button.checkout {
    background-color: #3498db;
    color: #fff;
}

button.checkout:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

button.continue {
    background-color: #f4c10f;
    color: #333;
    margin-top: 8px;
}

button.continue:hover {
    background-color: #f39c12;
    transform: scale(1.05);
}

/* Floating Cart Button */
.cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f4b400;
    padding: 12px 20px;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cart-button:hover {
    background-color: #333;
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

footer a {
    color: #f4b400;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}

footer a:hover {
    color: #fff;
    transition: 0.3s;
}
.temp-message {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 14px;
}
/* Toast Notification Styling */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(20px);
    z-index: 1000;
}

.toast.visible {
    opacity: 0.9;
    transform: translateY(0);
}

/* Responsive Cart Popup */
.cart-popup {
    width: 350px;
    max-width: 80%;
    padding: 15px;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .cart-popup {
        width: 90%;
        left: 5%;
    }
}
.brand-story {
    background: url('/images/brand-story-bg.jpg') no-repeat center/cover;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.5);  /* Dark overlay for readability */
    color: #fff;
    padding: 50px 30px;
    margin: 20px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
}

.brand-story h2 {
    color: #FFD700;  /* Gold color for a premium feel */
    margin-bottom: 15px;
    font-size: 32px;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;  /* Classic, elegant look */
}

.brand-story p {
    color: #e0e0e0;
    margin: 10px 0;
    line-height: 1.8;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto', sans-serif;  /* Ensures consistency */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .brand-story {
        padding: 30px 15px;
        margin: 15px;
    }

    .brand-story h2 {
        font-size: 28px;
    }

    .brand-story p {
        font-size: 1em;
    }
}
/* Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* 1️⃣ Improve the main heading */
.hero-title {
    font-family: 'Playfair Display', serif;  /* Luxurious Font */
    font-size: 3rem; /* Increase size */
    font-weight: bold;
    color: #FFD700; /* Soft Gold for Elegance */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Subtle glow effect */
}

/* 2️⃣ Refine the subtitle */
.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #f5f5f5;
    letter-spacing: 0.5px;
    opacity: 0.9; /* Soft effect */
}

/* 3️⃣ Enhance button styles */
.hero-buttons button {
    background: linear-gradient(135deg, #ffcc00, #ff9900); /* Elegant Gold Gradient */
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    border-radius: 30px; /* More rounded */
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.hero-buttons button:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 4px 6px 15px rgba(0, 0, 0, 0.3);
}

/* 4️⃣ Improve text background (remove harsh black box) */
.hero-text-container {
    background: rgba(0, 0, 0, 0.5); /* Soft overlay */
    padding: 20px;
    border-radius: 10px;
}
/* 🔹 Testimonials Section */
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f1e8; /* Soft warm background */
}

/* 🔹 Testimonial Container */
.testimonial-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}

/* 🔹 Testimonial Card */
.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* 🔹 Hover Effect */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* 🔹 User Icon */
.user-icon {
    font-size: 40px;
    color: #333; /* Darker for better contrast */
    margin-bottom: 10px;
}

/* 🔹 Testimonial Text */
.testimonial-card p {
    color: #444; /* Darker text */
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* 🔹 Stars */
.stars {
    color: #FFD700;
    font-size: 18px;
    margin: 5px 0;
}

/* 🔹 Customer Name */
.testimonial-card h4 {
    font-size: 16px;
    color: #222; /* Darker color for visibility */
    font-weight: bold;
    margin-top: 10px;
}

/* 🔹 Responsive (Stack on Smaller Screens) */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
}
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f4b400; /* Change to match brand theme */
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Checkout Page Styles */
.checkout-container {
    width: 50%;
    margin: auto;
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.checkout-container h2 {
    color: #333;
}

.cart-summary {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
}

.cart-summary ul {
    list-style: none;
    padding: 0;
}

.cart-summary p {
    font-size: 18px;
    font-weight: bold;
}

.checkout-btn {
    background: #f4b400;
    color: #222;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #ffa500;
    transform: scale(1.05);
}

/* Centering the confirmation box */
.confirmation-container {
    text-align: center;
}

.confirmation-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style for the button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}
.hamburger {
    display: none;
  }
/* 🔹 Tablet & Medium Screens (≤ 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 20px;
    }

    .brand-title {
        font-size: 18px;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
    }

    .navbar h1 {
        font-size: 22px;
    }


    /* ✅ Hamburger visible on tablet & mobile */
    .hamburger {
        display: block;
        font-size: 22px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        margin-top: 8px;
    }

    /* ✅ Hide nav links by default */
    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #333;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        width: 100%;
    }

    /* ✅ Show nav links when toggled */
    .navbar ul.active {
        display: flex;
    }

    .hero-section {
        padding: 60px 15px;
        min-height: auto;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .product-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .testimonial-card {
        width: 90%;
    }
}

/* 🔹 Small Screens (≤ 480px) */
@media (max-width: 480px) {
    .brand-title {
        font-size: 14px;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
    }

    .navbar h1 {
        font-size: 20px;
    }

    .hero-section {
        background-image: url('/images/hero-bg-small.webp'); /* ✅ mobile-optimized image */
        background-size: cover;
        background-position: center;
        padding: 50px 15px;
        min-height: auto;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .cart-button {
        padding: 10px 12px;
        font-size: 14px;
    }

    .card {
        width: 95%;
    }

    button, a {
        min-height: 44px;
        min-width: 44px;
    }

    .testimonial-card {
        width: 95%;
    }
}
