/* ============================================
   ЦВЕТИ — Премиальный минимализм
   Тёмно-зелёный + молочный + серый + нежно-розовый
   ============================================ */

:root {
    /* Основная палитра */
    --dark-green: #2D4A3E;
    --milk: #FDF8F3;
    --light-gray: #F0EDE8;
    --soft-pink: #F5EAE6;
    --dark: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --border: #E8E3DD;

    /* Дополнительные */
    --shadow: rgba(45, 74, 62, 0.08);
    --shadow-hover: rgba(45, 74, 62, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
    background-color: var(--milk);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--dark-green);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ============================================
   КНОПКИ
   ============================================ */

.btn-primary {
    color: var(--white);
    border: 2px solid white;
    padding: 14px 40px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.3px;
    display: inline-block;
}

.btn-primary-mission {
    color: var(--dark-green);
    border: 2px solid white;
    padding: 14px 40px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.3px;
    display: inline-block;
    max-width: fit-content;
}

.btn-primary-mission:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 74, 62, 0.2);
    color: #2D4A3E;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 74, 62, 0.2);
    color: #2D4A3E;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--dark-green);
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    display: inline-block;
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    display: inline-block;
}

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

/* ============================================
   ШАПКА
   ============================================ */

.header {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.logo h1 {
    font-size: 32px;
    color: var(--dark-green);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-green);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--dark-green);
}

.nav a:hover::after {
    width: 100%;
}

/* Бургер-меню */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

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

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

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

/* ============================================
   ГЕРОЙ (ГЛАВНЫЙ ЭКРАН)
   ============================================ */

