/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Palette */
    --primary: #D35400;
    /* Deep Spiced Orange */
    --primary-light: #E59866;
    --secondary: #1E8449;
    /* Fresh Herb Green */
    --secondary-light: #A2D9CE;
    --accent: #F1C40F;
    /* Turmeric Gold */

    /* Neutrals */
    --bg-body: #FDFBF7;
    /* Warm Cream */
    --bg-surface: #FFFFFF;
    --bg-surface-alt: #F2F0EB;

    --text-main: #2C1810;
    /* Dark Coffee */
    --text-muted: #5D504B;
    --text-light: #8D8480;

    /* UI Elements */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 40px;

    --shadow-sm: 0 4px 6px -1px rgba(44, 24, 16, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(44, 24, 16, 0.1);
    --shadow-float: 0 25px 50px -12px rgba(44, 24, 16, 0.15);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    cursor: default;
    /* Prevent text selection cursor globally */
    user-select: none;
    -webkit-user-select: none;
    overflow-x: hidden;
    /* ADDED: Prevent horizontal scroll */
}

body.menu-open {
    overflow: hidden;
    /* ADDED: Prevent scrolling when menu is open */
}

/* Prevent image and decoration selection - Redundant but good for specificity */
img,
.hero-bg-blob,
.floating-element,
.wave-separator,
h1,
h2,
h3,
h4,
p,
span,
div {
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

/* Re-enable text interaction for inputs only */
input,
textarea {
    cursor: text;
    user-select: text;
    -webkit-user-select: text;
}

/* Grainy Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
    height: auto;
    /* ADDED: Prevent layout shift */
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-separator .shape-fill {
    fill: var(--bg-surface-alt);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

/* =============== NAVIGATION - UPDATED =============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(253, 251, 247, 0.95);
    /* Increased opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Added for Safari */
    border-bottom: 1px solid rgba(44, 24, 16, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    z-index: 1002;
    /* Added z-index */
}

.logo img {
    height: 40px;
    width: auto;
    /* Added */
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    /* Added */
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
    /* Added padding for better touch target */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle Button - UPDATED */
.mobile-toggle {
    display: none;
    /* Hidden by default on desktop */
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-main);
    z-index: 1002;
    /* Increased z-index */
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    position: relative;
}

.mobile-toggle i {
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

/* =============== HERO SECTION =============== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    /* Increased from 80px */
    /* Offset for fixed nav */
    padding-bottom: 60px;
    /* Added */
    overflow: hidden;
    /* Added */
}

/* Background Blob Shape */
.hero-bg-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.08) 0%, rgba(253, 251, 247, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Floating Spices Animation */
.floating-element {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    animation: floating 8s ease-in-out infinite;
    font-size: 2rem;
    color: var(--primary);
}

.float-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
    font-size: 3rem;
}

.float-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
    opacity: 0.05;
}

@keyframes floating {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* Creative underline brush stroke */
.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5%;
    width: 110%;
    height: 0.4em;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2,15 Q50,5 100,10 T198,8' fill='none' stroke='%23D35400' stroke-width='4' stroke-opacity='0.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    /* Added */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    /* Added */
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.25);
}

.btn-primary:hover {
    background: #bd4a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(211, 84, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: var(--text-main);
    color: #fff;
}

.hero-image {
    position: relative;
}

