/* ===========================
   General Styles
=========================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===========================
   Header Styles
=========================== */
.header-top {
    background: #6DB844;
    color: black;
    display: flex;
    justify-content: space-between;
    padding: 10px 200px;
}

/* Styling for Sign In & Sign Up buttons */
.auth-btn {
    background: none;
    border: none;
    color: black;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}

.auth-btn:hover {
    text-decoration: underline;
}

/* Grey separator line */
.separator {
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: grey;
    vertical-align: middle;
}

.header-middle {
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: space-between;
    padding: 15px 200px;
    gap: 20px;
}

.header-middle .logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo span {
    font-size: 26px;
}

.header-middle .search-bar {
    display: flex;
}

.search-bar input {
    padding: 5px;
}

.search-bar button {
    background: #6DB844;
    color: white;
    border: none;
    padding: 5px 10px;
}

.header-bottom {
    display: flex;
    background: white;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid gray;
    padding: 10px 200px;
}

.header-bottom nav {
    display: flex;
    flex: 1;
}

.header-bottom nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.header-bottom nav ul li {
    display: inline;
}

/* ===========================
   Breadcrumb
=========================== */
.breadcrumb {
    background: #6DB844;
    color: white;
    padding: 10px 200px;
}

/* ===========================
   Sign In Page Styles
=========================== */
.signin-section {
    padding: 20px;
    text-align: center;
}

.signin-form {
    padding: 20px;
    width: 320px;
    margin: auto;
    border-radius: 5px;
    text-align: center;
    border: 1px solid grey;
    background-color: white;
}

.signin-form input,
.signin-form button {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 90%;
    max-width: 280px;
    border: 1px solid grey;
    border-radius: 4px;
}

.forgot-password {
    text-align: right;
    margin-right: 5%;
    margin-bottom: 15px;
}

.signin-form button {
    background: #6DB844;
    color: white;
    border: none;
    cursor: pointer;
}

.signin-form button:hover {
    background: #6DB844;
}

/* ===========================
   Footer Styles
=========================== */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    flex-wrap: wrap;
    background: white;
    color: black;
    text-align: left;
}