.hero {
    padding: 120px 0 100px;
    background: url(hero_.jpg) center/cover no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-select-name {
    font-weight: 100;
    font-size: 30px;
    color: white;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.hero-content {
    display: grid;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.hero-badge {
    display: inline-block;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 30px;
    font-family: 'Manrope', sans-serif;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.03em;
    font-weight: 300;
}

.hero h1 span {
    color: var(--white);
    font-size: 30px;
}

.hero-description {
    font-size: 30px;
    color: var(--white);
    line-height: 1.8;
    max-width: 650px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
    align-items: center;
    justify-content: center;
}

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

.hero-placeholder {
    font-size: 120px;
    text-align: center;
    background: var(--soft-pink);
    padding: 50px;
    border-radius: 30px;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   О НАС
   ============================================ */

.about {
    background: var(--milk);
    width: 100%;
}

.about-content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #2C2C2C;
    transition: all 0.5s ease;
}

.about-content:hover {
    transform: scale(1.1);
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.feature span:first-child {
    font-size: 36px;
}

.feature span:last-child {
    font-size: 14px;
    color: var(--dark-green);
    font-weight: 500;
}

/* ============================================
   СЕКЦИИ (ОБЩИЕ)
   ============================================ */

.section {
    padding: 90px 0;
    width: 100%;
}

.section-label {
    display: inline-block;
    color: var(--dark-green);
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    font-size: 40px;
    color: var(--dark-green);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   КАТАЛОГ
   ============================================ */

.catalog {
    background: var(--white);
    width: 100%;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: transparent;
}

/* ===== ФОТО В КАРТОЧКЕ ТОВАРА ===== */
.product-image {
    height: 280px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-emoji {
    font-size: 72px;
    line-height: 1;
    user-select: none;
}

.badge-new,
.badge-hit {
    position: absolute;
    top: 14px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-new {
    left: 14px;
    background: var(--dark-green);
    color: var(--white);
}

.badge-hit {
    right: 14px;
    background: var(--soft-pink);
    color: var(--dark-green);
}

.product-info {
    padding: 22px 24px 24px;
}

.product-name {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-green);
}

.btn-order {
    padding: 8px 24px;
    font-size: 13px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.btn-order:hover {
    background: #3A5F4F;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(45, 74, 62, 0.2);
}

/* Фильтры */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    width: 100%;
}

.filter-btn {
    padding: 8px 24px;
    border: 1.5px solid var(--border);
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
}

.filter-btn:hover {
    border-color: var(--dark-green);
    color: var(--dark-green);
}

.filter-btn.active {
    background: var(--dark-green);
    color: var(--white);
    border-color: var(--dark-green);
}

/* ============================================
   НАША МИССИЯ
   ============================================ */

.container-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 10px;
}

.mission-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mission-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mission-img img:hover {
    transform: scale(1.02);
}

.text-mission {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 10px;
}

.text-mission .section-label {
    display: inline-block;
    color: var(--dark-green);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.text-mission h2 {
    font-size: 40px;
    color: var(--dark-green);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.text-mission p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.text-mission p:last-of-type {
    margin-bottom: 0;
}

.text-mission .btn-primary-mission {
    margin-top: 10px;
    align-self: flex-start;
}

/* ============================================
   КАК ОФОРМИТЬ ЗАКАЗ
   ============================================ */

.how-to {
    background: var(--milk);
    width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--dark-green);
    color: var(--white);
    border-radius: 50%;
    line-height: 48px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.step-item h4 {
    font-size: 17px;
    color: var(--dark-green);
    margin-bottom: 6px;
}

.step-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   ОПЛАТА И ДОСТАВКА
   ============================================ */

.delivery-payment {
    background: var(--white);
    width: 100%;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.delivery-block,
.payment-block {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.delivery-block h3,
.payment-block h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.delivery-block ul,
.payment-block ul {
    list-style: none;
    padding: 0;
}

.delivery-block li,
.payment-block li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.delivery-block li:last-child,
.payment-block li:last-child {
    border-bottom: none;
}

.delivery-block li .icon,
.payment-block li .icon {
    font-size: 20px;
    width: 28px;
}

/* ============================================
   КОНТАКТЫ
   ============================================ */

.contact {
    position: relative;
    background: url(./images/contact-bg.jpg) center/cover no-repeat;
    justify-content: center;
    display: flex;
    height: 600px;
    width: 100%;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 74, 62, 0.35);
}

.contact-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.contact-text {
    text-align: center;
}

.contact-text h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
}

.contact-text p {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.button-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.button-contact a {
    padding: 20px;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 20px;
    color: #ffffff;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.7s ease;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.button-contact a:hover {
    transform: scale(1.05);
    color: #2D4A3E;
    background: #ffffff;
}

/* ============================================
   ПОДВАЛ
   ============================================ */

.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 50px 0 24px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.footer-brand h3 {
    font-size: 22px;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 4px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 24px 0;
    width: 100%;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom .footer-links {
    display: flex;
    gap: 24px;
}

/* ============================================
   ЗАГРУЗКА / ПУСТО
   ============================================ */

.loading-text,
.empty-message {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 16px;
}

/* ============================================
   МОДАЛЬНОЕ ОКНО ЗАКАЗА
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark);
}

.modal h2 {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 6px;
}

.modal .form-group {
    margin-bottom: 16px;
}

.modal .form-group label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
}

.modal .form-group input,
.modal .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: border-color 0.3s ease;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: var(--dark-green);
}

.modal .form-actions {
    margin-top: 20px;
}

.modal .form-consent {
    margin-top: 8px;
}

.modal .consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 400;
}

.modal .consent-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--dark-green);
}

.modal .consent-label a {
    color: var(--dark-green);
    text-decoration: underline;
}

.modal .consent-label a:hover {
    text-decoration: none;
}

/* ============================================
   АДАПТИВНОСТЬ ДЛЯ ПЛАНШЕТОВ (768-1024PX)
   ============================================ */

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container-mission {
        gap: 30px;
        padding: 30px;
    }

    .mission-img img {
        height: 350px;
    }

    .contact {
        height: 450px;
    }

    .hero-content {
        gap: 40px;
    }
}

/* ============================================
   АДАПТИВНОСТЬ ДЛЯ ТЕЛЕФОНОВ (ДО 768PX)
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
    }

    .section-label {
        font-size: 16px;
        letter-spacing: 2px;
        text-align: center;
        display: block;
    }

    /* ===== ШАПКА ===== */
    .header {
        padding: 12px 0;
    }

    .header-content {
        padding: 0 16px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 30px var(--shadow);
        text-align: center;
        width: 100%;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 16px;
        padding: 6px 0;
    }

    .burger {
        display: flex;
    }

    /* ===== ГЕРОЙ ===== */
    .hero {
        padding: 60px 0 50px;
        min-height: auto;
        background: url(hero_.jpg) center/cover no-repeat;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 0 16px;
    }

    .hero-text {
        padding: 0;
        gap: 12px;
    }

    .hero-badge {
        font-size: 18px;
        letter-spacing: 2px;
        text-align: center;
        display: block;
    }

    .hero h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
        margin: 0 auto;
    }

    .hero-image {
        display: none;
    }

    /* ===== О НАС ===== */
    .about-content {
        padding: 16px;
        margin: 0 10px;
    }

    .about-content:hover {
        transform: scale(1.02);
    }

    .about-text p {
        font-size: 15px;
        text-align: center;
    }

    .about-features {
        gap: 20px;
        justify-content: center;
    }

    .feature span:first-child {
        font-size: 28px;
    }

    .feature span:last-child {
        font-size: 13px;
    }

    /* ===== КАТАЛОГ ===== */
    .catalog {
        padding: 50px 0;
    }

    .catalog-filters {
        gap: 8px;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 12px;
    }

    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-image {
        height: 180px;
    }

    .product-emoji {
        font-size: 44px;
    }

    .product-info {
        padding: 14px 14px 16px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .product-price {
        font-size: 16px;
    }

    .btn-order {
        padding: 6px 14px;
        font-size: 12px;
    }

    .badge-new,
    .badge-hit {
        font-size: 9px;
        padding: 2px 10px;
        top: 10px;
    }

    .badge-new {
        left: 10px;
    }

    .badge-hit {
        right: 10px;
    }

    /* ===== МИССИЯ ===== */
    .container-mission {
        gap: 10px;
        display: grid;
        grid-template-columns: 1fr;
        padding: 0;
        margin: 0 10px;
        overflow: hidden;
        background: var(--light-gray);
    }

    .mission-img {
        width: 100%;
        height: auto;
        border-radius: 0;
        overflow: hidden;
    }

    .mission-img img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
        border-radius: 0;
    }

    .text-mission {
        padding: 24px 20px 30px;
        text-align: center;
        gap: 12px;
    }

    .text-mission .section-label {
        font-size: 12px;
        letter-spacing: 3px;
        text-align: center;
        display: block;
    }

    .text-mission h2 {
        font-size: 28px;
        text-align: center;
    }

    .text-mission p {
        font-size: 15px;
        text-align: center;
    }

    .text-mission .btn-primary-mission {
        align-self: center;
        padding: 12px 28px;
        font-size: 16px;
        margin: 0 auto;
    }

    /* ===== КАК ЗАКАЗАТЬ ===== */
    .how-to {
        padding: 50px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .step-item {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .step-item h4 {
        font-size: 15px;
    }

    .step-item p {
        font-size: 13px;
    }

    /* ===== ОПЛАТА И ДОСТАВКА ===== */
    .delivery-payment {
        padding: 50px 0;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .delivery-block,
    .payment-block {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .delivery-block h3,
    .payment-block h3 {
        font-size: 20px;
        text-align: center;
    }

    .delivery-block li,
    .payment-block li {
        font-size: 14px;
        padding: 6px 0;
        gap: 10px;
    }

    /* ===== КОНТАКТЫ ===== */
    .contact {
        height: auto;
        min-height: 400px;
        padding: 40px 16px;
        background-position: center;
    }

    .contact-info {
        padding: 0;
        gap: 16px;
    }

    .contact-text h1 {
        font-size: 32px;
        text-align: center;
    }

    .contact-text p {
        font-size: 18px;
        text-align: center;
    }

    .button-contact {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 20px;
    }

    .button-contact a {
        padding: 14px 32px;
        font-size: 18px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* ===== МОДАЛЬНОЕ ОКНО ===== */
    .modal {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 0 10px;
    }

    .modal h2 {
        font-size: 22px;
    }

    .modal .form-group {
        margin-bottom: 12px;
    }

    .modal .form-group label {
        font-size: 13px;
    }

    .modal .form-group input,
    .modal .form-group textarea {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* ===== ПОДВАЛ ===== */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding: 0 16px;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-col a {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 20px 16px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-bottom .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   АДАПТИВНОСТЬ ДЛЯ ОЧЕНЬ МАЛЕНЬКИХ ЭКРАНОВ (ДО 480PX)
   ============================================ */

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

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* ===== ГЕРОЙ ===== */
    .hero h1 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 240px;
    }

    /* ===== КАТАЛОГ ===== */
    .catalog-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        padding: 0 12px;
    }

    .product-image {
        height: 200px;
    }

    .product-emoji {
        font-size: 52px;
    }

    .filter-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

    /* ===== МИССИЯ ===== */
    .mission-img img {
        height: 180px;
    }

    .text-mission h2 {
        font-size: 24px;
    }

    .text-mission p {
        font-size: 14px;
    }

    .text-mission .btn-primary-mission {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* ===== КАК ЗАКАЗАТЬ ===== */
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
        padding: 0 12px;
    }

    /* ===== КОНТАКТЫ ===== */
    .contact-text h1 {
        font-size: 28px;
    }

    .contact-text p {
        font-size: 16px;
    }

    .button-contact a {
        font-size: 16px;
        padding: 12px 24px;
        max-width: 240px;
    }

    /* ===== МОДАЛЬНОЕ ОКНО ===== */
    .modal {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .modal h2 {
        font-size: 20px;
    }

    .modal .form-group input,
    .modal .form-group textarea {
        font-size: 13px;
        padding: 8px 10px;
    }
}
/* ============================================
   КАК МЫ СОЗДАЕМ ВАШ БУКЕТ
   ============================================ */

.how-we-create {
    background: var(--milk);
    padding: 80px 0;
}

.create-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.create-step {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
}

.create-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--dark-green);
}

.create-step .step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--dark-green);
    color: var(--white);
    border-radius: 50%;
    line-height: 32px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.create-step .step-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.create-step h3 {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.create-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.create-note {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    border-left: 4px solid var(--dark-green);
    margin-top: 10px;
}

.create-note p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ===== АДАПТИВНОСТЬ ===== */

@media (max-width: 1024px) {
    .create-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-we-create {
        padding: 50px 0;
    }

    .create-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .create-step {
        padding: 24px 20px;
    }

    .create-note {
        padding: 20px 24px;
    }

    .create-note p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .create-step .step-icon {
        font-size: 32px;
    }

    .create-step h3 {
        font-size: 16px;
    }

    .create-step p {
        font-size: 13px;
    }
}