/* 1. Global Setup (Optional, but good practice) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Includes padding and border in element's total width and height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 2. Header (The Navigation Bar Container) */
#header {
    display: flex;
    align-items: center; /* Vertically center logo and menu */
    justify-content: space-between; /* Pushes logo to left, menu to right */
    
    /* Adjusted padding for a clean, compact navbar look */
    padding: 10px 80px; 
    
    /* Using your background color: a very light beige */
    background-color: #f9f8f8;
    
    /* Add a subtle shadow for depth */
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    
    /* Ensure it stays at the top */
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

/* 3. Logo Styling */
.logo {
    /* Adjusted height for a more standard navbar size */
    height: 45px; 
    width: auto; /* Allows the width to scale proportionally */
    object-fit: contain;

    /* FIX: Converts image to a block-level element to remove the mysterious bottom gap */
    display: block; 
}


/* 4. Navigation Links Container */
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none; 
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;/* Removes the bullet points */
}

/* 5. Individual Link Items */
#navbar li {
    padding: 0 30px; 
    position: relative;/* Spacing between menu items */
}

/* 6. Link Text Styling (Home, Shop, etc.) */
#navbar li a {
    text-decoration: none; /* Removes underline */
    font-size: 16px;
    font-weight: 700;
    color: #333; /* Darker text for readability */
    transition: 0.3s ease; /* Smooth hover effect */
}

/* Hover and Active State */
#navbar li a:hover,
#navbar li a.active {
    /* The beige logo color for the hover/active state (e.g., #b5a687) */
    color: #c8a45d; 
}
.limited-text {
    max-width: 50ch;     /* Controls line length */
    line-height: 1.6;    /* Better readability */
    word-break: break-word;
}
#message-box {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%); /* Always center horizontally */
    z-index: 9999;
}

.success-message {
    text-align: center;
    background-color: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: fadeDown 0.35s ease-out;
}

/* Only animate vertical movement + opacity */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px); /* ONLY Y movement */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Centered underline effect for navbar links */
#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    display: block;
    width: 40%; /* Adjust width of underline as needed */
    height: 2px;
    background: #c8a45d;
    margin: 4px auto 0; /* Centers underline under text */
    transition: all 0.3s ease;
}


/* =========== DESKTOP =========== */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
    padding: 0 8%;
    background-color: #f9f8f8;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}

#hero h4 {
    padding-bottom: 10px;
    font-size: 20px;
    color: #000;
}

#hero h2 {
    font-size: 55px;
    line-height: 1.1;
    color: #000;
}

#hero h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #000;
    margin-bottom: 10px;
}

#hero p {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
}

.shop-now-btn {
    background-color: rgb(163, 137, 85);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    width: 90%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
}

/* =========== MOBILE FIX =========== */
@media (max-width: 768px) {

    /* Remove forced height */
    #hero {
        flex-direction: column;
        height: auto !important;
        padding: 40px 5% 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    #hero h2 {
        font-size: 36px;
    }

    #hero h1 {
        font-size: 30px;
    }

    /* FULL IMAGE ALWAYS VISIBLE */
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .hero-image img {
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

/* Extra small screens (iPhone SE etc.) */
@media (max-width: 480px) {

    #hero h2 {
        font-size: 30px;
    }

    #hero h1 {
        font-size: 26px;
    }

    .hero-image img {
        max-width: 300px !important;
    }
}


#product1 {
    background-color: #fff; /* White background */
}

/* Section Headings */
#product1 h2, #product1 p {
    text-align: center;
    color: #2E3645; /* Dark Navy/Charcoal */
}

#product1 h2 {
    font-size: 45px; /* Slightly larger heading */
    margin-bottom: 5px;
}

#product1 p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #777;
}

/* Product Container (Flexbox for Layout - 4 per row) */
.pro-container {
    display: flex;
    justify-content: center; /* Center the rows of products */
    flex-wrap: wrap; /* Allows products to wrap on smaller screens */
    gap: 20px; /* Space between product cards */
}

/* Individual Product Card */
.pro {
    /* Calculates width for 4 items per row with 20px gap */
    width: calc(25% - 15px); /* 25% for 4 items, minus gap for perfect fit */
    min-width: 200px; /* Ensures cards don't get too small */
    padding: 10px 12px;
    border: 1px solid #cce7d0; /* Lighter border than before */
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.05); /* Subtle shadow, slightly increased spread */
    margin: 10px 0; /* Vertical margin to create space between rows */
    transition: 0.2s ease;
    position: relative; /* Needed for the cart icon */
    background-color: #fff; /* Explicitly white background for cards */
}

.pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.08); /* Shadow darkens on hover */
    transform: translateY(-5px); /* Slight lift effect */
}