.hero-img-main {
    border-radius: var(--border-radius-xl) 0 var(--border-radius-xl) var(--border-radius-xl);
    box-shadow: var(--shadow-float);
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    width: 100%;
    /* Added */
    height: auto;
    /* Added */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #fff;
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 5s ease-in-out infinite reverse;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 132, 73, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Features/Services */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(211, 84, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: #FFF5EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

/* Products Preview */
.product-showcase {
    background: var(--bg-surface-alt);
    /* Subtle pattern overlay for section */
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#D35400 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.05;
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(211, 84, 0, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    height: 240px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: #fff;
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.product-details {
    padding: 24px;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.product-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--text-main);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 24px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    display: inline-block;
    /* Added */
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
    /* Changed from padding-left */
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Added */
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    /* Added */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Skeleton Loading */
.skeleton {
    background: #f0f0f0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.img-loading {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.img-loaded {
    opacity: 1;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Product Portfolio Cards (Clean Professional Version) ===== */
/* REPLACING THE OLD 3D FOOD CARDS WITH CLEAN VERSION */

.food-cards-container {
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.food-card {
    width: 320px;
    background: var(--bg-surface);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
}

/* Image */
.food-card__image {
    height: 220px;
    overflow: hidden;
}

.food-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-card:hover .food-card__image img {
    transform: scale(1.05);
}

/* Details */
.food-card__details {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.food-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
}

.food-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============== RESPONSIVE DESIGN - UPDATED =============== */

/* Tablet and Mobile (900px and below) */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem !important;
        /* Fixed typo .h1 to h1 */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-bg-blob {
        width: 100vw;
        height: 100vw;
        top: -10%;
        right: -20%;
        opacity: 0.5;
        /* Tone down on mobile */
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        /* Allow content to dictate height on mobile */
        padding-bottom: 60px;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
        /* Allow stacking on very small screens */
    }

    .cta-group .btn {
        width: 100%;
        /* Full width buttons on mobile */
        max-width: 300px;
    }

    .hero-img-main {
        margin-top: 40px;
        border-radius: 20px;
        width: 90%;
        /* Added */
        margin-left: auto;
        /* Added */
        margin-right: auto;
        /* Added */
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 90%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* =============== MOBILE NAVIGATION - FIXED =============== */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        /* Added for Safari */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 30px 30px;
        /* Increased top padding */
        gap: 30px;
        /* Reduced gap */
        transform: translateY(-100%);
        /* Changed from translateX */
        opacity: 0;
        visibility: hidden;
        /* Added */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        /* Increased z-index */
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        /* Added */
    }

    .nav-link {
        font-size: 1.5rem;
        /* Larger touch targets */
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        /* Added */
        padding: 10px 0;
        /* Added */
    }

    /* MOBILE TOGGLE BUTTON - FIXED */
    .mobile-toggle {
        display: flex !important;
        /* Force display with flex */
        align-items: center;
        justify-content: center;
        z-index: 1002;
        /* Higher than nav-links */
        position: relative;
        font-size: 1.8rem;
    }

    /* Food Cards Responsive - Updated for clean version */
    .food-card {
        position: relative;
        left: auto !important;
        top: auto !important;
        margin-bottom: 2rem;
        transform: none !important;
        box-shadow: var(--shadow-md);
        width: 90%;
        max-width: 350px;
    }

    .food-cards-container {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        perspective: none;
        gap: 40px;
        margin-top: 60px;
    }

    .food-card__image {
        height: 200px;
    }

    .food-card__image img {
        transform: none;
        border-radius: 0;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
    h1 {
        font-size: 2.25rem !important;
        /* Reduced from 2.5rem */
        /* Override desktop styles */
    }

    h2 {
        font-size: 1.875rem !important;
        /* Reduced from 2rem */
    }

    h3 {
        font-size: 1.5rem !important;
        /* Added */
    }

    .section {
        padding: 60px 0;
        /* Reduced padding */
    }

    .hero-bg-blob {
        top: -5%;
        right: -30%;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 25px;
        /* Reduced gap */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .mobile-toggle {
        width: 35px;
        /* Smaller on mobile */
        height: 35px;
    }

    .mobile-toggle i {
        font-size: 1.5rem;
        /* Smaller icon */
    }

    /* About page specific responsive styles */
    .stats-row {
        grid-template-columns: 1fr 1fr;
        /* Added */
        padding: 40px 20px;
        /* Added */
        gap: 30px;
        /* Added */
        margin: 40px 0;
        /* Added */
    }

    .stat-number {
        font-size: 2.5rem;
        /* Added */
    }

    .timeline::before {
        left: 20px;
        /* Added */
    }

    .timeline-item {
        width: 100% !important;
        /* Added */
        left: 0 !important;
        /* Added */
        padding-left: 50px !important;
        /* Added */
        padding-right: 20px !important;
        /* Added */
        text-align: left !important;
        /* Added */
        margin-bottom: 40px;
        /* Added */
    }

    .timeline-point {
        left: 10px !important;
        /* Added */
        right: auto !important;
        /* Added */
    }

    .story-img {
        min-height: 300px !important;
        /* Added */
    }

    /* Food Cards Mobile */
    .food-cards-container {
        gap: 30px;
        margin-top: 50px;
    }

    .food-card {
        width: 100%;
        max-width: 100%;
    }

    .food-card__details {
        padding: 20px;
    }
}

/* Small Mobile (380px and below) */
@media (max-width: 380px) {
    h1 {
        font-size: 2rem !important;
    }

    .hero-text h1 span::after {
        bottom: -2px;
    }

    .hero-bg-blob {
        display: none;
        /* Hide on very small screens for performance */
    }

    .floating-element {
        display: none;
        /* Hide floating elements on very small screens */
    }

    .floating-badge {
        position: relative;
        bottom: -30px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .stats-row {
        grid-template-columns: 1fr;
        /* Single column on very small screens */
        gap: 25px;
    }

    /* Food Cards Small Mobile */
    .food-card__image {
        height: 180px;
    }

    .food-card__details {
        padding: 16px;
    }
}

/* Touch Feedback */
@media (hover: none) {

    .btn:active,
    .nav-link:active,
    .product-card:active,
    .food-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .product-overlay {
        opacity: 1;
        /* Always show text on touch if no hover */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        padding-bottom: 30px;
    }

    .product-img-wrapper img {
        transform: none !important;
        /* Disable zoom on touch scrolls */
    }

    .feature-card:hover {
        transform: none;
        /* Disable hover effects on touch devices */
    }

    .food-card:hover {
        transform: none;
        /* Disable hover effects on touch devices */
        box-shadow: var(--shadow-md);
    }

    .food-card:hover .food-card__image img {
        transform: none;
        /* Disable zoom on touch devices */
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    body::before {
        opacity: 0.03;
        /* Reduce noise on retina displays */
    }
}

/* Print Styles */
@media print {

    .navbar,
    .mobile-toggle,
    .hero-bg-blob,
    .floating-element,
    .wave-separator,
    .floating-badge,
    .cta-group,
    footer {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .section {
        padding: 20px 0 !important;
    }

    a {
        color: black !important;
        text-decoration: underline !important;
    }
}


/* ===== Industries We Serve - Clean Responsive Layout ===== */

.section.bg-light {
    background: #f8f6f2;
    padding: 100px 0;
}

/* Grid layout */
.section.bg-light .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    margin-top: 70px;
}

/* Remove box styling */
.section.bg-light .feature-card {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
}

/* Round icon */
.section.bg-light .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

/* Hover effect */
.section.bg-light .feature-card:hover .feature-icon {
    background: #d97706;
    color: #fff;
    transform: translateY(-4px);
}

/* Title */
.section.bg-light .feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

/* Text */
.section.bg-light .feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
    .section.bg-light .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section.bg-light .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}