/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.button {
    background-color: #3ede32;
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 4px 2px #1c1c1c5f;
}

.button:hover {
    background-color: rgb(101, 221, 107);
    color: rgb(255, 255, 255);
}

/* Top Bar */
/* style.css */
/* ... (previous CSS code - keep the general styles like body, container, button etc.) ... */

/* Navbar Styles */
.navbar-header {
    background-color: #fff; /* Or the background color from your image if it's not white */
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    padding: 15px 0; /* Adjust padding as needed */
    position: relative; /* For mobile nav positioning */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    max-width: 1400px; 
    margin: 0 auto;
}

.navbar-logo{
    height: 60px;
    background-image: url('assets/Hygienap_Logo\ \(2\)/psddd_500.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    /* margin-left: 10%; */
    /* overflow-y: hidden; */
    width: 180px;
}

.navbar-logo img {
    height: 100px; /* Adjust logo height */
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push navbar-nav to the right side */
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
}

.nav-links li {
    margin-left: 35px; /* Spacing between nav links */
    position: relative; /* for dropdown positioning */
}

.nav-links li a {
    display: block;
    padding: 10px 0;
    /* font-size: 16px; */
    font-weight: normal; /* Adjust font weight if needed */
    color: #333; /* Adjust link color */
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #70c174; /* Hover/Active link color */
}

/* Dropdown Styles */
.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px 0;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    min-width: 180px; /* Adjust dropdown width */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin-left: 0; /* Reset list item margin */
    list-style: none;
}

.dropdown-menu li a {
    padding: 10px 20px;
    color: #555;
    white-space: nowrap; /* Prevent text wrapping in dropdown */
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: #70c174;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 0.8em;
}


/* Inquiry Button */
.navbar-inquiry {
    margin-left: 30px; /* Spacing before inquiry button */
}

.header-whatsapp-icon{
    margin-left: 80px;
}

.searchbar{
    padding: 10px;
    font-weight: normal;
    font-size: 0.8em;
    border-radius: 5px;
    outline: none;
    border: 0.5px solid;
}

.mobile-searchbar{
    width: 80%;
}

.inquiry-button {
    background-color: #70c174; /* Dark Green color from your image */
    color: #fff;
    font-size: 17px;
    padding: 8px 40px;
    border-radius: 5px;
    border: 1px solid #70c174;
    font-weight: normal;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.inquiry-button:hover {
    background-color: #97dc9a; /* Darker shade on hover */
    border: 1px solid #97dc9a;
 
}


/* Hamburger Menu (Mobile) - Styles are already in previous CSS, keep them if you removed them by mistake */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    display: block;
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation (Initially Hidden) - Styles are already in previous CSS, keep them if you removed them by mistake */
.mobile-nav {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 20px;
    text-align: center;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a, .mobile-nav ul li .inquiry-button {
    display: block;
    padding: 10px 15px;
    font-size: 1.1em;
    color: #555;
    border-bottom: 1px solid #eee; /* Optional separator */
    text-align: center; /* Center align mobile nav links */
}
.mobile-nav ul li .inquiry-button {
    border: none; /* Remove border from inquiry button in mobile nav */
    border-bottom: 1px solid #eee; /* Add border bottom to inquiry button like other links */
    margin: 0 auto; /* Center align inquiry button in mobile nav */
    max-width: 150px; /* Limit width of inquiry button in mobile nav if needed */
}
.mobile-nav ul li:last-child a, .mobile-nav ul li:last-child .inquiry-button {
    border-bottom: none; /* Remove separator from last item */
}
.mobile-nav ul li a:hover, .mobile-nav ul li .inquiry-button:hover {
    color: #70c174;
    background-color: #f9f9f9; /* Add background color on hover in mobile nav */
}


/* Mobile Dropdown Styles */
.dropdown-mobile .dropdown-menu-mobile {
    display: none;
    padding-left: 20px; /* Indent mobile dropdown menu items */
}

.dropdown-mobile:hover .dropdown-menu-mobile { /* Class added by JS to show dropdown */
    display: block;
}

.dropdown-menu-mobile li a {
    border-bottom: none; /* Remove border from dropdown items */
    padding: 10px 15px;
    font-size: 1em;
    color: #666;
    text-align: left; /* Left align dropdown items */
}

.dropdown-toggle-mobile i {
    margin-left: 5px;
    font-size: 0.8em;
}


/* Media Queries for Responsiveness (Navbar specific adjustments) */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: row; /* Keep logo, hamburger, inquiry in a row */
        justify-content: space-between; /* Space between logo and right side items */
    }
    .navbar-nav, .navbar-inquiry {
        display: none; /* Hide desktop nav and inquiry on mobile */
    }
    .hamburger-menu {
        display: block; /* Show hamburger on mobile */
    }
    .mobile-nav {
        display: none; /* Will be toggled by JS */
    }
    .navbar-logo {
        margin-right: auto; /* Push logo to the left */
    }
    
    .header-whatsapp-icon{
        margin-right: 50px;
    }

}

@media (min-width: 769px) and (max-width: 992px) {
    .nav-links li {
        margin-left: 20px; /* Reduce nav link spacing on tablets */
    }
    .navbar-inquiry {
        margin-left: 30px; /* Reduce inquiry button spacing on tablets */
    }
}

@media (max-width: 576px){
    .navbar-logo{
        height: 60px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        /* overflow-y: hidden; */
        width: 180px;
    }
}


