/* ОВОЩНАЯ ТЕМА - натуральные цвета */
:root {
    --primary-green: #2e7d32;
    --light-green: #4caf50;
    --fresh-green: #81c784;
    --earth-brown: #8d6e63;
    --soil-brown: #a1887f;
    --sun-yellow: #ffb300;
    --tomato-red: #e53935;
    --carrot-orange: #f57c00;
    --bg-cream: #fffde7;
    --bg-light: #f1f8e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-green);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--sun-yellow));
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--earth-brown);
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-green), var(--light-green));
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(46, 125, 50, 0.4);
    background: linear-gradient(to right, var(--light-green), var(--fresh-green));
}

/* Хедер */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--fresh-green);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-green);
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
    color: var(--light-green);
}

.logo span {
    color: var(--primary-green);
}

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

.nav-links {
    display: flex;
    list-style: none;
    animation: nav-link-anim .2s forwards;
}

.nav-link {
    margin-left: 30px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    font-size: 1.1rem;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--light-green);
    border-radius: 2px;
}

.lang-switch {
    display: flex;
    margin-left: 30px;
    border: 2px solid var(--fresh-green);
    border-radius: 25px;
    overflow: hidden;
    background: white;
    animation: nav-link-anim .2s forwards;
}

@keyframes nav-link-anim {
    from {
        opacity: 0;
        margin-top: -5px;
    } to {
        opacity: 1;
        margin-top: 0;
    }
}

.lang-btn {
    padding: 8px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--earth-brown);
}

.lang-btn.active {
    background: var(--light-green);
    color: white;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: 20px;
    color: var(--primary-green);
}

/* Герой с овощами */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-green);
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    color: var(--earth-brown);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

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

.veg {
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.veg1 { top: 20%; left: 10%; animation-delay: 0s; }
.veg2 { top: 15%; right: 15%; animation-delay: 1s; }
.veg3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.veg4 { bottom: 30%; right: 10%; animation-delay: 3s; }
.veg5 { top: 50%; right: 25%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* О нас */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-family: 'Roboto Slab', serif;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 5px solid var(--light-green);
}

.feature i {
    font-size: 1.5rem;
    color: var(--light-green);
    margin-right: 12px;
}

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

/* Каталог */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    padding: 25px;
    text-align: center;
    position: relative;
    border: 1px solid #e8f5e9;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--sun-yellow);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 25px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
    font-family: 'Roboto Slab', serif;
}

.product-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    height: 75px;
    overflow: hidden;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #e0f2e9;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tomato-red);
}

.product-weight {
    color: var(--earth-brown);
    font-weight: 600;
    background: #f1f8e9;
    padding: 5px 15px;
    border-radius: 20px;
}

.catalog-note {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 15px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-left: 5px solid var(--light-green);
}

.catalog-note i {
    font-size: 1.8rem;
    color: var(--primary-green);
}

.catalog-note span {
    color: var(--earth-brown);
    font-size: 1.1rem;
}

/* Контакты */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--light-green);
}

.contact-card.telegram::before {
    background: #0088cc;
}

.contact-card.email::before {
    background: #ea4335;
}

.email i{
    color: #ea4335;
}

.contact-card.whatsapp::before {
    background: #25d366;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--light-green);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--light-green);
}

.telegram .contact-icon {
    color: #0088cc;
}

.whatsapp .contact-icon {
    color: #25d366;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-id {
    background: #f1f8e9;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 15px;
}

.contacts-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--fresh-green);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

.info-card h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--earth-brown);
    font-weight: 500;
}

/* Футер */
footer {
    background: var(--primary-green);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo i {
    color: #c8e6c9;
}

.footer-logo span {
    color: #ffcc80;
}

.footer-text {
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-social a {
    color: white;
    font-size: 1.8rem;
    transition: color 0.3s;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #ffcc80;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #c8e6c9;
    font-style: italic;
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .about-content {
        flex-direction: column;
    }
    .about-image {
        order: -1;
    }
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .lang-switch {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        padding: 150px 0 80px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .veg {
        font-size: 2rem;
    }
    .section {
        padding: 60px 0;
    }
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    .product-card {
        padding: 20px;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .footer-logo {
        font-size: 2rem;
    }
}