/* ==========================================================================
   CSS Variables & Tokens - Fruitory Inspired Theme (Bright Green)
   ========================================================================== */
:root {
    /* Colors */
    --clr-bg-main: #FFFFFF;
    --clr-bg-alt: #F9FAFB;
    --clr-primary-green: #00B36B;
    /* Vibrant Green */
    --clr-primary-green-hover: #009959;
    --clr-accent-red: #FF4B4B;
    /* Sale badge */
    --clr-text-main: #111111;
    --clr-text-light: #6B7280;
    --clr-white: #FFFFFF;
    --clr-border: #E5E7EB;
    --clr-stars: #F59E0B;

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --radius-pill: 50px;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 35px rgba(0, 179, 107, 0.15);
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-light);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--clr-text-main);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 20px;
}

/* ==========================================================================
   Buttons & Pills
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-green {
    background-color: var(--clr-primary-green);
    color: var(--clr-white);
}

.btn-green:hover {
    background-color: var(--clr-primary-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-yellow {
    background-color: #FFC000; /* Warm premium amber-gold yellow */
    color: #111111; /* Dark text for high contrast and extreme legibility */
    font-weight: 600; /* Bold text to make the CTA clear */
}

.btn-yellow:hover {
    background-color: #E0A800; /* Rich golden yellow on hover */
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 192, 0, 0.45); /* Premium warm glow effect */
}

.btn-full {
    width: 100%;
}

.filter-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--clr-border);
    background: transparent;
    color: var(--clr-text-main);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.pill:hover,
.pill.active {
    background: var(--clr-text-main);
    color: var(--clr-white);
    border-color: var(--clr-text-main);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto; /* Pushes everything else to the right */
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 1.05rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--clr-white);
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.nav-icons {
    display: flex;
    gap: 20px;
    color: var(--clr-white);
    align-items: center;
    font-size: 1.1rem;
}

.nav-icons a {
    color: var(--clr-white);
}

.nav-icons a:hover {
    color: var(--clr-primary-green);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay to make all white text naturally pop */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text-center {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    color: var(--clr-white);
    margin: 0;
    line-height: 1.1;
    font-style: italic;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9); /* Premium high-contrast shadow layers */
}

.hero-center-image {
    margin: 20px 0;
    width: 180px;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9); /* Premium high-contrast shadow layers */
    max-width: 650px;
    margin: 30px auto;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    color: var(--clr-white);
    text-align: left;
}

.rating-card {
    left: 0;
    bottom: 10%;
}