/* Hamburger Menu Icon (Initially Hidden) */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    cursor: pointer;
    padding: 10px;

}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    display: block;
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation (Initially Hidden) */
.mobile-nav {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 20px;
    text-align: center;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    display: block;
    padding: 10px 15px;
    font-size: 1.1em;
    color: #555;
    border-bottom: 1px solid #eee; /* Optional separator */
}
.mobile-nav ul li:last-child a {
    border-bottom: none; /* Remove separator from last item */
}
.mobile-nav ul li a:hover {
    color: #70c174;
}


/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide img {
    display: block; /* Prevents bottom margin issue */
    width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #232323;
    width: 100%;
    padding: 20px;
    margin: 0px auto;
}

.hero-button{
    background-color: #3ede32;
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 4px 2px #1c1c1c5f;
}

.hero-button:hover {
    background-color: #58e04e;
    color: rgb(255, 255, 255);
}

/* .discount-badge {
    background-color: #e74c3c;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
} */

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}



/* Dairy Delights Section */
.dairy-delights-section {
    padding: 30px 0;
    background-color: #fff;
}

.dairy-delights-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

.delights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.delight-item{
    background: #e9e9e9;
    border-radius: 5px;
    display: flex;
    /* flex-direction: column;
    justify-content: center;
    align-items: center; */
    /* padding: 30px 10px; */
    /* width: fit-content; */
}

.delight-item i{
    font-size: 60px;
    color: rgb(96, 222, 96);
}
/* 
.bg-1{  
    background-color: #abf1ae; 
    background: url(assets/HygienapWebsiteGraphics/High\ Absorbency.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.bg-2{  
    background-color: #f1c7ab; 
}

.bg-3{  
    background-color: #abeaf1; 
}
.bg-4{  
    background-color: #deabf1; 
} */

.delight-item img {
    /* border: 1px solid black; */
    height: 100%;
    width: 100%;
}

.delight-item h3 {
    font-size: 1.2em;
    color: #000000;
    font-weight: 500;
}

.delight-item p {
    color: #000000;
    padding: 0px 20px;
    margin: 0px 0px;
}


/* Featured Categories Section */
.featured-categories-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.featured-categories-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.categories-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px; /* for scrollbar space */
}
.categories-slider::-webkit-scrollbar {
    height: 8px;
}
.categories-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.categories-slider::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}
.categories-slider::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}


.category-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 150px; /* Minimum width for each category item */
}

.category-item img {
    height: 80px;
    margin-bottom: 15px;
}

.category-item h3 {
    font-size: 1.1em;
    font-weight: 500;
    color: #555;
}
.category-item h3 span {
    display: block;
    font-size: 0.9em;
    color: #777;
}

/* Banner Sections */
.banner-sections {
    padding-top: 10px;
    padding-bottom: 50px;
    background-color: #fff;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.banner-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.banner-sections h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

.banner-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.banner-item:hover img {
    transform: scale(1.05);
}

.banner-item:hover .banner-content{
    bottom: 10px;
    transition-duration: 900ms;
}

.banner-content {
    color: #333;
    /* top: 50%;
    /* transform: translate(-50%, -50%); */
    /* left: 50%; */
    text-align: center;
    display: flex;
    justify-content: center;
    /* background-color: rgba(255,255,255,0.8); */
    border-radius: 10px;
    /* padding: 0px 90px; */
    position: absolute;
    bottom: -90px;
    /* left: 60px; */
    /* color: #fff; */
    width: 100%;
}



.banner-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
    line-height: 1.1;
}

.banner-content p {
    font-size: 1em;
    /* margin-bottom: 20px; */
}




/* Product Listing Section */
.product-listing-section {
    /* padding: 60px 0; */
    background-color: #f9f9f9;
}

.product-listing-section-home {
    padding-top: 10px;
    padding-bottom: 60px ;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5em;
    color: #333;
}

.product-filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-button {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    font-weight: 500;
    color: #555;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.filter-button.active, .filter-button:hover {
    background-color: #70c174;
    color: #fff;
    border-color: #70c174;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}
.product-image img {
    display: block;
    width: 100%;
    height: auto;
}
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.product-details {
    padding: 20px;
    text-align: left;
}

.product-details h3 {
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.product-details p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price {
    font-weight: bold;
    color: #70c174;
    font-size: 1.1em;
}
.old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: normal;
}

.load-more-button {
    text-align: center;
    margin-top: 30px;
}

/* Peach Gin Banner Section */
.peach-gin-banner-section {
    background: url(assets/HygienapWebsiteGraphics/HygieNap_Home_Footer.png);
    background-size: cover;
    padding: 60px 0;
}

.peach-gin-banner {
    background-image: url('peach-gin-bg.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-radius: 10px;
    color: #000000;
    text-align: center;
}

.peach-gin-content h2 {
    font-size: 3em;
    margin-bottom: 40px;
}

.gin-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gin-feature-item {
    background-color: rgba(255,255,255,0.9);
    color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.gin-feature-item img {
    height: 60px;
    margin-bottom: 20px;
}

.gin-feature-item h3 {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 15px;
}

.gin-feature-item p {
    font-size: 0.95em;
    color: #666;
}

/* Customer Praise Section */
.customer-praise-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.customer-praise-section .section-header h2 {
    font-size: 2.5em;
    color: #333;
}

.customer-testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
}
.customer-testimonial-slider::-webkit-scrollbar {
    height: 8px;
}
.customer-testimonial-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.customer-testimonial-slider::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}
.customer-testimonial-slider::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}


.testimonial-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 40px;
    text-align: center;
    min-width: 80%; /* Adjust as needed */
    margin: 0 10px;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h3 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #777;
    font-size: 0.9em;
}

