* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #111;
    line-height: 1.4;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.header {
    border-bottom: 1px solid #e0e0e0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}
.logo img {
    max-height: 50px;
    width: auto;
}
.header-phone a {
    font-weight: 600;
    text-decoration: none;
    color: #111;
    font-size: 1.2rem;
}
.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #333;
}
.nav-menu a:hover, .nav-menu a.active {
    color: #2e7d32;
}
.mobile-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}
.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}
.btn {
    background: #2e7d32;
    color: white;
}
.btn:hover {
    background: #1b5e20;
}
.btn-outline {
    background: transparent;
    border: 2px solid #2e7d32;
    color: #2e7d32;
}
.btn-outline:hover {
    background: #2e7d32;
    color: white;
}

/* HERO */
.hero {
    background: #f8f9fa;
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid #e0e0e0;
}
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.hero-slogan {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 32px;
}
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-phone {
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    border: 1px solid #ccc;
    padding: 14px 28px;
    display: inline-block;
}
.hero-phone:hover {
    border-color: #2e7d32;
}

/* ABOUT */
.about {
    padding: 60px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}
.about-contact span, .about-contact a {
    font-size: 1.2rem;
}
.about-contact a {
    font-weight: 600;
    text-decoration: none;
    color: #2e7d32;
    margin-left: 12px;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e0e0e0;
}

/* BANNERS & PRODUCTS */
.banners, .product-showcase {
    padding: 40px 0;
}
h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
    font-weight: 600;
}
.banners-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.banner-card, .product-card {
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.banner-card img, .product-card img {
    width: 100%;
    height: auto;
    display: block;
}
.banner-content {
    padding: 20px;
    background: white;
}
.banner-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2e7d32;
    display: block;
    margin-bottom: 8px;
}
.product-info {
    padding: 16px;
}
.price {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 8px 0;
}
.btn-outline {
    margin-top: 12px;
}

/* DELIVERY PAGE */
.delivery-grid, .contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 40px 0;
}
.delivery-block {
    margin: 32px 0;
}
.delivery-block ul, .service-item {
    margin-top: 16px;
    list-style: none;
}
.delivery-block li, .service-item p {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.delivery-info {
    background: #f5f5f5;
    padding: 32px;
    margin-top: 32px;
}
.delivery-info p {
    margin: 12px 0;
}

/* SERVICES */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}
.service-item {
    border: 1px solid #e0e0e0;
    padding: 32px;
}
.service-item h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* NEWS */
.news-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 32px 0;
}
.news-item time {
    font-size: 0.8rem;
    color: #2e7d32;
    font-weight: 600;
}
.news-item h2 {
    margin: 8px 0;
}

/* CONTACTS */
.contact-line {
    margin: 16px 0;
    font-weight: 500;
}
.contact-line a {
    color: #2e7d32;
    text-decoration: none;
}
.contacts-feedback {
    background: #f8f9fa;
    padding: 32px;
    border: 1px solid #e0e0e0;
}
.note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 48px 0 24px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin: 8px 0;
}
.footer-col a {
    color: #ccc;
    text-decoration: none;
}
.footer-col a:hover {
    color: #2e7d32;
}
.footer-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    display: inline-block;
    margin: 8px 0;
}
.chat-launch {
    display: inline-flex;
    gap: 10px;
    background: #2e7d32;
    padding: 8px 16px;
    margin-top: 16px;
    cursor: pointer;
    color: white;
    font-weight: 600;
}
.chat-status {
    background: #00c853;
    padding: 2px 8px;
    border-radius: 0;
    font-size: 0.7rem;
}
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* CHAT WIDGET */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: white;
    border: 1px solid #ddd;
    z-index: 1000;
    display: none;
    flex-direction: column;
}
.chat-widget.open {
    display: flex;
}
.chat-header {
    background: #111;
    color: white;
    padding: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}
.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.chat-body {
    padding: 12px;
    background: #f9f9f9;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}
.chat-message {
    background: white;
    padding: 8px 12px;
    margin: 8px 0;
    border-left: 3px solid #2e7d32;
}
.chat-input-area {
    display: flex;
    margin-top: auto;
    padding: 8px 0;
}
.chat-input-area input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
}
.chat-input-area button {
    background: #2e7d32;
    border: none;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
}
.chat-call {
    text-align: center;
    margin-top: 12px;
}
.chat-call a {
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
}

/* COOKIE NOTICE */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #eee;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    z-index: 1001;
    border-top: 1px solid #2e7d32;
}
.cookie-notice p {
    font-size: 0.8rem;
    margin: 0;
}
.cookie-notice .btn {
    background: #2e7d32;
    padding: 8px 20px;
}

/* ANIMATION LINES */
.service-card, .product-card, .banner-card, .service-item {
    position: relative;
    transition: all 0.2s;
}
.service-card:hover, .product-card:hover, .banner-card:hover, .service-item:hover {
    box-shadow: 0 0 0 2px #2e7d32 inset;
}

/* MOBILE */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        transition: 0.3s;
        border-top: 1px solid #eee;
        padding: 20px;
    }
    .nav.open {
        left: 0;
    }
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .about-grid, .delivery-grid, .contacts-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}