/* ---------------------------------------------------- */
/* NEW: Image Wrapper to enforce 1:1 aspect ratio */
/* ---------------------------------------------------- */
.pro-img-wrapper {
    /* Padding-Bottom trick creates a perfect 1:1 square ratio based on width */
    padding-bottom: 100%; 
    position: relative; 
    overflow: hidden; /* Important: Hides the parts of the image that extend outside the square */
    border-radius: 20px;
    margin-bottom: 10px;
}

.pro-img-wrapper img {
    /* Makes the image fill the square wrapper */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Crucial: Scales the image to cover the container while maintaining aspect ratio, cropping if needed */
    object-fit: cover; 
    border-radius: 20px;
}
/* ---------------------------------------------------- */


/* Description Text */
.des {
    text-align: left;
    padding: 0 0 10px 0; /* Adjusted padding */
}

.des span {
    color: #606063;
    font-size: 13px; /* Slightly larger span text */
}

.des h5 {
    padding-top: 5px;
    color: #1a1a1a;
    font-size: 16px; /* Slightly larger product name */
}

/* Star Rating */
.des .star {
    padding-top: 5px;
    font-size: 14px; /* Slightly larger stars */
    color: gold; 
}

/* Price */
.des h4 {
    padding-top: 5px;
    font-size: 18px; /* Slightly larger price */
    font-weight: 700;
    color: #2E3645; 
}

/* Cart Icon */
#product1 .pro .cart {
    width: 45px; /* Slightly larger cart icon */
    height: 45px;
    line-height: 45px;
    border-radius: 50%; /* Changed to perfect circle */
    background-color: #f7f9fc; /* Very light background for icon */
    /* font-weight: 500; */
    color: rgb(0, 0, 0); /* Gold/Beige color for the icon */
    border: 1px solid #dcdcdc; /* Lighter border for icon */
    position: absolute;
    bottom: 15px; /* Adjusted position */
    right: 15px; /* Adjusted position */
    text-align: center;
    transition: 0.3s ease;
    display: flex; /* Use flex to ensure icon is centered vertically */
    justify-content: center;
    align-items: center; 
}

.pro .cart:hover {
    background-color: rgb(0, 0, 0); 
    color: rgb(0, 0, 0); /* Slight lift on cart icon */
}
/* WINTER BANNER SECTION */
#winter-banner {
    width: 100%;
    padding: 80px 10%;
    background: #e8e8df;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: #333;
    position: relative;
}

/* Subtle pattern effect */
#winter-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/snow-pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

/* Content Layer */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

#winter-banner h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f1f1f;
}

#winter-banner p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.6;
}

.explore-btn {
    background-color: rgb(163, 137, 85);
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #b89b61;
}
#newsletter-signup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2E3645; /* Dark Navy Background */
    margin-top: 50px;
    padding: 30px 80px; /* Slightly smaller vertical padding than section-p1 */
}

#newsletter-signup .newsletter-text h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

#newsletter-signup .newsletter-text p {
    color: #d8d8d8; /* Light gray for body text */
    font-size: 16px;
    margin-bottom: 0;
    text-align: left;
}

.highlight-promo {
    color: rgb(238, 187, 84); /* A slightly brighter gold for the special offers text */
    font-weight: 600;
}

#newsletter-signup .form {
    display: flex;
    width: 40%;
}

#newsletter-signup input {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid transparent;
    border-radius: 4px 0 0 4px; /* Rounded left side */
    outline: none;
}

#newsletter-signup .normal {
    white-space: nowrap;
    background-color: #ffffff; /* Teal/Green color from reference image */
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0; /* Rounded right side */
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

#newsletter-signup .normal:hover {
    background-color: #c8a45d;
}
.footer-logo {
     /* Footer background color */
    padding-top: 20px;         /* Space from the top */
    padding-left: 20px;        /* Space from the left */
    display: inline-block;     /* Keeps it compact */
}

.footer-logo .logo {
    height: 50px;              /* Adjust logo size */
}

/* --- FOOTER STYLES --- */
#footer {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on mobile */
    justify-content: space-between;
    padding: 20px;
 /* Very light gray/off-white background */
}

#footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 250px;
    margin-bottom: 20px;
}


#footer h4 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #2E3645; /* Dark color */
}

#footer p {
    font-size: 14px;
    margin: 0 0 8px 0;
    color: #555;
}

#footer a {
    font-size: 14px;
    text-decoration: none;
    color: #555;
    padding-bottom: 10px;
    transition: 0.3s ease;
}

#footer a:hover {
    color: rgb(163, 137, 85); /* Gold/Beige on hover */
}

#footer .follow-icons i {
    color: #555;
    padding-right: 8px;
    cursor: pointer;
    transition: color 0.3s;
}

#footer .follow-icons i:hover {
    color: rgb(163, 137, 85);
}