/* Exciting Food Section */
.exciting-food-section {
    padding: 60px 0;
    background-color: #fff;
}

.exciting-food-section .section-header h2 {
    font-size: 2.5em;
    color: #333;
}

.food-news-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
}
.food-news-slider::-webkit-scrollbar {
    height: 8px;
}
.food-news-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.food-news-slider::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}
.food-news-slider::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}


.news-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 300px; /* Adjust as needed */
    margin: 0 10px;
}

.news-image {
    position: relative;
    overflow: hidden;
}
.news-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.news-item:hover .news-image img {
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    color: #333;
    text-align: center;
    border-radius: 5px;
    padding: 10px 15px;
}
.date-badge span {
    display: block;
    font-weight: bold;
    font-size: 1.2em;
}

.news-content {
    padding: 20px;
    text-align: left;
}

.news-content .category {
    color: #70c174;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.news-content h3 {
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.browse-news-button {
    text-align: center;
    margin-top: 30px;
}

/* Instagram Follow Section */


/* Subscription Section */
.subscription-section {
    padding: 80px 0;
    background-color: #70c174;
    color: #fff;
    text-align: center;
}

.subscription-box {
    max-width: 700px;
    margin: 0 auto;
}

.subscription-section h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    line-height: 1.2;
}

.subscription-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form input[type="email"] {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    color: #333;
}
.subscription-form input[type="email"]::placeholder {
    color: #999;
}

.subscription-form button {
    border-radius: 0 5px 5px 0;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
}

/* Footer */

.footer-section {
    /*background-color: #f2f0ec;*/
    padding: 60px 0;
    color: #555; /* Default text color */
    font-size: 14px;
    box-shadow: -5px 0px 4px 2px #5a5a5a55;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 30px;
}

.footer-logo{
    height: 60px;
    background-image: url('assets/Hygienap_Logo\ \(2\)/psddd_500.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    /* overflow-y: hidden; */
    width: 180px;
}

.footer-col-logo .footer-logo img {
    height: 40px; /* Adjust logo height */
    margin-bottom: 20px;
}

.footer-description p {
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.2em;
    font-weight: 600;
    color: #333; /* Heading color */
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    /*margin-bottom: 10px;*/
}

.footer-links li a {
    color: #777; /* Link color */
    display: block; /* Make links block level for easier click */
    padding: 5px 0; /* Add some padding to links */
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #333; /* Hover color */
}

.footer-contact-info p {
    margin-bottom: 10px;
    display: flex; /* For icon alignment */
    align-items: center; /* Vertically align icon and text */
}

.footer-contact-info i {
    margin-right: 8px; /* Spacing between icon and text */
    color: #70c174; /* Icon color - adjust if needed */
}

.footer-social-icons {
    margin-top: 20px;
}

.facebook{
    color: #1877f2;
}

.instagram{
    color: #c32aa3;
}

.twitter{
    /* color: #000000; */
    position: relative;
    top: 2px;
    cursor: pointer;
}

.footer-social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #333; /* Social icon hover color */
}


/* Media Queries for Footer Responsiveness */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
    .footer-col-logo {
        grid-column: 1 / 3; /* Logo column spans 2 columns on medium screens */
        margin-bottom: 30px; /* Add spacing below logo column */
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 column on small screens */
        text-align: center; /* Center align text in columns */
    }
    .footer-col-logo {
        grid-column: 1; /* Reset logo column span */
        text-align: center; /* Center logo and description */
    }
    .footer-social-icons {
        text-align: center; /* Center align social icons */
    }
}

/* Media Queries for Footer Responsiveness */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
    .footer-col-logo {
        grid-column: 1 / 3; /* Logo column spans 2 columns on medium screens */
        margin-bottom: 30px; /* Add spacing below logo column */
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 column on small screens */
        text-align: center; /* Center align text in columns */
    }
    .footer-col-logo {
        grid-column: 1; /* Reset logo column span */
        text-align: center; /* Center logo and description */
    }
    .footer-social-icons {
        text-align: center; /* Center align social icons */
    }
}


