* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background-color: #f5f0eb;
}

/* ===== HEADER ===== */
header {
    background-color: #3e2723;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

header h1 span {
    color: #ffab40;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.3s;
}

.header-phone a:hover {
    color: #ffab40;
}

.header-phone .phone-label {
    font-size: 0.8rem;
    color: #bbb;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(40, 20, 10, 0.65), rgba(40, 20, 10, 0.65)),
                url('https://images.unsplash.com/photo-1501004318855-e9cd20a49e70?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== SECTIONS COMMON ===== */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3e2723;
}

section .subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
    font-size: 1.05rem;
}




/* ===== HERO2222222 ===== */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1501004318855-e9cd20a49e70?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

/* Градиентный оверлей с глубиной */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(62, 39, 35, 0.4) 0%, transparent 70%),
        linear-gradient(180deg,
            rgba(20, 10, 5, 0.75) 0%,
            rgba(40, 20, 10, 0.6) 50%,
            rgba(20, 10, 5, 0.85) 100%);
    z-index: 1;
}

/* Контент поверх оверлея */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px 90px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeUp 1s ease-out;
}

/* Анимация появления */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Бейдж сверху */
.hero-badge {
    display: inline-block;
    background: rgba(255, 171, 64, 0.15);
    border: 1px solid rgba(255, 171, 64, 0.4);
    backdrop-filter: blur(6px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    color: #ffcc80;
}

/* Заголовок */
.hero h2 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h2 .highlight {
    color: #ffab40;
    position: relative;
}

.hero h2 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #ffab40;
    border-radius: 2px;
    opacity: 0.6;
}

/* Подзаголовок */
.hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 16px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Строка доставки */
.hero .hero-delivery {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 45px;
    opacity: 0.7;
    line-height: 1.7;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===== Карточки преимуществ (glassmorphism) ===== */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 14px;
    transition: transform 0.3s, background 0.3s;
}

.hero-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 171, 64, 0.12);
    border-color: rgba(255, 171, 64, 0.3);
}

.hero-feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 171, 64, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.hero-feature-text {
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-feature-text span {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 2px;
}

/* ===== Кнопка-телефон с пульсацией ===== */
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffab40, #ff8f00);
    color: #3e2723;
    padding: 18px 44px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow:
        0 4px 15px rgba(255, 171, 64, 0.4),
        0 0 0 0 rgba(255, 171, 64, 0.5);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow:
            0 4px 15px rgba(255, 171, 64, 0.4),
            0 0 0 0 rgba(255, 171, 64, 0.5);
    }
    70% {
        box-shadow:
            0 4px 15px rgba(255, 171, 64, 0.4),
            0 0 0 20px rgba(255, 171, 64, 0);
    }
    100% {
        box-shadow:
            0 4px 15px rgba(255, 171, 64, 0.4),
            0 0 0 0 rgba(255, 171, 64, 0);
    }
}

.hero-phone:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(255, 171, 64, 0.5);
    animation: none;
}

.hero-phone-icon {
    font-size: 1.3rem;
}

/* Подпись под кнопкой */
.hero-cta-label {
    margin-top: 16px;
    font-size: 0.95rem;
    opacity: 0.5;
    letter-spacing: 0.3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 16px 70px;
    }

    .hero h2 {
        font-size: 1.9rem;
    }

    .hero h2 br {
        display: none;
    }

    .hero .hero-subtitle {
        font-size: 1rem;
    }

    .hero .hero-subtitle br,
    .hero .hero-delivery br {
        display: none;
    }

    .hero .hero-delivery {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .hero-features {
        gap: 12px;
    }

    .hero-feature {
        padding: 12px 16px;
        flex: 1 1 100%;
        max-width: 320px;
    }

    .hero-phone {
        font-size: 1.2rem;
        padding: 15px 32px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
}




/* ===== ТОВАРЫ ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Второй ряд товаров */
.products-grid--second {
    margin-top: 30px;
}



/* ===== Картинки в карточках товаров ===== */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-card .info {
    padding: 20px;
}

.product-card .info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #3e2723;
}

.product-card .info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e65100;
}

.product-card .unit {
    font-size: 0.85rem;
    color: #999;
    font-weight: normal;
}






/* ===== FOOTER ===== */
footer {
    background-color: #3e2723;
    color: #aaa;
    text-align: center;
    padding: 25px 20px;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        gap: 12px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .about-phone .phone-link {
        font-size: 1.5rem;
    }
}





















/* ===== О КОМПАНИИ ===== */
#about {
    background: linear-gradient(180deg, #ffffff 0%, #faf6f2 100%);
    max-width: 100%;
    padding: 80px 0;
}

#about .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок с линией */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ffab40, #e65100);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.about-header h2 {
    font-size: 2rem;
    color: #3e2723;
    margin-bottom: 10px;
}

.about-header .subtitle {
    color: #888;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Верхний блок: текст + телефон */
.about-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}

.about-text {
    flex: 1 1 500px;
}

.about-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Телефонный блок */
.about-phone {
    flex: 1 1 280px;
    max-width: 340px;
    background: linear-gradient(135deg, #3e2723, #5d4037);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.25);
    position: relative;
    overflow: hidden;
}

.about-phone::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 171, 64, 0.1);
    border-radius: 50%;
}

.about-phone .phone-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.about-phone h3 {
    font-size: 1.15rem;
    color: #ffab40;
    margin-bottom: 12px;
}

.about-phone .phone-link {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.about-phone .phone-link:hover {
    color: #ffab40;
}

.about-phone .phone-schedule {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

/* ===== Блок: дрова на заказ ===== */
.about-order {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-order-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.about-order-icon {
    font-size: 2rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 14px;
    flex-shrink: 0;
}

.about-order-header h3 {
    font-size: 1.3rem;
    color: #3e2723;
}

.about-order > p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

/* Карточки размеров */
.order-sizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 25px 0;
}

.order-size-card {
    background: linear-gradient(135deg, #fafafa, #f5f0eb);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.order-size-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.order-size-value {
    font-size: 1.6rem;
    font-weight: bold;
    color: #e65100;
    margin-bottom: 6px;
}

.order-size-card--custom .order-size-value {
    color: #ffab40;
}

.order-size-label {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
}

.order-note {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
}

/* ===== Блок: география доставки ===== */
.about-delivery {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-delivery h3 {
    font-size: 1.3rem;
    color: #3e2723;
    margin-bottom: 12px;
}

.about-delivery > p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.delivery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.delivery-tag {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #5d4037;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 171, 64, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.delivery-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 171, 64, 0.2);
}

/* ===== Блок: почему мы ===== */
.about-why {
    margin-top: 30px;
}

.about-why h3 {
    font-size: 1.5rem;
    color: #3e2723;
    text-align: center;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.why-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 12px;
    flex-shrink: 0;
}

.why-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-top {
        flex-direction: column;
    }

    .about-phone {
        max-width: 100%;
    }

    .about-order,
    .about-delivery {
        padding: 25px 20px;
    }

    .order-sizes {
        grid-template-columns: 1fr 1fr;
    }

    .about-order-header {
        flex-direction: column;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .delivery-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .order-sizes {
        grid-template-columns: 1fr;
    }

    .about-phone .phone-link {
        font-size: 1.4rem;
    }
}
