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

:root {
    /* Colors */
    --primary-green: #1a4d2e;
    --secondary-green: #2d5016;
    --accent-lime: #84cc16;
    --light-green: #f0fdf4;
    --dark-green: #14532d;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gold: #f59e0b;
    --gold-light: #fbbf24;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --gradient-accent: linear-gradient(135deg, var(--accent-lime), #65a30d);
    --gradient-hero: linear-gradient(135deg, var(--light-green) 0%, var(--white) 50%, #ecfccb 100%);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.wheat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Utility Classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-lime);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

.btn-primary.large,
.btn-outline.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.logo-text h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 12px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-lime);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-lime);
    color: var(--dark-green);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow);
}

.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    z-index: 999;
    gap: 1rem;
}

.nav-menu.active .nav-link {
    font-size: 1rem;
    padding: 0.5rem;
    text-align: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Ensure hamburger is clickable */
.hamburger {
    z-index: 1000;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(132, 204, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 77, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(132, 204, 22, 0.05) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wheat-grain {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-lime);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.grain-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.grain-2 {
    top: 60%;
    left: 85%;
    animation-delay: 2s;
}

.grain-3 {
    top: 80%;
    left: 15%;
    animation-delay: 4s;
}

.grain-4 {
    top: 30%;
    left: 90%;
    animation-delay: 1s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    space-y: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(132, 204, 22, 0.1);
    color: var(--secondary-green);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(132, 204, 22, 0.2);
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--gold);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 1.5rem 0;
}

.title-main {
    display: block;
    color: var(--primary-green);
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-lime);
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--secondary-green);
    line-height: 1.6;
    margin: 1.5rem 0;
}

.hero-tagline em {
    color: var(--accent-lime);
    font-style: normal;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-green);
    font-weight: 500;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-showcase {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.product-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

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

.product-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.2) 0%, transparent 70%);
    animation: glow 4s ease-in-out infinite alternate;
    pointer-events: none;
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quality-badge,
.fresh-badge {
    position: absolute;
    background: var(--white);
    color: var(--primary-green);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.quality-badge {
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--white);
    animation-delay: 0s;
}

.fresh-badge {
    bottom: 20px;
    left: -20px;
    background: var(--accent-lime);
    color: var(--dark-green);
    animation-delay: 1.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.scroll-arrow:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Products Section */
.products {
    padding: 1rem 0;
    background: var(--white);
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: static;
    top: 100px;
}

.gallery-main {
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--white);
    transition: opacity var(--transition-normal);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-main:hover .image-overlay {
    opacity: 1;
}

.zoom-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.zoom-btn:hover {
    transform: scale(1.1);
}

.image-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(26, 77, 46, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail {
    min-width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-normal);
    background: var(--white);
    box-shadow: var(--shadow);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent-lime);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.product-info {
    space-y: 2rem;
}

.product-title {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.5rem;
}

.product-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--gold);
}

.product-rating span {
    color: var(--gray-600);
    font-weight: 500;
}

.product-features h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    space-y: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.features-list i {
    color: var(--accent-lime);
    font-size: 1.125rem;
}

.product-cta {
    background: var(--light-green);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(132, 204, 22, 0.2);
}

.cta-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Items Section */
.items {
    padding: 6rem 0;
    background: var(--white);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.item-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.item-content {
    padding: 1.5rem;
}

.item-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.item-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.item-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--accent-lime);
    color: var(--dark-green);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Quality Section */
.quality {
    padding: 6rem 0;
    background: var(--gray-50);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.quality-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

.quality-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quality-content-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.quality-content-text p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

.quality-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.quality-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-container:hover .quality-img {
    transform: scale(1.05);
}

.image-overlay-quality {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 77, 46, 0.8), rgba(132, 204, 22, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.image-container:hover .image-overlay-quality {
    opacity: 1;
}

.overlay-content {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-number-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-fresh-label {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-stack {
    position: relative;
}

.stack-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.stack-img-1 {
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-green);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(132, 204, 22, 0.2);
}

.stat-box .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1.25rem;
}

.stat-info .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-info .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-card.full-width {
    grid-column: 1 / -1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color var(--transition-normal);
}

.contact-link-email {
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color var(--transition-normal);
}

.contact-link-site {
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color var(--transition-normal);
}

.contact-link:hover {
    color: var(--primary-green);
}

.contact-link-email:hover {
    color: var(--primary-green);
}

.contact-link-site:hover {
    color: var(--primary-green);
}

.contact-details p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-address {
    color: var(--gray-600);
    font-style: normal;
    line-height: 1.6;
}

.contact-cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card-main {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.cta-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--accent-lime);
}

.cta-buttons-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons-main .btn-primary {
    background: var(--accent-lime);
    color: var(--dark-green);
}

.cta-buttons-main .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.trust-item i {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    space-y: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: var(--accent-lime);
    color: var(--primary-green);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-logo span {
    font-size: 0.75rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-lime);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-lime);
}