/* Media Queries for Responsiveness */

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px; /* Reduce container padding on smaller screens */
    }

    .top-bar-content {
        flex-direction: column; /* Stack top bar content */
        text-align: center;
    }
    .top-bar-right a {
        margin: 5px 10px; /* Adjust spacing for top bar links */
    }

    .header-content {
        flex-direction: column; /* Stack header content */
        text-align: center;
    }
    .logo {
        margin-bottom: 15px; /* Add margin below logo in stacked header */
    }
    .main-nav {
        display: none; /* Hide main nav on mobile, hamburger menu will be used */
    }
    .header-right {
        width: 100%; /* Make search and account fill width */
        justify-content: center; /* Center align search and account */
        margin-top: 15px; /* Add margin above header right section */
    }
    .search-box {
        margin-right: 0; /* Remove right margin from search box */
        margin-bottom: 15px; /* Add margin below search box */
    }
    .account-cart a {
        margin-left: 10px; /* Adjust spacing for account/cart links */
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: block;
        position: absolute;
        /* top: 20px; */
        right: 20px;
    }
    /* Hide main navigation on mobile by default and show mobile navigation */
    .main-nav {
        display: none;
    }
    .mobile-nav {
        display: none; /* Will be toggled by JS */
    }

    
    .hero-content {
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #232323;
        width: 100%;
        padding: 10px;
        margin: 0px;
    }


    .hero-content h1 {
        font-size: 1.8em; /* Smaller hero heading on mobile */
        margin-bottom: 5px;
    }
    .hero-content p {
        font-size: 0.8em; /* Smaller hero paragraph on mobile */
        padding: 0px 15px;
        margin-bottom: 10px;
    }
    
    .price {
        font-size: 1.6em; /* Smaller price font on mobile */
    }

    .dairy-delights-section h2,
    .featured-categories-section h2,
    .banner-sections h2,
    .product-listing-section .section-header h2,
    .peach-gin-banner-section .peach-gin-content h2,
    .customer-praise-section .section-header h2,
    .exciting-food-section .section-header h2,
    .instagram-follow-section .section-header h2,
    .subscription-section h2 {
        font-size: 2em; /* Smaller section headings on mobile */
    }

    .delights-grid,
    .banner-grid,
    .gin-features {
        grid-template-columns: 1fr; /* Stack grid items on mobile */
    }
    .banner-content h2 {
        font-size: 2em; /* Smaller banner heading on mobile */
    }

    .product-grid {
        grid-template-columns: 1fr; /* Stack products on mobile */
    }

    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for Instagram gallery on mobile */
    }

    .subscription-section h2 {
        font-size: 2em; /* Smaller subscription heading on mobile */
    }
    .subscription-form {
        flex-direction: column; /* Stack subscription form on mobile */
        max-width: 100%; /* Full width for form on mobile */
    }
    .subscription-form input[type="email"] {
        border-radius: 5px 5px 0 0; /* Rounded top corners for stacked input */
        margin-bottom: 5px; /* Add margin below input */
    }
    .subscription-form button {
        border-radius: 0 0 5px 5px; /* Rounded bottom corners for stacked button */
    }


    .hero-button{
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 0.8em;
        display: inline-block;
        font-weight: 300;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        box-shadow: 2px 2px 4px 2px #1c1c1c5f;
    }
    
    /* .hero-button:hover {
        background-color: #4979ca;
        color: rgb(255, 255, 255);
    } */
    
}

/* Tablet devices (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .container {
        padding: 0 20px; /* Adjust container padding for tablets */
    }

    .hero-content h1 {
        font-size: 2.5em; /* Slightly smaller hero heading on tablet */
    }
    .hero-content p {
        font-size: 1.1em; /* Slightly smaller hero paragraph on tablet */
        margin-bottom: 20px;
    }

    .banner-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust banner grid for tablet */
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjust product grid for tablet */
    }

    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for Instagram gallery on tablet */
    }
}

@media(max-width: 576px) {
    .hero-content {
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #232323;
        width: 100%;
        padding: 10px;
        margin: 0px;
    }

    .hero-content h1 {
        font-size: 1em;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.5em;
        margin-bottom: 5px;
        padding: 0px 15px;
    }

    .hero-button{
        padding: 7px 15px;
        font-size: 0.8em;
        border-radius: 5px;
        font-size: 0.5em;
        display: inline-block;
        font-weight: 300;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        box-shadow: 2px 2px 4px 2px #1c1c1c5f;
    }
    
    /* .hero-button:hover {
        background-color: #4979ca;
        color: rgb(255, 255, 255);
    } */

    .mobile-searchbar{
        width: 60%;
    }

    .dairy-delights-section h2,
    .featured-categories-section h2,
    .banner-sections h2,
    .product-listing-section .section-header h2,
    .peach-gin-banner-section .peach-gin-content h2,
    .customer-praise-section .section-header h2,
    .exciting-food-section .section-header h2,
    .instagram-follow-section .section-header h2,
    .subscription-section h2 {
        font-size: 1.3em; /* Smaller section headings on mobile */
    }
}


/* bulk order page CSS */

.bulk-order{
    padding: 30px 0;
    background-color: #fff;
}

.bulk-order h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3em;
    color: #333;
}

.bulk-order p{
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #333;
}

.bulk-order a{
    text-decoration: underline;
}

.bulk-order-image{
    width: 100%;
    /* height: fit-content; */
    max-width: 1200px;
}

.bulk-order-image img{
    width: 100%;
}

.bulk-order-banner {
    background-image: url('assets/banner/4.png'); /* Replace with your FAQ banner image */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0; /* Adjust padding for banner height */
    color: rgb(0, 0, 0); /* Text color on banner */
    overflow: hidden; /* To contain the circle */
}


/* About Banner Section */

.about-banner {
    background-image: url('assets/banner/1.png'); /* Replace with your banner image */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0; /* Adjust padding for banner height */
    color: rgb(0, 0, 0); /* Text color on banner */
    overflow: hidden; /* To contain the circle */
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: white; */
    /*background-color: rgba(100, 150, 100, 0.7);*/ /* Green overlay - adjust opacity and color */
    pointer-events: none; /* Allow clicks through overlay */
}

.banner-content-container {
    position: relative; /* To position text and circle above overlay */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push content to the right side */
}


.banner-text {
    text-align: left; /* Align text to the left within its area */
    max-width: 500px; /* Limit text width */
}

.banner-text h1 {
    font-size: 3em; /* Adjust heading size */
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.2em; /* Adjust paragraph size */
    opacity: 0.8; /* Slightly reduce paragraph opacity */
}


/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f9f9f9; /* Light background for breadcrumb */
    padding: 15px 0;
    border-bottom: 1px solid #eee; /* Optional bottom border */
}

.breadcrumb-section .container p {
    font-size: 0.9em;
    color: #777;
}

.breadcrumb-section .container a {
    color: #555;
}

.breadcrumb-section .container a:hover {
    color: #4b86a9;
}


/* About Main Content Section */
.about-main-content {
    padding: 60px 0;
    background-color: #fff; /* White background for main content */
}

.about-main-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns for text and video */
    gap: 40px;
    align-items: center; /* Vertically align columns */
}

