/* General Body & Typography */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #2e2e2e;
    padding-top: 80px; /* Offset for fixed header */

    /* NEW: Full-page background image */
    background: url('../images/Teapic.jpg') no-repeat center center fixed; /* 'fixed' keeps it in place on scroll */
    background-size: cover; /* Ensures it covers the entire viewport */
    min-height: 100vh; /* Ensures body takes at least full viewport height */
}

/* Global reset for box-sizing */
*, *::before, *::after {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #4a3826; /* Consistent dark brown for headings */
}

a {
    text-decoration: none;
    color: #a9714b; /* Warm brown for links */
    transition: color 0.3s ease;
}

a:hover {
    color: #7b5239; /* Slightly darker brown on hover */
}

.container { /* Useful for centering content within sections */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Horizontal padding for smaller screens */
}

/* --- Header & Navigation --- */
header {
    /* NEW: Slightly transparent background, allowing the background image to show through */
    background-color: rgba(30, 20, 15, 0.9); /* Dark brown with 90% opacity */
    /* NEW: Frosted glass effect for that "wow" factor */
    backdrop-filter: blur(8px); /* Apply blur to content behind the header */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    color: #f4e4bc;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2); /* Slightly stronger shadow */
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107; /* Warm, inviting gold for branding */
    letter-spacing: 0.5px; /* Slight spacing for emphasis */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.nav-links a {
    color: #f4e4bc; /* Keep light cream for good contrast against dark header */
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0; /* Add padding for better clickable area */
    position: relative; /* For the custom underline effect */
}

/* Custom underline effect for hover */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff914d; /* Orange accent */
    left: 0;
    bottom: -5px; /* Position slightly below text */
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #fff; /* Lighter color on hover for contrast with underline */
}

/* Highlight active nav link */
.nav-links a.active {
    font-weight: bold;
    color: #ffc107; /* Use the gold accent for active link */
}
.nav-links a.active::after {
    width: 100%;
    background-color: #ffc107;
}

/* Mobile Menu Toggle (Hamburger) */
.menu-toggle {
    display: none; /* Hidden by default on larger screens */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Ensure it's clickable on top of mobile menu */
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animation for menu toggle when active
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
} */


/* --- Hero Section --- */
.hero {
    background: transparent; /* Make hero transparent so body image shows */
    height: calc(100vh - 80px); /* Adjust height for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* Overlay for text readability - essential when hero is transparent */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.45); /* Dark overlay */
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 700px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    border-radius: 15px;
    backdrop-filter: blur(5px); /* Stronger blur for better separation */
    box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* Stronger shadow for floating effect */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff; /* Keep text white for readability over dark background */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Stronger text shadow */
}

.hero p {
    font-size: 1.3rem;
    color: #f4e4bc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #ff914d;
    color: white;
    padding: 14px 30px;
    margin-top: 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid #ff914d;
}

.cta-button:hover {
    background: #ff7733;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}


/* --- General Section Styling (applies to all content sections) --- */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9); /* Opaque white with slight transparency */
    border-radius: 15px; /* Rounded corners for content blocks */
    margin-top: 40px; /* Space between sections if desired */
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadow for floating effect */
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #3e3e3e;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #ff914d;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}


/* --- About Page Specific Styling --- */

/* Divine Grace Section */
.about-banner {
    /* Uses general 'section' styling for background, margin, shadow, etc. */
    text-align: center;
    padding: 6rem 2rem; /* Keep specific padding */
}

.about-banner h2 {
    font-size: 2.8rem; /* Use consistent h2 size from general styling */
    margin-bottom: 1.5rem;
    color: #4a3826;
}

.about-banner p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #5a4633;
}

.divine-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.divine-icon {
    text-align: center;
    flex: 0 0 auto;
}

.divine-icon .circle {
    width: 150px;
    height: 150px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    overflow: hidden; 
    position: relative;
}

.divine-icon .circle img {
    width: 100%; /* Make image fill the circle container */
    height: 100%; /* Make image fill the circle container */
    object-fit: cover; /* CROPS the image to cover the circle, maintaining aspect ratio */
    border-radius: 50%; /* Make the image itself circular */
    display: block; /* Remove any extra space below image */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.divine-icon .circle img:hover {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

.divine-icon p {
    font-size: 1rem;
    font-weight: 600;
    color: #5a4633;
    margin: 0;
}


/* Meet the Founder Section */
.about-founder {
    padding: 6rem 2rem;
}

.founder-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

.founder-text {
    flex: 2;
    min-width: 300px;
}

.founder-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #4a3826;
}

.founder-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #5a4633;
}

.founder-text strong {
    display: block;
    font-size: 1.2rem;
    font-style: italic;
    color: #a9714b;
    margin-top: 1.5rem;
    border-left: 4px solid #ff914d;
    padding-left: 15px;
}