.footer-section ul {
    list-style: none;
    space-y: 0.5rem;
}

.footer-section li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section a:hover {
    color: var(--accent-lime);
}

.footer-section i {
    color: var(--accent-lime);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom-content p {
    margin-bottom: 0.25rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    background: transparent;
    display: flex;
    justify-content: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.modal-body {
    padding: 1.5rem;
}

.nutrition-table {
    space-y: 0.75rem;
}

.nutrition-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.nutrition-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    background: var(--light-green);
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrient {
    font-weight: 500;
    color: var(--gray-700);
}

.value {
    font-weight: 600;
    color: var(--primary-green);
}

.nutrition-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-lime);
}

.nutrition-note p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.modal-image {
    width: 650px;
    height: 800px;
    border-radius: var(--radius-lg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-up:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-fade-up:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade-up:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-fade-up:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-fade-up:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInLeft 0.8s ease 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-container,
    .product-showcase-grid,
    .quality-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-sub {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products {
        padding: 1rem 0;
        ;
    }

    .modal-image {
        max-height: 600px;
        max-width: 600px;
    }

    .image-modal-content {
        max-width: 95vw;
        padding: 0.5rem;
    }

    /* .items-grid {
        grid-template-columns: 1fr;
    } */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.75rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .thumbnail {
        min-width: 80px;
        height: 80px;
    }

    .items {
        padding: 4rem 0;
    }

    .items-grid {
        gap: 1.5rem;
    }

    .item-card {
        padding: 1rem;
    }

    .item-image {
        height: 200px;
    }

    .item-content h3 {
        font-size: 1.25rem;
    }

    .item-content p {
        font-size: 0.875rem;
    }

    .item-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .quality-grid {
        gap: 1rem;
    }

    .about-stats {
        gap: 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons-main {
        gap: 0.75rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .modal-image {
        max-height: 550px;
        max-width: 550px;
    }

    .image-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 0.25rem;
    }

    #image-modal .modal-close {
        top: -40px;
        right: -10px;
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .product-info,
    .quality-card,
    .contact-card,
    .cta-card-main {
        padding: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-image {
        max-height: 400px;
        max-width: 350px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .scroll-indicator,
    .back-to-top,
    .modal {
        display: none !important;
    }

    .hero {
        padding: 2rem 0;
    }

    * {
        box-shadow: none !important;
    }
}

@media (max-width: 375px) {

    /* General Adjustments */
    .section-container {
        padding: 0 0.75rem;
    }

    /* Typography */
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.875rem;
    }

    /* Navigation */
    .nav-container {
        height: 60px;
        padding: 0 1rem;
    }

    .nav-logo img {
        width: 80px;
    }

    .hamburger {
        gap: 0.2rem;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .title-sub {
        font-size: 1.25rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        font-size: 0.875rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-image {
        max-width: 100%;
    }

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

    .main-product-img {
        max-height: 300px;
        object-fit: contain;
    }

    .quality-badge,
    .fresh-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    /* Products Section */
    .products {
        padding: 1rem 0;
    }

    .product-showcase-grid {
        gap: 2rem;
    }

    .product-gallery {
        position: static;
        top: 0;
    }

    .gallery-image {
        height: 300px;
    }

    .gallery-thumbnails {
        gap: 0.5rem;
    }

    .thumbnail {
        min-width: 60px;
        height: 60px;
    }

    .image-counter {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .zoom-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .product-title h3 {
        font-size: 1.5rem;
    }

    .product-rating span {
        font-size: 0.875rem;
    }

    .product-features h4 {
        font-size: 1.125rem;
    }

    .features-list li {
        font-size: 0.875rem;
    }

    .product-cta {
        padding: 1.25rem;
    }

    .cta-text h4 {
        font-size: 1.25rem;
    }

    .cta-text p {
        font-size: 0.875rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .item-image {
        height: 160px;
    }

    .item-content h3 {
        font-size: 1rem;
    }

    .item-content p {
        font-size: 0.75rem;
    }

    .feature-tag {
        font-size: 0.6875rem;
        padding: 0.2rem 0.4rem;
    }

    .modal-image {
        max-height: 350px;
        max-width: 300px;
    }

    /* Quality Section */
    .quality {
        padding: 3rem 0;
    }

    .quality-content {
        gap: 2rem;
    }

    .quality-description {
        font-size: 0.875rem;
    }

    .quality-card {
        padding: 1rem;
    }

    .quality-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .quality-content-text h4 {
        font-size: 1rem;
    }

    .quality-content-text p {
        font-size: 0.75rem;
    }

    .quality-img {
        height: 300px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-number-text {
        font-size: 1.2rem;
    }

    .stat-fresh-label {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* About Section */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        gap: 2rem;
    }

    .about-description {
        font-size: 0.875rem;
    }

    .about-stats {
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-info .stat-number {
        font-size: 1.25rem;
    }

    .stat-info .stat-label {
        font-size: 0.75rem;
    }

    /* Contact Section */
    .contact {
        padding: 3rem 0;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 0.875rem;
    }
    
    .contact-link-email {
        font-size: 0.875rem;
    }
    
    .contact-link-site {
        font-size: 0.875rem;
    }

    .contact-details p {
        font-size: 0.75rem;
    }

    .contact-address {
        font-size: 0.75rem;
    }

    .cta-card-main {
        padding: 1.5rem;
    }

    .cta-header h3 {
        font-size: 1.5rem;
    }

    .cta-header p {
        font-size: 0.875rem;
    }

    .cta-features {
        gap: 0.75rem;
    }

    .cta-feature {
        font-size: 0.75rem;
    }

    .cta-buttons-main {
        gap: 0.75rem;
    }

    .btn-primary.large,
    .btn-outline.large {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo img {
        width: 80px;
    }

    .footer-tagline {
        font-size: 0.875rem;
    }

    .footer-social {
        gap: 0.5rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section li {
        font-size: 0.75rem;
    }

    .footer-bottom-content {
        font-size: 0.75rem;
    }

    /* Modals */
    .modal-content {
        width: 90%;
        margin: 0.5rem;
        max-height: 75vh;
    }

    .modal-header h3 {
        font-size: 1.25rem;
    }

    .modal-close {
        width: 32px;
        height: 32px;
    }

    .nutrition-header h4 {
        font-size: 1rem;
    }

    .nutrition-row {
        font-size: 0.75rem;
    }

    .nutrition-note p {
        font-size: 0.75rem;
    }

    /* Back to Top Button */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 0.75rem;
        right: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Media Query for max-width: 430px */
@media (min-width: 376px) and (max-width: 430px) {

    /* General Adjustments */
    .section-container {
        padding: 0 1rem;
    }

    /* Typography */
    .section-header h2 {
        font-size: 1.625rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

    /* Navigation */
    .nav-container {
        height: 64px;
        padding: 0 1rem;
    }

    .nav-logo img {
        width: 90px;
    }

    .nav-menu.active {
        padding: 1rem;
        gap: 0.875rem;
    }

    .nav-menu.active .nav-link {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }

    .hamburger {
        gap: 0.25rem;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4.5px, 4.5px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6.5px, -6.5px);
    }

    /* Hero Section */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 1.375rem;
    }

    .hero-tagline {
        font-size: 1.0625rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin: 1.75rem 0;
    }

    .feature-item {
        font-size: 0.9375rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.8125rem 1.375rem;
        font-size: 0.9375rem;
    }

    .hero-image {
        max-width: 100%;
    }

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

    .main-product-img {
        max-height: 320px;
        object-fit: contain;
    }

    .quality-badge,
    .fresh-badge {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }

    .scroll-indicator {
        bottom: 1.25rem;
    }

    .scroll-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }

    /* Products Section */
    .products {
        padding: 1rem 0;
    }

    .product-showcase-grid {
        gap: 2.5rem;
    }

    .product-gallery {
        position: static;
        top: 0;
    }

    .gallery-image {
        height: 320px;
    }

    .gallery-thumbnails {
        gap: 0.75rem;
    }

    .thumbnail {
        min-width: 70px;
        height: 70px;
    }

    .image-counter {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }

    .zoom-btn {
        width: 52px;
        height: 52px;
        font-size: 1.375rem;
    }

    .product-title h3 {
        font-size: 1.75rem;
    }

    .product-rating span {
        font-size: 0.9375rem;
    }

    .product-features h4 {
        font-size: 1.1875rem;
    }

    .features-list li {
        font-size: 0.9375rem;
    }

    .product-cta {
        padding: 1.5rem;
    }

    .cta-text h4 {
        font-size: 1.375rem;
    }

    .cta-text p {
        font-size: 0.9375rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .items {
        padding: 3rem 0;
    }

    .item-image {
        height: 180px;
    }

    .item-content h3 {
        font-size: 1.125rem;
    }

    .item-content p {
        font-size: 0.8125rem;
    }

    .item-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }

    /* Quality Section */
    .quality {
        padding: 4rem 0;
    }

    .quality-content {
        gap: 2.5rem;
    }

    .quality-description {
        font-size: 0.9375rem;
    }

    .quality-card {
        padding: 1.25rem;
    }

    .quality-icon {
        width: 52px;
        height: 52px;
        font-size: 1.375rem;
    }

    .quality-content-text h4 {
        font-size: 1.0625rem;
    }

    .quality-content-text p {
        font-size: 0.8125rem;
    }

    .quality-img {
        height: 320px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-number-text {
        font-size: 1.4rem;
    }

    .stat-fresh-label {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    /* About Section */
    .about {
        padding: 4rem 0;
    }

    .about-content {
        gap: 2.5rem;
    }

    .about-description {
        font-size: 0.9375rem;
    }

    .about-stats {
        gap: 1.25rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .stat-info .stat-number {
        font-size: 1.375rem;
    }

    .stat-info .stat-label {
        font-size: 0.8125rem;
    }

    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }

    .contact-grid {
        gap: 2.5rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .contact-details h4 {
        font-size: 1.0625rem;
    }

    .contact-link {
        font-size: 0.9375rem;
    }
    
    .contact-link-email {
        font-size: 0.9375rem;
    }
    
    .contact-link-site {
        font-size: 0.9375rem;
    }

    .contact-details p {
        font-size: 0.8125rem;
    }

    .contact-address {
        font-size: 0.8125rem;
    }

    .cta-card-main {
        padding: 1.75rem;
    }

    .cta-header h3 {
        font-size: 1.625rem;
    }

    .cta-header p {
        font-size: 0.9375rem;
    }

    .cta-features {
        gap: 0.875rem;
    }

    .cta-feature {
        font-size: 0.8125rem;
    }

    .cta-buttons-main {
        gap: 0.875rem;
    }

    .btn-primary.large,
    .btn-outline.large {
        padding: 0.8125rem 1.375rem;
        font-size: 0.9375rem;
    }

    .trust-indicators {
        gap: 1.25rem;
    }

    .trust-item {
        font-size: 0.8125rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.75rem;
    }

    .footer-logo img {
        width: 90px;
    }

    .footer-tagline {
        font-size: 0.9375rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }

    .footer-section h4 {
        font-size: 1.0625rem;
    }

    .footer-section li {
        font-size: 0.8125rem;
    }

    .footer-bottom-content {
        font-size: 0.8125rem;
    }

    /* Modals */
    .modal-content {
        width: 92%;
        margin: 0.75rem;
        max-height: 78vh;
    }

    .modal-header h3 {
        font-size: 1.375rem;
    }

    .modal-close {
        width: 36px;
        height: 36px;
    }

    .nutrition-header h4 {
        font-size: 1.0625rem;
    }

    .nutrition-row {
        font-size: 0.8125rem;
    }

    .nutrition-note p {
        font-size: 0.8125rem;
    }

    /* Back to Top Button */
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9375rem;
    }
}

/* Phone/WhatsApp Button Toggle */
.whatsapp-btn {
    display: none !important;
}

@media (min-width: 769px) {

    .cta-phone,
    .btn-primary,
    .contact-link,
    .btn-primary .large {
        display: none !important;
    }

    .whatsapp-btn {
        display: inline-flex !important;
    }
}