.about-text-content h2 {
    font-size: 2em; /* Adjust heading size */
    margin-bottom: 20px;
    line-height: 1.3;
    color: #333;
}

.about-text-content p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
}


/* About Main Content Section - Image Section Styles */
.about-video-content .image-container {
    border-radius: 10px; /* Optional image border radius */
    overflow: hidden; /* Clip image to border radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Optional image shadow */
}

.about-video-content .image-container img {
    display: block; /* Remove extra bottom spacing */
    width: 100%; /* Make image fill container width */
    height: auto; /* Maintain aspect ratio */
}
 

/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .banner-content-container {
        justify-content: center; /* Center content on smaller screens */
        text-align: center; /* Center text within its area */
        flex-direction: column; /* Stack circle and text vertically */
    }
    .banner-circle {
        margin-right: 0; /* Remove right margin when stacked */
        margin-bottom: 20px; /* Add bottom margin between circle and text */
    }

    .content-wrapper {
        grid-template-columns: 1fr; /* Stack text and video in one column */
    }
    .about-video-content {
        order: -1; /* Put video above text on smaller screens */
        margin-bottom: 30px; /* Add spacing below video */
    }
}

@media (max-width: 600px) {
    .about-banner {
        padding: 50px 0; /* Reduce banner padding on smaller screens */
    }
    .banner-text h1 {
        font-size: 2.5em; /* Smaller heading on mobile */
    }
    .banner-text p {
        font-size: 1em; /* Smaller paragraph on mobile */
    }
    .about-text-content h2 {
        font-size: 1.8em; /* Smaller main content heading on mobile */
    }
    
    .bulk-order-banner{
        padding: 50px 0px;
    }
}

/* contact us page css */

/* Contact Section */


/* About Banner Section */

.contact-banner {
    background-image: url('assets/banner/2.png'); /* Replace with your banner image */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0; /* Adjust padding for banner height */
    color: rgb(0, 0, 0); /* Text color on banner */
    overflow: hidden; /* To contain the circle */
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: white; */
    /*background-color: rgba(100, 150, 100, 0.7);*/ /* Green overlay - adjust opacity and color */
    pointer-events: none; /* Allow clicks through overlay */
}

.banner-content-container {
    position: relative; /* To position text and circle above overlay */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push content to the right side */
}

.banner-text {
    text-align: left; /* Align text to the left within its area */
    max-width: 500px; /* Limit text width */
}

.banner-text h1 {
    font-size: 3em; /* Adjust heading size */
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.2em; /* Adjust paragraph size */
    opacity: 0.8; /* Slightly reduce paragraph opacity */
}

.contact-section {
    background-color: #f9f9f9; /* Light background for contact section */
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns for image and form */
    gap: 30px;
    align-items: flex-start; /* Align items to the start of the container */
}

.contact-image-side img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px; /* Optional image border radius */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Optional image shadow */
}

.contact-form-side {
    padding: 20px;
    background-color: #fff; /* White background for form side */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* Slightly stronger shadow for form side */
}

.contact-info h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.contact-details p, .contact-message p, .contact-time p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95em;
}

.contact-details i {
    margin-right: 10px;
    color: #70c174; /* Icon color */
}

.contact-message {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* .contact-form{
    display: grid;
    grid-template-columns: minmax(300px, 1fr); Two equal columns for image and form
    gap: 30px;
    align-items: flex-start; Align items to the start of the container
} */

.contact-form form {
    display: flex;
    flex-direction: column;
    /* padding: 40px 130px; */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif; /* Inherit font-family */
    color: #333;
    outline: none; /* Remove default outline */
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing of textarea */
    min-height: 150px; /* Minimum height for textarea */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999; /* Placeholder text color */
}

.contact-form .send-button {
    background-color: #70c174; /* Brown color for button */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button to the start of the container */
}

.contact-form .send-button:hover {
    background-color: #8ddf91; /* Darker brown on hover */
}


/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack image and form on smaller screens */
    }
    .contact-image-side {
        order: -1; /* Put image above form on smaller screens */
        margin-bottom: 30px; /* Add spacing below image */
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
        /* padding: 40px 20px; */
    }

}

@media (max-width: 600px) {
    .contact-info h2 {
        font-size: 1.8em; /* Smaller heading on mobile */
    }
    .contact-details p, .contact-message p, .contact-time p {
        font-size: 0.9em; /* Smaller text on mobile */
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea,
    .contact-form .send-button {
        font-size: 0.95em; /* Slightly smaller form elements on mobile */
    }
    
    .contact-banner {
        padding: 50px 0; /* Reduce banner padding on smaller screens */
    }
    .banner-text h1 {
        font-size: 2.5em; /* Smaller heading on mobile */
    }
    .banner-text p {
        font-size: 1em; /* Smaller paragraph on mobile */
    }
    .about-text-content h2 {
        font-size: 1.8em; /* Smaller main content heading on mobile */
    }

}

/* FAQ section css */


/* FAQ Banner Section (Reusing styles from About Banner, adjusting text) */
.faq-banner {
    background-image: url('assets/banner/3.png'); /* Replace with your FAQ banner image */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0; /* Adjust padding for banner height */
    color: rgb(0, 0, 0); /* Text color on banner */
    overflow: hidden; /* To contain the circle */
}

.faq-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(255, 255, 255, 0.7); Green overlay - adjust opacity and color */
    pointer-events: none; /* Allow clicks through overlay */
}

.faq-banner .banner-content-container {
    position: relative; /* To position text and circle above overlay */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push content to the right side */
}