/* Subscribe section */
.subscribe {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe input {
    padding: 8px;
    border: 1px solid grey;
    border-radius: 4px;
}

.subscribe button {
    background: #6DB844;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.subscribe button:hover {
    background: #6DB844;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
    color: black;
}

.footer-bottom {
    background: #6DB844;
    color: black;
    display: flex;
    justify-content: space-between;
    padding: 20px 200px;
    align-items: flex-start;
    gap: 30px;
}

.footer-column {
    flex: 1;
    text-align: left;
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 10px;
}

.footer-column p {
    margin: 5px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column .contact-info {
    margin-top: 15px;
}

.footer-end {
    background: #6DB844;
    color: black;
    text-align: center;
    padding: 10px;
    border-top: 1px solid gray;
}

.payment-icons span {
    margin: 0 10px;
}

/* Footer text styling */
.footer-bottom .footer-column h4,
.footer-bottom .footer-column p,
.footer-bottom .footer-column ul li,
.footer-bottom .footer-column ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-column h4:hover,
.footer-bottom .footer-column p:hover,
.footer-bottom .footer-column ul li:hover,
.footer-bottom .footer-column ul li a:hover {
    color: white;
}

/* ===========================
   Responsive Design
=========================== */
@media screen and (max-width: 768px) {
    .breadcrumb {
        padding: 10px 20px;
    }

    .signin-section {
        padding: 10px;
    }

    .signin-form {
        width: 90%;
    }

    .header-top,
    .header-middle,
    .header-bottom,
    .footer-top,
    .footer-bottom {
        padding: 10px 20px;
    }

    .header-middle {
        flex-direction: column;
        align-items: center;
    }

    .header-bottom nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}



/* Container for each section */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 80px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure both text and image have equal padding */
.text,
.image {
    padding: 0 60px;
}

/* Image styling */
.image {
    width: 40%;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text styling */
.text {
    width: 55%;
}

.text h2 {
    margin-bottom: 10px;
    color: #03324C;
}

.text p {
    color: #555;
    line-height: 1.5;
}

/* Top & Bottom Sections (Text Left, Image Right) */
.text-left .text {
    order: 1;
}

/* Text first */
.text-left .image {
    order: 2;
}

/* Image second */

/* Middle Section (Image Left, Text Right) */
.text-right .image {
    order: 1;
}

/* Image first */
.text-right .text {
    order: 2;
}

/* Text second */

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .image,
    .text {
        width: 100%;
    }

    .image img {
        max-width: 80%;
    }
}




/* About Us Page */

/* General styling for both sections */
.about-us,
.meet-the-team {
    width: 80%;
    margin: 50px auto;
    padding: 60px 200px;
    /* 200px padding on left & right */
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Styling for headings */
.about-us h2,
.meet-the-team h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #03324C;
}

/* Styling for paragraphs */
.about-us p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Team Section Layout */
.team-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Individual Team Member */
.team-member {
    width: 45%;
    text-align: center;
}

/* Image Styling */
.team-member img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Name Styling */
.team-member p {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {

    .about-us,
    .meet-the-team {
        padding: 50px 20px;
        /* Reduce padding for smaller screens */
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 80%;
        margin-bottom: 30px;
    }
}



/* Products Page */
/* General styling for the products section */

/* Products CSS */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Wrapper: Filters + Products Grid */
.products-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px 200px;
}

/* Sidebar Filter Styles */
.filters {
    width: 200px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.filters h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: black;
}

.filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 12px;
    background-color: #fff;
    color: black;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    flex: 1 1 45%;
    text-align: center;
}

.filter-btn:hover {
    background-color: #6DB844;
}

/* Product Grid */
.fruits-section {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Product Card Styles */
.product-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category {
    font-size: 0.9rem;
    color: #888;
}

.product-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.rating {
    font-size: 0.9rem;
}

.price-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.price {
    font-weight: bold;
}

.add-btn {
    background-color: #6DB844;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-icon {
    margin-right: 5px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .fruits-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .products-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .filters {
        width: 100%;
    }

    .filter-btns {
        justify-content: center;
    }

    .filter-btn {
        flex: 1 1 30%;
    }

    .fruits-section {
        grid-template-columns: 1fr;
    }
}




/* Contact Us page */
/* General styling for the contact us page */

/* Reset and body styling */
/* Container styling */
.contact-container {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    padding: 60px 200px;
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
}

/* Contact info (left side) */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers horizontally */
    text-align: center;
    /* centers text */
    padding: 8px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    min-width: 250px;
}


.info-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contact form (right side) */
.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.contact-form h2 {
    margin-top: 0;
    font-size: 1.25rem;
}

.form-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

input[type="text"],
input[type="email"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

button {
    width: fit-content;
    padding: 0.6rem 1.5rem;
    background-color: #6DB844;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
}

button:hover {
    background-color: #6DB844;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

/* FAQs page */
/* General styling for the FAQs page */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container {
    display: flex;
    justify-content: center;
    padding: 60px 200px;
}

.faq-left {
    width: 100%;
    max-width: 800px;
}

.faq-left h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f9f9f9;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: #6DB844;
    border: 1px solid #c1f2c1;
}

.accordion-body {
    display: none;
    padding: 1rem 1.5rem;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.accordion-item.active .accordion-body {
    display: block;
}

.icon {
    font-weight: bold;
    font-size: 1.5rem;
}

/* About Us Page - Team Section */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 200px;
    background-color: #fff;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.hero-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.hero-text ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #333;
}

.shop-btn {
    background-color: #22c55e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.hero-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.team-section {
    background: #dbe1e7;
    padding: 80px 200px;
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1rem;
}

.team-section {
    background: #fff;
    padding: 80px 100px;
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1rem;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-card {
    background: white;
    display: flex;
    flex-direction: row;
    width: 450px;
    max-width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.team-card .image-container {
    flex: 1 1 40%;
    max-width: 280px;
    height: 320px;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-text {
    flex: 1 1 60%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    color: #e27745;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.role {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 16px;
}

.bio {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .team-card .image-container {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .team-text {
        align-items: center;
        padding: 16px;
    }

    .team-info h3,
    .role,
    .bio {
        text-align: center;
    }
}

/* Homepage css */

/* General Reset & Layout Base */
/* General Reset & Layout Base */
/* General Reset & Layout Base */
/* Base Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.section {
    padding: 60px 180px;
}

.alt-bg {
    background: #f7fdf9;
}

/* Flex Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.row {
    flex-direction: row;
}

/* Text Styling */
.text-box {
    flex: 1 1 45%;
    padding: 20px;
}

.text-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-box h2 span {
    color: #6DB844;
}

.text-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

/* Features List (for Section 2) */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.features-list li {
    font-size: 16px;
    display: flex;
    align-items: center;
}

/* Standard Lists (for Section 3) */
.text-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-box ul li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Image Styling */
.image-box {
    flex: 1 1 45%;
    padding: 20px;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


/* Button Styling */
.shop-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: #6DB844;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.shop-btn:hover {
    background-color: #6DB844;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .section {
        padding: 60px 100px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .section {
        padding: 50px 20px;
    }

    .text-box,
    .image-box {
        flex: 1 1 100%;
        text-align: center;
        padding: 10px;
    }

    .text-box h2 {
        font-size: 28px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .shop-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}