.founder-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
}

.founder-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    filter: saturate(1.1);
    transition: transform 0.3s ease;
}

.founder-image img:hover {
    transform: scale(1.02);
}


/* Tea House Section */
.tea-house {
    padding: 6rem 2rem; 
}

.tea-house .section-title {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #7b5239;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.tea-house-main {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.tea-house-main img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    filter: saturate(1.1);
    transition: transform 0.3s ease;
}

.tea-house-main img:hover {
    transform: scale(1.02);
}

.tea-house-text {
    flex: 1.5;
    min-width: 300px;
}

.tea-house-text h4 {
    font-size: 2rem;
    color: #4a3826;
    margin-bottom: 1rem;
}

.tea-house-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a4633;
    margin-bottom: 1rem;
}

.tea-house-features {
    display: flex; /* Changed from grid to flex for better card flexibility with text length */
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #fff; /* Solid white for cards */
    border-radius: 10px;
    padding: 2rem;
    flex: 1 1 280px; /* flex-grow, flex-shrink, basis */
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-card h5 {
    font-size: 1.3rem;
    color: #a9714b;
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #5a4633;
    line-height: 1.6;
}


/* --- Contact Section (from previous updates) --- */
.contact {
    background: linear-gradient(135deg, #3f2b1d, #705542);
    color: white;
    padding: 6rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin-bottom: 50px;
}

.contact .section-title {
    color: white;
}
.contact .section-title::after {
    background-color: #ffc107;
}

.contact-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info, .contact-form { /* contact-form is now whatsapp-cta in HTML */
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
}
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.contact-info a {
    color: #f4e4bc;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: #fff;
}

/* WhatsApp CTA specific styling (from previous update) */
.whatsapp-cta {
    text-align: center;
    padding: 0; /* Increased padding slightly for consistency */
    /* background: rgba(255,255,255,0.15); Semi-transparent background */
    /* border-radius: 15px; */
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
    flex: 1;
    min-width: 300px;
}

.whatsapp-cta h3 {
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.whatsapp-cta p {
    font-size: 1.1rem;
    color: #f4e4bc;
    margin-bottom: 2rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-button .fab {
    margin-right: 10px;
    font-size: 1.3em;
}

/* Ensure the contact-content layout adapts if only whatsapp-cta is present */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
}


/* --- Footer --- */
footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
footer a {
    color: #ffc107;
}
footer a:hover {
    color: #fff;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        /* background: #3f2b1d; Matches header dark color for mobile menu */
        background-color: rgba(30, 20, 15, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 20px 0;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 100px 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .about-content, .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text, .about-image, .contact-info, .contact-form {
        min-width: unset;
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .logo {
        font-size: 1.3rem;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Products Page Specific Styling --- */

/* Product Page Banner */
.product-page-banner {
    background: linear-gradient(135deg, #a07a5e, #6b4d3c); /* Warm, earthy gradient */
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px; /* Adjust padding to give space below header */
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* For text positioning if background image is added */
    z-index: 1; /* Ensure it sits above body background */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* Subtle shadow for depth */
}

.product-page-banner h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.product-page-banner p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Product Sections (Boiling Teas, Instant Premixes) */
.boiling-teas-section,
.premix-section {
    /* These sections inherit the general 'section' styling (background, border-radius, shadow) */
    padding: 6rem 2rem; /* Consistent padding */
    margin-top: 40px; /* Spacing between sections */
    margin-bottom: 40px;
}

.subsection-title {
    font-size: 2rem;
    color: #4a3826; /* Dark brown heading */
    text-align: center;
    margin-top: 4rem; /* Space above sub-category title */
    margin-bottom: 2.5rem; /* Space below sub-category title */
    position: relative;
    display: inline-block; /* For centering underline */
    padding-bottom: 10px;
}

.subsection-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #a9714b;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
}

/* Product Grid (reusing from previous sections) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

/* Individual Product Card */
.product-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 1.5rem; /* Slightly less padding than other cards for density */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex; /* Flex container for content */
    flex-direction: column; /* Stack content vertically */
    justify-content: space-between; /* Push actions to bottom */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover; /* Crop images to fit */
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card h3 {
    font-size: 1.4rem;
    color: #4a3826;
    margin-bottom: 0.5rem;
    flex-grow: 1; /* Allows title to take available space */
}

.product-card p {
    font-size: 0.95rem;
    color: #5a4633;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Product Card Actions (buttons) */
.card-actions {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    margin-top: auto; /* Push actions to the bottom of the card */
}

.view-details-btn,
.whatsapp-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 25px; /* Rounded buttons */
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn {
    background-color: #a9714b; /* Warm brown */
    color: #fff;
    border: 2px solid #a9714b;
}

.view-details-btn:hover {
    background-color: #8D5A3C;
    border-color: #8D5A3C;
    transform: translateY(-1px);
}

.whatsapp-card-btn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: 2px solid #25D366;
}

.whatsapp-card-btn:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    transform: translateY(-1px);
}

.whatsapp-card-btn .fab {
    margin-right: 8px; /* Space for icon */
}

/* Unique Product Tag for Boiling Teas */
.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff914d; /* Orange accent */
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.product-card {
    position: relative; /* Needed for absolute positioning of product-tag */
}


/* --- Product Detail Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* REMOVE: display: flex; from here */ /* <--- Make sure this line is gone */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 900px; /* Max width for larger screens */
    width: 90%; /* Responsive width */
    position: relative;
    animation: fadeInScale 0.3s ease-out; /* Entry animation */
    display: flex; /* For side-by-side image and text */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 2rem;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-button {
    color: #ff0000;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    align-items: flex-start; /* Align top if content heights differ */
}

.modal-image {
    width: 100%;
    max-width: 500px; /* Max width for image in modal */
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0; /* Prevent image from shrinking too much */

    display: block;
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
}

.modal-text {
    flex-grow: 1; /* Allow text to take remaining space */
    min-width: 280px; /* Minimum width for text column */
}

.modal-text h3 {
    font-size: 2.2rem;
    color: #4a3826;
    margin-bottom: 1rem;
}

.modal-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a4633;
    margin-bottom: 1.5rem;
}

.modal-text ul {
    list-style: none; /* Remove default list bullets */
    padding: 0;
    margin-bottom: 2rem;
}

.modal-text ul li {
    font-size: 1rem;
    color: #6b4d3c;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.modal-text ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #25D366; /* Green checkmark */
    font-size: 0.9em;
}

.whatsapp-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #25D366;
    margin-top: 1rem; /* Space above button */
}

.whatsapp-modal-btn:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-modal-btn .fab {
    margin-right: 10px;
}


/* Responsive Adjustments for Products Page */
@media (max-width: 768px) {
    .product-page-banner h1 {
        font-size: 2.5em;
    }
    .product-page-banner p {
        font-size: 1em;
    }
    .subsection-title {
        font-size: 1.8rem;
    }
    .product-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }
    .product-card {
        padding: 1.2rem;
    }
    .product-image {
        height: 300px; /* Slightly smaller fixed height for mobile */
    }

    /* Modal responsiveness */
    .modal-content {
        padding: 20px;
        width: 95%; /* Take more width on small screens */
    }
    .modal-body {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center;
        gap: 1.5rem;
    }
    .modal-image {
        max-width: 100%; /* Image takes full width */
        height: 350px; /* Fixed height for modal image on mobile */
    }
    .modal-text {
        text-align: center; /* Center text in modal */
    }
    .modal-text ul {
        text-align: left; /* Keep list items left-aligned */
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .whatsapp-modal-btn {
        width: 100%; /* Full width button in modal on mobile */
        max-width: 300px; /* Limit max width */
    }
}

@media (max-width: 480px) {
    .product-page-banner h1 {
        font-size: 2em;
    }
    .product-page-banner p {
        font-size: 0.9em;
    }
    .subsection-title {
        font-size: 1.6rem;
    }
    .product-card h3 {
        font-size: 1.2rem;
    }
    .product-card p {
        font-size: 0.85rem;
    }
    .modal-text h3 {
        font-size: 1.8rem;
    }
    .modal-text p, .modal-text ul li {
        font-size: 0.95rem;
    }
    .whatsapp-card-btn, .view-details-btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* --- Testimonials Page Specific Styling --- */

/* Testimonials Hero/Banner Section */
.testimonials-hero {
    /* Uses header gradient for consistency with product banner */
    background: linear-gradient(135deg, #a07a5e, #6b4d3c);
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px; /* Adjust padding to give space below header */
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.testimonials-hero h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.testimonials-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    /* Inherits general 'section' styling for background, padding, margin, shadow */
    margin-top: 40px;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid for cards */
    gap: 2.5rem; /* Space between testimonial cards */
    justify-content: center; /* Center grid items */
    margin-top: 3rem; /* Space below section title */
}

/* Individual Testimonial Card */
.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-rating {
    color: #ffc107; /* Gold color for stars */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-rating .fas {
    margin: 0 2px; /* Space between stars */
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #4a3826; /* Dark brown for quote text */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allows quotes of different lengths to push author to bottom */
}

.testimonial-author {
    margin-top: auto; /* Pushes author to the bottom of the card */
    padding-top: 1rem; /* Space between quote and author */
    border-top: 1px solid #eee; /* Subtle separator */
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #5a4633;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.85rem;
    color: #7b5239;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Call to Action Section at the bottom of Testimonials */
.testimonials-cta {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem; /* Space above CTA */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonials-cta p {
    font-size: 1.4rem;
    color: #4a3826;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Reusing .cta-button from general styles */


/* Responsive Adjustments for Testimonials Page */
@media (max-width: 992px) {
    .testimonials-hero h1 {
        font-size: 2.8em;
    }
    .testimonials-hero p {
        font-size: 1.1em;
    }
    .testimonials-grid {
        gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .testimonial-quote {
        font-size: 1.05rem;
    }
    .testimonials-cta p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-hero {
        padding: 100px 15px 60px;
    }
    .testimonials-hero h1 {
        font-size: 2.2em;
    }
    .testimonials-hero p {
        font-size: 1em;
    }
    .testimonials-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.2rem;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
    .testimonials-cta {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }
    .testimonials-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero h1 {
        font-size: 1.8em;
    }
    .testimonial-rating {
        font-size: 1rem;
    }
    .testimonial-quote {
        font-size: 0.95rem;
    }
    .author-name {
        font-size: 0.9rem;
    }
}

/* --- Gallery Page Specific Styling --- */

/* Gallery Hero/Banner Section */
.gallery-hero {
    background: linear-gradient(135deg, #a07a5e, #6b4d3c);
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px; 
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.gallery-hero h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.gallery-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Gallery Section (Image Grid) */
.gallery-section {
    /* Inherits general 'section' styling for background, padding, margin, shadow */
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    /* Responsive grid: 3 columns on large, adapts down to 2, then 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; /* Space between images */
    margin-top: 3rem; /* Space below section title */
}

/* Individual Gallery Item */
.gallery-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden; /* Ensures image corners are rounded */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For caption overlay */
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px; /* Fixed height for consistent grid look */
    object-fit: cover; /* Crops image to fit, maintaining aspect ratio */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Subtle zoom on image within item */
}

.gallery-caption {
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #4a3826;
    text-align: center;
    background-color: #fff;
    flex-grow: 1;
}

/* --- Lightbox Modal (for clicked images) --- */
/* Reuses .modal styles for overlay and basic structure from products page */
/* Specific styling for lightbox content within the modal */
.lightbox-content {
    background-color: #fefefe;
    padding: 20px; /* Adjust padding for aesthetics */
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); /* Stronger shadow for lightbox */
    max-width: 90%;
    max-height: 90vh; /* Max height to prevent overflow on tall images */
    overflow: hidden; /* Hide scrollbars if image exceeds bounds */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh; /* Limit image height to leave space for caption/buttons */
    object-fit: contain; /* Ensures entire image is visible within bounds */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.lightbox-caption {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    max-width: 90%;
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px; /* Limit width of nav buttons */
}

.lightbox-prev,
.lightbox-next {
    background-color: rgba(74, 56, 38, 0.8); /* Dark brown, semi-transparent */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    flex-grow: 1; /* Allow buttons to expand */
    margin: 0 10px; /* Space between buttons */
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #4a3826; /* Solid dark brown on hover */
}

/* .lightbox-prev .fas, .lightbox-next .fas {
    margin: 0; /* Remove default margin from Font Awesome icon
}
*/


/* Responsive Adjustments for Gallery Page */
@media (max-width: 992px) {
    .gallery-hero h1 {
        font-size: 2.8em;
    }
    .gallery-hero p {
        font-size: 1.1em;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    .gallery-item img {
        height: 200px; /* Adjust height for slightly smaller screens */
    }
    .lightbox-image {
        max-height: 60vh;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 1rem;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 15px 60px;
    }
    .gallery-hero h1 {
        font-size: 2.2em;
    }
    .gallery-hero p {
        font-size: 1em;
    }
    .gallery-grid {
        grid-template-columns: 1fr; /* Stack images on mobile */
        gap: 15px;
    }
    .gallery-item img {
        height: 250px; /* Make them a bit taller on mobile for better view */
    }
    .gallery-caption {
        font-size: 0.9rem;
        padding: 10px;
    }
    .lightbox-image {
        max-height: 50vh; /* Further limit height on phones */
    }
    .lightbox-caption {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .lightbox-nav {
        flex-direction: column; /* Stack nav buttons vertically */
        gap: 10px;
        max-width: 250px;
    }
    .lightbox-prev, .lightbox-next {
        width: 100%; /* Full width buttons */
        margin: 0;
    }
}

@media (max-width: 480px) {
    .gallery-hero h1 {
        font-size: 1.8em;
    }
    .gallery-hero p {
        font-size: 0.9em;
    }
}