/* .faq-banner .banner-circle {
    width: 200px; Adjust circle size
    height: 200px; Adjust circle size
    background-color: rgba(255, 255, 255, 0.15); Semi-transparent white circle
    border-radius: 50%;
    position: relative;
    margin-right: 30px; Spacing between circle and text
    border: 2px dashed rgba(255, 255, 255, 0.6); Dashed border
} */

.faq-banner .banner-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; /* Center dot size */
    height: 20px; /* Center dot size */
    background-color: rgb(255, 255, 255); /* White center dot */
    border-radius: 50%;
}

.faq-banner .banner-text {
    text-align: left; /* Align text to the left within its area */
    max-width: 500px; /* Limit text width */
}

.faq-banner .banner-text h1 {
    font-size: 3em; /* Adjust heading size */
    margin-bottom: 10px;
    line-height: 1.2;
}

.faq-banner .banner-text p {
    font-size: 1.2em; /* Adjust paragraph size */
    opacity: 0.8; /* Slightly reduce paragraph opacity */
}


/* Breadcrumb Section - Reusing existing breadcrumb styles */


/* FAQ Main Content Section */
.faq-main-content {
    padding: 60px 0;
    background-color: #fff;
}

.faq-container {
    display: grid;
    grid-template-columns: 300px 1fr; /* Two columns - fixed width for categories, flexible for questions */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Categories Side */
.faq-categories-side {
    padding-right: 20px;
}

.categories-heading, .follow-us-heading {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #eee; /* Border around categories */
}

.category-list li {
    border-bottom: 1px solid #eee; /* Separator between categories */
}

.category-list li:last-child {
    border-bottom: none; /* Remove border from last category item */
}

.category-list li a {
    display: block;
    padding: 12px 20px;
    color: #555;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-list li a:hover, .category-list li a.active {
    background-color: #f0f0f0; /* Hover/active background */
    color: #333; /* Hover/active text color */
}


/* Follow Us Section in Categories Side */
.follow-us-section {
    margin-top: 40px; /* Spacing above follow us section */
}

.follow-us-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
    color: #777; /* Social icon color */
    transition: color 0.3s ease;
}

.follow-us-icons a:hover {
    color: #333; /* Social icon hover color */
}


/* FAQ Questions Side */
.faq-questions-side {
    padding-left: 20px;
}

.faq-question-item {
    margin-bottom: 15px; /* Spacing between FAQ items */
}

.faq-question {
    background-color: #fff;
    border: 1px solid #ddd; /* Border for question button */
    border-radius: 5px;
    padding: 15px 20px;
    text-align: left;
    font-size: 1em;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    width: 100%; /* Make question button full width */
    display: block; /* Ensure block level for width */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    background-color: #f8f8f8; /* Hover/active background color */
    border-color: #ccc; /* Hover/active border color */
}

.faq-question:focus {
    outline: none; /* Remove default focus outline */
    border-color: #bbb; /* Slightly darker border on focus */
    box-shadow: 0 0 0 2px rgba(100, 100, 100, 0.1); /* Subtle focus shadow */
}

.faq-answer {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-top: none; /* Remove top border to connect to question button */
    border-radius: 0 0 5px 5px; /* Round only bottom corners */
    background-color: #f8f8f8; /* Answer background */
    display: none; /* Initially hide answers */
    font-size: 0.95em;
    color: #555;
    line-height: 1.7;
}

.faq-answer.active {
    display: block; /* Show answer when active class is added by JS */
}

/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr; /* Stack categories and questions in one column */
    }
    .faq-categories-side {
        padding-right: 0; /* Remove padding for categories side when stacked */
        margin-bottom: 30px; /* Add spacing below categories */
    }
    .faq-questions-side {
        padding-left: 0; /* Remove padding for questions side when stacked */
    }
}

@media (max-width: 600px) {
    .faq-banner {
        padding: 50px 0; /* Reduce banner padding on smaller screens */
    }
    .faq-banner .banner-text h1 {
        font-size: 2.5em; /* Smaller heading on mobile */
    }
    .faq-banner .banner-text p {
        font-size: 1em; /* Smaller paragraph on mobile */
    }
    .categories-heading, .follow-us-heading {
        font-size: 1.2em; /* Slightly smaller category/follow us headings on mobile */
    }
    .category-list li a {
        font-size: 0.95em; /* Slightly smaller category links on mobile */
        padding: 10px 15px; /* Adjust padding for category links */
    }
    .faq-question {
        font-size: 0.95em; /* Smaller question text on mobile */
        padding: 12px 15px; /* Adjust question button padding */
    }
    .faq-answer {
        font-size: 0.9em; /* Smaller answer text on mobile */
        padding: 12px 15px; /* Adjust answer padding */
    }
}

/* product page css */