/* Payment Gateway Column */
#footer .payment-gateways {
    min-width: 200px;
}

#footer .payment-gateways img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 4px;
}

/* Copyright Section (Full width) */
.copyright {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #e4e4e4;
}
/* ===== Mobile Responsiveness ===== */
@media screen and (max-width: 768px) {
    .footer-logo {
        padding-left: 0;           /* Remove left padding on mobile */
        text-align: center;        /* Center the logo */
        width: 100%;               /* Full width so centering works */
    }

    .footer-logo .logo {
        margin: 0 auto;           /* Center image inside container */
    }
}
.copyright p {
    color: #777;
}

#page-header {
    background-image: url('../images/Banner1.png'); 
    width: 100%; 
    height: 250px;
    background-size: cover;
    background-position: center 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#page-header h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 5px;
}

#page-header p {
    color: white;
    font-size: 18px;
}

/* Main About Content Section */
#about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 80px; /* Added padding from the upper banner */
    padding-left: 20px;
    padding-right: 20px;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-img {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.about-img img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.about-details {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.about-details h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* === RESPONSIVE STYLES === */
@media screen and (max-width: 992px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section.reverse {
        flex-direction: column;
    }

    .about-img, .about-details {
        max-width: 100%;
    }

    .about-details {
        padding: 15px 0;
    }

    #about-content {
        gap: 40px;
        padding-top: 60px;
    }
}

@media screen and (max-width: 576px) {
    .about-details h3 {
        font-size: 24px;
    }

    .about-details p {
        font-size: 16px;
    }

    #about-content {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 50px;
    }
}


/* Key Values Section */
#key-values {
    text-align: center;
    background-color: var(--light-bg);
    border-radius: 20px;
    padding: 60px 80px;
}

#key-values h1 {
    color: black;
    margin-bottom: 10px;
}

.value-container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    max-width: 250px;
    text-align: center;
}

.value-card i {
    font-size: 40px;
    color: #c8a45d;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
#policy-content h1{
    font-size: 32px;
    font-weight: 700;
    color: #c8a45d;
    margin-bottom: 20px;
}
#policy-content h3 {
    font-size:20px;
    font-weight: 500;
    color: #c8a45d;
    margin-bottom: 20px;
}


/* === CONTACT BANNER SECTION === */
.contact-banner {
    background-color: white; /* Goldish tone */
    padding: 40px 80px;
    text-align: center;
    color:black; /* White text for contrast */
}

.contact-banner h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-banner p {
    color: black;
    font-size: 1.1rem;
}


#policy-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #c8a45d;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #c8a45d;
    padding-bottom: 5px;
}

#policy-content p, #policy-content ul, #policy-content ol {
    color: black;
    font-weight: 475;
    font-size: 17.5px;
    line-height: 1.7;
    margin-bottom: 15px;

}

#policy-content ul, #policy-content ol {
    margin-left: 20px;
    padding-left: 10px;
}

#policy-content li {
    margin-bottom: 8px;
}

/* Links within the document */
#policy-content a {
    text-decoration: none;
    color: #c8a45d;
    transition: 0.3s;
}

#policy-content a:hover {
    text-decoration: underline;
}
#policy-content {
    flex-grow: 1;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
}
#contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 15px;
    gap: 40px;
}

#contact-details .details {
    width: 40%;
    min-width: 300px;
}

#contact-details .details span {
    font-size: 14px;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

#contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

#contact-details .details li i {
    font-size: 18px;
    padding-right: 20px;
    color: var(--primary-color);
}

#contact-details .map {
    width: 55%;
    min-width: 300px;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

#contact-details .map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* === Contact Form Section === */
#form-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    margin-top: 40px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    gap: 40px;
}

#form-details form {
    width: 65%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#form-details form input,
#form-details form textarea {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    border: 1px solid #ccc;
    background: var(--white);
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

#form-details form button {
    background-color: white;
    color: black;
    padding: 12px 20px;
    border: 2px solid black; /* added black border */
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    width: fit-content;
    margin-top: 10px;
    /* Added soft shadow for prominence */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

#form-details form button:hover {
    background-color: #c8a45d;
    transform: translateY(-1px);
}

#product-grid {
    text-align: center;
}

#product-grid h2 {
    margin-bottom: 10px;
}
#page-header-shop {
    background-color: #c8a45d;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

#page-header-shop h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 10px;
}

#page-header-shop p {
    color:white;
    font-size: 18px;
    font-weight: 500;
}
/* === PAGINATION STYLES === */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 10px 18px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #c8a45d;
    border-radius: 6px;
    color: #c8a45d;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    background-color: #c8a45d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pagination li.active span {
    background-color: #c8a45d;
    color: white;
    border: 1px solid #c8a45d;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.pagination li.disabled span {
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
}


