@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5c8a6f;
    --primary-dark: #3d6b52;
    --secondary: #d4a574;
    --accent: #8fb3a0;
    --bg-light: #f9f7f4;
    --bg-cream: #faf8f5;
    --text-dark: #2d3a35;
    --text-muted: #6b7b74;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(92, 138, 111, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    gap: 5px;
    transition: background 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 70px 24px 24px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.15;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(92, 138, 111, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-visual {
    position: relative;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px 8px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

section {
    padding: 60px 0;
}

.section-header {
    position: static;
    z-index: auto;
    background: transparent;
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-preview {
    background: var(--bg-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -12px;
    right: 12px;
    background: var(--secondary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    text-align: center;
}

.about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}

.about-badge-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.about-features {
    margin: 20px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.about-features i {
    color: var(--primary);
    font-size: 14px;
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-img {
    height: 180px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img i {
    font-size: 48px;
    color: var(--white);
    opacity: 0.8;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    padding: 8px 16px;
    font-size: 12px;
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials .section-tag {
    color: var(--secondary);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 11px;
    opacity: 0.8;
}

.cta-section {
    background: var(--bg-cream);
    text-align: center;
}

.cta-box {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 24px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.footer-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 100px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

.content-section {
    padding: 50px 0;
}

.content-section.alt {
    background: var(--white);
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h2 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.text-content h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.text-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.text-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.text-content li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    list-style: disc;
}

.contact-section {
    background: var(--bg-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-info-box {
    background: var(--primary);
    color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
}

.contact-info-box h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-info-box > p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 12px;
    opacity: 0.85;
}

.contact-form-box {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(92, 138, 111, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 16px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.success-page,
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
    height: 100vh;
}

.success-content,
.error-content {
    max-width: 480px;
    margin: 0 auto;
}

.success-icon,
.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.success-icon {
    background: rgba(92, 138, 111, 0.1);
    color: var(--primary);
}

.error-icon {
    background: rgba(212, 165, 116, 0.1);
    color: var(--secondary);
}

.success-content h1,
.error-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.success-content p,
.error-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cookie-popup {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 12px;
}

.pantry-intro {
    background: var(--white);
}

.pantry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.pantry-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.pantry-text h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pantry-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pantry-steps {
    background: var(--bg-cream);
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 12px;
    color: var(--text-muted);
}

.pantry-tips {
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.tip-card {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.tip-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
}

.tip-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.about-story {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.story-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.story-text h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.story-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.values-section {
    background: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(92, 138, 111, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
}

.value-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.team-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.team-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
}

.team-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 11px;
    color: var(--text-muted);
}

.policy-content {
    padding: 50px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 20px;
    margin: 28px 0 12px;
    color: var(--text-dark);
}

.policy-text h3 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.policy-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-text li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.6;
}

.policy-meta {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: var(--text-muted);
}

@media (min-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-desc {
        margin-left: 0;
    }
    
    .hero-btns {
        justify-content: flex-start;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-container {
        height: 350px;
    }
    
    .cookie-popup {
        left: 24px;
        right: auto;
        max-width: 380px;
    }
    
    .pantry-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .cookie-btns {
        flex-direction: column;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