.container {
    max-width: 1200px; /* Or your website's container width */
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Product Listing Section (Keep as is) */
.product-listing-section {
    /* padding: 60px 0; */
    background-color: #f9f9f9;
}

.product-listing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-header { /* Keep as is, adjust if needed */
    text-align: center;
    margin-bottom: 40px;
    display: flex; /* Align items horizontally */
    justify-content: space-between; /* Space between title and sort */
    align-items: center; /* Vertically center align */
}

.product-header h1 { /* Keep as is, adjust if needed */
    font-size: 2.5em;
    color: #333;
    margin-bottom: 0; /* Reset margin-bottom for header h1 to align properly with sort filter */
}

.product-header-home { /* Keep as is, adjust if needed */
    text-align: center;
    margin-bottom: 40px;
    display: flex; /* Align items horizontally */
    justify-content: center; /* Space between title and sort */
    align-items: center; /* Vertically center align */
}

.product-header-home h1 { /* Keep as is, adjust if needed */
    font-size: 2.5em;
    color: #333;
    margin-bottom: 0; /* Reset margin-bottom for header h1 to align properly with sort filter */
}

.sort-filter {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    color: #555;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.sort-filter:hover {
    background-color: #eee;
    border-color: #ccc;
    color: #333;
}
.sort-filter i {
    margin-left: 5px;
    font-size: 0.8em;
}

.product-header p { /* You can remove product description from header if no longer needed */
    color: #555;
    line-height: 1.7;
}
.product-header p b { /* You can remove product description from header if no longer needed */
    font-weight: 600;
    color: #333;
}

.product-grid { /* Keep grid styles */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.product-item-wrapper {
    /* Wrapper to group item and title, set text-align for title to center */
    text-align: center; /* Center aligns the product title below the image */
}

.product-item { /* Keep core tile styles, adjust padding if needed */
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For positioning button and overlay */
    /* padding-bottom: 15px; Remove if you want less space below image */
}

.product-item:hover { 
    /* transform: translateY(-5px); */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-item:hover img{ /* Keep hover effect */
    transform: scale(1.1);
    transition-duration: 500ms;
}

.product-image img { /* Keep image styles */
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee; /* Keep or remove border below image */
}

.product-title {
    font-size: 1.5em;
    font-weight: 500;
    color: #333;
    margin-top: 15px; /* Spacing between image and title */
    margin-bottom: 20px; /* Spacing below title, between tiles */
    line-height: 1.3;
    padding: 0 5px; /* Keep title text within tile width */
}

.product-description{
    margin-bottom: 60px;
}

.product-item .view-product-button { /* Keep button styling, adjust positioning */
    background-color: #70c174;
    color: #fff;
    padding: 14px 28px;
    border: 0px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%; /* Center button vertically now */
    left: 50%;
    transform: translate(-50%, -50%); /* Center button */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

.product-item:hover .view-product-button { /* Keep hover effect */
    opacity: 1;
    visibility: visible;
    top: 50%; /* Button stays centered on hover */
}

.product-item::before { /* Keep hover overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.product-item:hover::before { /* Keep hover overlay effect */
    opacity: 1;
}



/* Media Queries for responsiveness (adjust as needed) - Keep, or adjust for mobile padding */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .product-header h1 {
        font-size: 2em;
    }
    .product-item .view-product-button { /* Button style mobile */
        padding: 12px 24px;
        font-size: 1em;
    }
}



/*product detail css*/


/* Product Detail Section */
.product-detail-section {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.product-image-column {
    flex: 0 0 50%;
}

.product-details-column {
    flex: 0 50%;
}

.main-image img {
    width: 100%;
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
}

.thumbnail-gallery {
    display: flex;
    margin-top: 10px;
}

.thumbnail-gallery img {
    width: 80px;
    margin-right: 5px;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 5px;
}

.thumbnail-gallery img.active-thumb {
    border-color: #70c174; /* Green when active */
}

/* Product Details Column Styles */
.product-title {
    font-size: 2em;
    margin: 0px 0px 10px 0px;
}

.product-price {
    font-size: 1.5em;
    color: #cc0000; /* Red for price */
    font-weight: bold;
    margin-bottom: 15px;
}

.old-price {
    color: #777;
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 0.8em;
    font-weight: normal; /* Reset font-weight for old price */
}

.about-item h3 {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-item{
    width: fit-content;
}

.about-item ul {
    padding-left: 20px;
    list-style-type: disc;
    color: #666;
    line-height: 1.6; /* Improve readability of list */
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}



/* .button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 4px 2px #1c1c1c5f;
}

.button:hover {
    background-color: #4979ca;
    color: rgb(255, 255, 255);
} */


/* Tab Section Styles */
.tab-section {
    margin-top: 50px;
    border-top: 1px solid #eee; /* Separator for tabs */
}

.tabs {
    display: flex;
    border-bottom: 1px solid #eee; /* Line below tabs */
    margin-bottom: 0; /* Reset default margin */
    padding-left: 0; /* Reset default padding */
}

.tab-item{
    list-style: none;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent; /* Initially transparent border */
    transition: border-color 0.3s ease, color 0.3s ease; /* Smooth tab indicator animation */
}

.tab-button.active {
    border-bottom-color: #70c174; /* Green active tab indicator */
    color: #70c174; /* Green active tab text */
    font-weight: bold; /* Bolder active tab text */
}
.tab-button:hover {
    color: #70c174; /* Hover color - green */
}

.tab-content {
    padding: 20px 0;
    display: none; /* Initially hidden */
}

.tab-content.active {
    display: block; /* Show active tab content */
}

/* Related Products Section Styles */
.related-products-section {
    margin: 60px auto; /* Spacing above related products */
    max-width: 1200px;
}

.related-products-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.related-product-item {
    text-align: center;
    border: 1px solid #eee; /* Light border around related items */
    border-radius: 8px;
    padding: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease; /* Hover animation */
}

.related-product-item a{
    text-decoration: none;
}

.related-product-item:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); /* Slight shadow on hover */
    transform: translateY(-2px); /* Little lift on hover */
}

.related-product-item img {
    width: 100%;
    display: block;
    border-radius: 5px;
    margin-bottom: 10px;
}

.related-product-item:hover img{ /* Keep hover effect */
    transform: scale(1.1);
    transition-duration: 500ms;
    opacity: 0.9;
}

.related-product-title {
    font-size: 0.9em;
    margin-bottom: 5px;
    color: #333; /* Darker title color */
}

.related-product-price {
    font-size: 0.9em;
    font-weight: bold;
    color: #cc0000; /* Red related product price */
}

.ratings {
    color: gold; /* Gold rating stars */
    font-size: 0.8em;
    margin-bottom: 5px;
}

/* carousel.css */

.carousel-container{
    padding: 30px 0px;
}

.carousel-slide{
    max-width: 100%;
}
.carousel-slide img{
    width: 100%;
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .product-detail-section {
        flex-direction: column; /* Stack columns on mobile */
    }
    .product-image-column, .product-details-column {
        flex: 0 100%; /* Take full width on mobile */
    }
    .thumbnail-gallery {
        justify-content: center; /* Center thumbnails on mobile */
        
    }
    .product-title {
        font-size: 1.8em; /* Slightly smaller title on mobile */
    }
    .product-price {
        font-size: 1.3em; /* Slightly smaller price on mobile */
    }
    .action-buttons {
        flex-direction: column; /* Stack buttons on mobile */
        align-items: stretch; /* Make buttons full width */
    }
    .action-buttons > * { /* Apply to direct children of action-buttons */
        width: 100%; /* Full width for buttons on mobile */
    }
    .wishlist-compare {
        flex-direction: column; /* Stack wishlist/compare buttons */
    }

    .carousel-slide{
        max-width: 100%;
    }

    
}

@media(max-width: 1024px) {
    .related-products-section h2{
        margin: auto; 
        text-align: center;
    }
}

@media (max-width: 576px) {
    .thumbnail-gallery img {
        width: 40px;
    }

    .product-header-home h1 { /* Keep as is, adjust if needed */
        font-size: 1.3em;
        color: #333;
        margin-bottom: 0; /* Reset margin-bottom for header h1 to align properly with sort filter */
    }
}


/* style.css - Add Modal CSS below your existing CSS or in a separate file */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 10px auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 40%; /* Could be more or less, depending on screen size */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation-name: modalopen;
    animation-duration: 1s;
    position: relative; /* to position close button */
}

/* Modal Header */
.modal-header {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.modal-header h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.8em;
    color: #333;
}

/* Modal Body */
.modal-body {
    padding: 20px 16px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* To include padding in width */
    font-family: inherit;
    font-size: 1em;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #70c174; /* Match navbar blue */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #8ad38e; /* Darker shade on hover */
}

/* Close Button */
.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Animation (Optional - for modal opening effect) */
@keyframes modalopen {
    from {opacity: 0}
    to {opacity: 1}
}


/* Responsive adjustments for the modal */
@media (max-width: 768px) {
    .modal-content {
        width: 80%; /* Make modal wider on smaller screens */
        margin: 20% auto; /* Adjust margin for smaller screens */
    }

    .modal-header h2 {
        font-size: 1.5em; /* Smaller heading on mobile */
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea,
    .submit-button {
        font-size: 0.95em; /* Slightly smaller form elements on mobile */
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 90%; /* Even wider on very small screens */
        margin: 10% auto; /* Adjust margin further */
    }
}
/* style.css - Updated Instagram Section CSS with Logo Overlay and Horizontal Scroll */

/* Instagram Follow Section */
.instagram-follow-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.instagram-follow-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-follow-section .section-header h2 {
    font-size: 2.5em;
    color: #333;
    line-height: 1.2;
}

.instagram-follow-section .section-header h2 a {
    color: #70c174;
}

.instagram-follow-section .section-header h2 i {
    margin-left: 5px;
}

.instagram-wrapper{
    overflow-x: scroll;
}

.instagram-gallery {
    width: max-content;
    display: flex; /* Enable horizontal layout */
    padding-bottom: 20px; /* For scrollbar space */
    gap: 10px; /* Spacing between images */
}

.instagram-wrapper::-webkit-scrollbar {
    height: 8px; /* Adjust scrollbar height */
}

.instagram-gallery::-webkit-scrollbar-track {
    background: #f1f1f1; /* Scrollbar track color */
}

.instagram-gallery::-webkit-scrollbar-thumb {
    background: #ddd; /* Scrollbar thumb color */
    border-radius: 4px; /* Scrollbar thumb rounded corners */
}

.instagram-gallery::-webkit-scrollbar-thumb:hover {
    background: #bbb; /* Scrollbar thumb hover color */
}

.instagram-gallery-image {
    position: relative; /* Make position relative for absolute logo overlay */
    width: 200px; /* Adjust as needed */
    height: 200px; /* Adjust as needed - for square images */
    overflow: hidden; /* Clip image and overlay within container */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.instagram-gallery-image:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.instagram-gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the square area */
     transition: opacity 0.3s ease; /* Image fade on hover */
}

.instagram-gallery-image:hover img {
    opacity: 0.7; /* Slightly fade image on hover to highlight logo */
}

.instagram-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 4em; /* Size of Instagram Icon */
    opacity: 0; /* Initially hidden */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: dark semi-transparent background for logo */
    transition: opacity 0.3s ease; /* Fade-in for logo */
}

.instagram-gallery-image:hover .instagram-logo-overlay {
    opacity: 0.8; /* Show logo on hover */
}

@media (max-width: 576px) {
    .instagram-follow-section .section-header h2 {
        font-size: 1.3em;
    }

    .instagram-gallery-image {
        position: relative; /* Make position relative for absolute logo overlay */
        width: 135px; /* Adjust as needed */
        height: 135px; /* Adjust as needed - for square images */
        overflow: hidden; /* Clip image and overlay within container */
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: box-shadow 0.3s ease;
    }
}