.rating-stars {
    color: var(--clr-stars);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rating-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.satisfaction-card {
    right: 0;
    top: 20%;
}

.avatars {
    display: flex;
    margin-bottom: 15px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--clr-white);
    background: var(--clr-bg-alt);
    margin-left: -10px;
    overflow: hidden;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar.plus {
    background: var(--clr-white);
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.satisfaction-card h3 {
    font-size: 1.8rem;
    color: var(--clr-white);
    margin-bottom: 5px;
}

.satisfaction-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us {
    background-color: var(--clr-bg-main);
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.why-title-area {
    max-width: 500px;
}

.why-title-area h2 {
    margin-bottom: 15px;
}

.happy-customers {
    display: flex;
    align-items: center;
    gap: 15px;
}

.happy-customers strong {
    font-size: 1.2rem;
    color: var(--clr-text-main);
}

.happy-customers p {
    font-size: 0.85rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.why-img {
    height: 150px;
    border-radius: var(--radius-sm);
    background: var(--clr-bg-alt);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.why-img img {
    max-height: 100%;
}

.why-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-info p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-top: auto;
}

.learn-more:hover {
    border-color: var(--clr-primary-green);
    color: var(--clr-primary-green);
}

.why-card.image-only {
    padding: 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.why-card.image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.card-overlay h4 {
    color: var(--clr-white);
    font-size: 1.1rem;
}

/* ==========================================================================
   Best Sellers Section
   ========================================================================== */
.best-sellers {
    background-color: var(--clr-bg-alt);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 30px;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.product-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    width: 280px;
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.product-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.badge.sale {
    background: var(--clr-accent-red);
    color: var(--clr-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.wishlist-btn {
    background: transparent;
    border: none;
    color: var(--clr-text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn:hover {
    color: var(--clr-accent-red);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-image img {
    max-height: 90%;
    transition: var(--transition);
}

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

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--clr-text-light);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 20px;
}

.price span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    font-weight: 400;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--clr-text-main);
    color: var(--clr-white);
}

.slider-nav.small .nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

/* ==========================================================================
   Fresh Picks Section
   ========================================================================== */
.fresh-picks {
    padding: 50px 0;
}

.picks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.picks-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.picks-header p {
    max-width: 500px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.test-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.rating-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--clr-text-main);
    margin-bottom: 5px;
}

.rating-info p {
    max-width: 300px;
    font-size: 0.9rem;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.test-images {
    display: flex;
    gap: 20px;
}

.img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    width: 45%;
    filter: grayscale(1);
    transition: var(--transition);
}

.img-box.active {
    width: 55%;
    filter: grayscale(0);
    transform: scale(1.05);
    box-shadow: var(--shadow-card);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-content {
    background: var(--clr-white);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--clr-text-main);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.2rem;
    color: var(--clr-text-main);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.reviewer-info {
    margin-bottom: 30px;
}

.reviewer-info .stars {
    color: var(--clr-stars);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.reviewer-info h4 {
    font-size: 1rem;
}

/* ==========================================================================
   Bottom CTA
   ========================================================================== */
.bottom-cta {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/images/fruit_pomegranate.png');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    background-color: #2A2A2A;
    background-blend-mode: multiply;
    text-align: center;
    color: var(--clr-white);
}

.cta-content h2 {
    color: var(--clr-white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    background-color: var(--clr-bg-alt);
    padding: 80px 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
    background: var(--clr-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-bg-main);
    padding: 80px 0 30px;
    border-top: 1px solid var(--clr-border);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-map-area .section-header {
    margin-bottom: 20px;
    text-align: left;
}

.footer-map-area .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand .logo {
    color: var(--clr-text-main);
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 350px;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--clr-primary-green);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-bg-alt);
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--clr-primary-green);
    color: var(--clr-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--clr-border);
    font-size: 0.9rem;
}


/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-section {
    background-color: var(--clr-bg-main);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--clr-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--clr-text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary-green);
    box-shadow: 0 0 0 3px rgba(0, 179, 107, 0.1);
}


/* ==========================================================================
   Product Range Detailed Section
   ========================================================================== */
.product-range-detailed {
    background-color: var(--clr-bg-main);
}

.product-range-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.italic-title {
    font-style: italic;
    color: #D32F2F; /* Premium Red */
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 600;
}

.range-intro p {
    color: var(--clr-text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.text-link {
    color: var(--clr-primary-green);
    text-decoration: underline;
    font-weight: 500;
}

.range-heading {
    color: var(--clr-primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--clr-primary-green);
    display: inline-block;
    padding-bottom: 10px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.category-item {
    border-left: 1px solid var(--clr-border);
    padding-left: 25px;
    display: flex;
    flex-direction: column;
}

.category-grid .category-item:first-child {
    border-left: none;
    padding-left: 0;
}

.category-item .range-category-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    /* No border-radius to match image1 */
}

.category-item .range-bottom-img {
    width: 100%;
    max-width: 180px;
    margin-top: auto;
    padding-top: 15px;
    align-self: center;
}

.category-item h3 {
    color: #D32F2F;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.category-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--clr-text-light);
}

.range-hero-img {
    width: 100%;
    max-width: 280px;
    margin: 15px 0 25px;
    display: block;
}

.learn-more-link {
    color: var(--clr-primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: var(--clr-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.about-subheading {
    font-size: 1.8rem;
    color: #D32F2F; /* Premium Red */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.about-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #D32F2F;
}

.about-overview-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
}

.overview-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-box {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--clr-primary-green);
}

.mission-text {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--clr-text-main);
    line-height: 1.6;
}

.values-box, .team-box {
    margin-bottom: 40px;
}

.values-list, .team-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.values-list li, .team-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: var(--clr-text-light);
}

.values-list i, .team-list i {
    color: var(--clr-primary-green);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* ==========================================================================
   Growers Section
   ========================================================================== */
.growers-section {
    background-color: var(--clr-bg-main);
}

.growers-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.growers-text strong {
    color: var(--clr-text-main);
}

.growers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.growers-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: block;
}

@media (max-width: 992px) {
    .growers-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Business at Large (What We Do)
   ========================================================================== */
.business-at-large {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--clr-border);
}

.business-header-area {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start; /* Text at top */
    margin-bottom: 60px;
}

.business-title-text {
    flex: 1.2;
}

.business-intro {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--clr-text-light);
    margin-top: 20px;
}

.business-hero-image {
    width: 100%;
    max-width: 550px;
    margin-top: 40px; /* Push image down */
}

.business-main-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: block;
}

.business-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--clr-border);
}

.business-card {
    padding: 50px 30px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.business-card:nth-child(3n) {
    border-right: none;
}

.business-card:nth-last-child(-n+3) {
    border-bottom: none;
}

.card-title {
    color: #D32F2F;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.card-text {
    font-size: 1rem;
    color: var(--clr-text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .business-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .business-card:nth-child(3n) {
        border-right: 1px solid #eee;
    }
    .business-card:nth-child(2n) {
        border-right: none;
    }
    .business-card:nth-last-child(-n+3) {
        border-bottom: 1px solid #eee;
    }
    .business-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .business-header-area {
        flex-direction: column;
        gap: 40px;
    }
    .business-title-text {
        text-align: center;
    }
    .business-grid-container {
        grid-template-columns: 1fr;
    }
    .business-card {
        border-right: none;
        padding: 40px 20px;
    }
    .business-card:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   Quality List (Product Range)
   ========================================================================== */
.quality-list {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

.quality-list i {
    color: #D32F2F; /* Red to match headings */
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Variety & Sub-categories */
.variety-list {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
    list-style: disc;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.sub-category {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.sub-category strong {
    color: var(--clr-text-main);
    display: block;
    margin-bottom: 2px;
}

/* Footer Addresses */
.footer-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.address-col h4 {
    color: #D32F2F; /* Premium Red */
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.address-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--clr-text-light);
}

.address-col p strong {
    color: var(--clr-text-main);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .hero-text-center {
        max-width: 600px;
    }

    .hero-center-image {
        width: 120px;
    }

    .floating-card {
        position: static;
        margin: 20px auto;
        width: 100%;
        max-width: 350px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .why-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .contact-container {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .picks-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .test-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonial-layout {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-range-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-center-image {
        display: none;
    }

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


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

    .footer-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-details {
        grid-template-columns: 1fr;
    }

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

    .footer-addresses {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}