#form-details .people {
    width: 30%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#form-details .people div {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

#form-details .people div:last-child {
    border-bottom: none;
}

#form-details .people div p {
    margin: 0;
    line-height: 25px;
    font-size: 14px;
    color: #333;
}

#form-details .people div p span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}
@media (max-width: 799px) {
    /* Hide the shopping bag icon inside the navbar list */
    #navbar .head-ache {
        display: none !important;
    }

    /* General adjustments */
    .section-p1 {
        padding: 40px 40px;
    }
    
    /* Header/Navbar adjustments */
    #header {
        padding: 10px 40px;
    }
    #navbar {
        /* Hide navbar on tablet by default, mobile menu should replace it */
        display: none; 
    }
    
    /* Product adjustments (2 products per row) */
    .pro-container {
        justify-content: space-around; /* Use space around to fill the container nicely */
    }
    .pro {
        width: calc(50% - 15px); /* Two products per row with spacing */
        min-width: 300px;
    }
    
    /* Newsletter adjustments */
    #newsletter-signup {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    #newsletter-signup .form {
        width: 100%;
        margin-top: 20px;
    }
    
    /* Footer Fix (Two columns per row) */
    #footer {
        justify-content: space-between;
    }
    
    #footer .col {
        /* Set contact info column to full width */
        min-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }

    /* Set other link columns to 45% width to fit two per row */
    #footer .links, 
    #footer .payment-gateways {
        min-width: 45%;
        width: 45%;
        margin-bottom: 20px;
    }
    
    /* About Page Responsiveness */
    #about-head {
        padding: 40px;
        flex-direction: column;
    }
    
    #about-head img, #about-head div {
        width: 100%;
    }
    
    #about-app .value-container {
        gap: 20px;
    }
    
    #about-app .value-box {
        width: 48%; /* Two boxes per row */
        min-width: 300px;
    }
}

/* --- 2. Mobile View (Max Width 477px) --- */
@media (max-width: 477px) {
    
    /* Hide the shopping bag icon inside the navbar list */
    #navbar .head-ache {
        display: none !important;
    }

    /* General adjustments */
    .section-p1 {
        padding: 20px 10px; /* Very small padding for tight mobile screens */
    }
    .section-m1 {
        margin: 20px 0;
    }
    
    /* Header/Navbar adjustments */
    #header {
        padding: 10px 20px;
    }
    .logo {
        height: 45px;
    }

    /* Hero Section adjustments */
    #hero {
        height: 60vh;
    }
    #hero h2 {
        font-size: 38px;
    }
    #hero h1 {
        font-size: 35px;
    }
    #hero p {
        font-size: 16px;
    }
    
    /* Product adjustments (1 product per row) */
    .pro {
        width: 100%; /* Single product per row */
        min-width: 100%;
    }

    /* Newsletter adjustments */
    #newsletter-signup {
        padding: 20px 10px;
    }
    #newsletter-signup .newsletter-text h2 {
        font-size: 22px;
    }

    /* Footer Fix (One column per row) */
    #footer {
        flex-direction: column;
        padding: 20px 10px;
        align-items: flex-start;
    }

    #footer .col {
        width: 100%;
        min-width: auto;
        margin-bottom: 20px;
    }
    
    /* Ensure no tiny column widths remain */
    #footer .links, 
    #footer .payment-gateways {
        width: 100%;
        min-width: auto;
    }
    
    /* About Page Responsiveness */
    #about-head {
        padding: 20px 10px;
    }
    
    #about-app {
        padding: 40px 10px;
    }
    
    #about-app h1 {
        font-size: 30px;
    }
    
    #about-app .value-box {
        width: 100%; /* Single box per row */
        min-width: 100%;
    }
}


/* --- HAMBURGER MENU STYLES --- */

/* Hide the hamburger and mobile icons on desktop */
#mobile-icons {
    display: none;
}

/* When screen is small */
@media (max-width: 799px) {
    /* Show the hamburger and bag */
    #mobile-icons {
        display: flex;
        align-items: center;
        gap: 20px;
        cursor: pointer;
    }

    #mobile-icons i {
        font-size: 22px;
        color: #333;
        transition: color 0.3s ease;
    }

    #mobile-icons i:hover {
        color: #c8a45d;
    }

    /* Hide the default navbar */
    #navbar {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 70px; /* below header */
        left: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 998;
    }

    #navbar.active {
        display: flex;
    }

    #navbar li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    #navbar li a {
        font-size: 18px;
        display: inline-block;
    }
}

/* --- Footer Center Alignment for Mobile --- */
@media (max-width: 477px) {
    #footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #footer .col {
        align-items: center;
        text-align: center;
    }

    #footer .follow-icons {
        text-align: center;
    }

    #footer .copyright p {
        text-align: center;
        width: 100%;
    }
}
