        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', 'Open Sans', sans-serif;
            background-color: #FAF6F0;
            color: #2C1A0E;
            line-height: 1.4;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .logo-font, .card-title, .block-title {
            font-family: 'Merriweather', serif;
            font-weight: 700;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Якорное меню */
        .sticky-menu {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #FAF6F0;
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(200, 146, 42, 0.3);
            padding: 12px 0;
            transition: all 0.3s;
        }
        
        .menu-container {
            display: flex;
            padding: 0 20px;
            justify-content: end;
            gap: 32px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .menu-link {
            color: #2C1A0E;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 6px 0;
            white-space: nowrap;
        }
        
        .menu-link:hover {
            color: #C8922A;
        }
        
        .menu-link.active {
            color: #C8922A;
            border-bottom: 2px solid #C8922A;
        }
        
        @media (max-width: 768px) {
            .menu-container {
                gap: 18px;
                overflow-x: auto;
                justify-content: flex-start;
                padding: 0 16px;
                scrollbar-width: thin;
            }
            .menu-link {
                font-size: 0.85rem;
                white-space: nowrap;
            }
            .container {
                padding: 0 16px;
            }
        }

        /* Кнопки и акценты */
        .btn-gold {
            background-color: #C8922A;
            color: #FAF6F0;
            border: none;
            padding: 14px 32px;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 48px;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
        }
        .btn-gold:hover {
            background-color: #b07d22;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.1);
        }
        .btn-green {
            background-color: #3A5A40;
            color: #FAF6F0;
            border: none;
            padding: 14px 28px;
            font-weight: 600;
            border-radius: 48px;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
        }
        .btn-green:hover {
            background-color: #2d4732;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #C8922A;
            color: #C8922A;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 48px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }
        .btn-outline:hover {
            background: #C8922A;
            color: #FAF6F0;
        }

        /* Темные секции */
        .dark-section {
            background-color: #2C1A0E;
            color: #FAF6F0;
        }

        /* Hero */
       /* Hero секция с двумя колонками */
.hero {
    position: relative;
    min-height: 90vh;
    background: #FAF6F0;
    color: #2C1A0E;
}

.hero-overlay {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FAF6F0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Левая колонка - текст */
.hero-content {
    text-align: left;
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: #2C1A0E;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #4a3a2a;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Правая колонка - фото */
.hero-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #e2d9cf;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-container {
        padding: 40px 20px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
    }
    
    .hero-image {
        order: -1; /* На мобилках фото сверху */
        max-height: 300px;
    }
    
    .hero-img {
        height: 300px;
        object-fit: cover;
    }
}
        /* полоса доверия */
        .trust-strip {
            background: #2C1A0E;
            padding: 24px 0;
            border-top: 1px solid rgba(200,146,42,0.3);
            border-bottom: 1px solid rgba(200,146,42,0.3);
        }
        .trust-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .trust-item {
            flex: 1;
            text-align: center;
            color: #FAF6F0;
            font-weight: 500;
        }
        .trust-icon {
            margin-bottom: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .trust-icon svg {
            width: 48px;
            height: 48px;
        }
        /* Стили для встроенного слайдера в карточке */
.card-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e2d9cf;
}

.card-slider-images {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.card-slider-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 0;
    z-index: 3;
}

.card:hover .card-slider-btn {
    opacity: 1;
}

.card-slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

.card-slider-prev {
    left: 8px;
}

.card-slider-next {
    right: 8px;
}

.card-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.card-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.card-slider-dot.active {
    background: #C8922A;
    width: 16px;
    border-radius: 4px;
}

/* Попап с подробной информацией */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: #FAF6F0;
    border-radius: 32px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #C8922A;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.popup-close:hover {
    background: #b07d22;
    transform: scale(1.05);
}

.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Слайдер с ограниченной высотой для горизонтальных фото */
.popup-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #e2d9cf;
    max-height: 350px;
    min-height: 280px;
}

.popup-slider-images {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.popup-slider-img {
    flex: 0 0 100%;
    width: 100%;
    height: 350px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.popup-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 5;
}

.popup-slider-btn:hover {
    background: rgba(0,0,0,0.8);
}

.popup-slider-prev { left: 12px; }
.popup-slider-next { right: 12px; }

.popup-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

.popup-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.popup-slider-dot.active {
    background: #C8922A;
    width: 24px;
    border-radius: 6px;
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #2C1A0E;
}

.popup-artikul {
    color: #6B3A2A;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.popup-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #2C1A0E;
    margin-bottom: 24px;
}

.popup-text-large {
    background: #fff6ed;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-style: italic;
    color: #3a3a3a;
    line-height: 1.5;
}

.popup-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C8922A;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-table th, .price-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0d5c8;
}

.price-table th {
    background: #2C1A0E;
    color: #FAF6F0;
    border-radius: 12px 12px 0 0;
}

.price-table tr:last-child td {
    border-bottom: none;
}


.popup-features {
    background: #e9dfd1;
    padding: 16px 20px;
    border-radius: 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.popup-btn {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .popup-container-single {
        padding: 24px;
    }
    .popup-content-single h2 {
        font-size: 1.5rem;
    }
    .popup-text-large {
        padding: 16px;
        font-size: 0.9rem;
    }
    .price-table th, .price-table td {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

        /* Слайдер с затемнением по краям */
        .slider-section {
            padding: 60px 0;
            background: #FAF6F0;
            position: relative;
        }
        
        .slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .slider-track {
            display: flex;
            gap: 28px;
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            will-change: transform;
        }
        
        .slider-card {
            flex: 0 0 calc(33.333% - 19px);
            min-width: calc(33.333% - 19px);
            transition: all 0.3s ease;
        }
        
        /* Затемнение по краям */
        .slider-fade {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            pointer-events: none;
            z-index: 5;
        }
        
        .slider-fade-left {
            left: 0;
            background: linear-gradient(90deg, #FAF6F0 0%, rgba(250,246,240,0) 100%);
        }
        
        .slider-fade-right {
            right: 0;
            background: linear-gradient(-90deg, #FAF6F0 0%, rgba(250,246,240,0) 100%);
        }
        
        /* Кнопки навигации */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: #C8922A;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .slider-btn:hover {
            background: #b07d22;
            transform: translateY(-50%) scale(1.05);
        }
        
        .slider-btn-prev {
            left: 20px;
        }
        
        .slider-btn-next {
            right: 20px;
        }
        
        .slider-btn svg {
            width: 24px;
            height: 24px;
            fill: #FAF6F0;
        }
        
        /* Индикаторы */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d4c5b2;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .dot.active {
            background: #C8922A;
            width: 28px;
            border-radius: 6px;
        }
        
        /* Карточка беседки */
        .card {
            background: #FFFFFF;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 32px rgba(0,0,0,0.12);
        }
        
        .card-img {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, #bc9a6c, #9b7a52);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2C1A0E;
            font-size: 14px;
            background-size: cover;
            background-position: center;
            position: relative;
            flex-direction: column;
        }
        
        .badge-num {
            background: #C8922A;
            color: #2C1A0E;
            font-weight: bold;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 12px;
        }
        
        .card-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-title {
            font-size: 1.6rem;
            margin-bottom: 4px;
            color: #2C1A0E;
        }
        
        .artikul {
            font-size: 0.75rem;
            color: #6B3A2A;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        
        .tagline {
            font-weight: 600;
            color: #C8922A;
            margin: 8px 0 6px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 12px 0;
            color: #2C1A0E;
        }
        
        .chars {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 12px 0;
            font-size: 0.8rem;
            color: #3A5A40;
        }
        
        .chars span {
            background: #f0ebe3;
            padding: 4px 12px;
            border-radius: 20px;
        }
        
        .btn-card {
    width: 100%;
    background: #C8922A;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 48px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-align: center;
}

.btn-card:hover {
    background: #b07d22;
    transform: translateY(-2px);
}

        
        /* Формы */
        .form-group {
            margin-bottom: 16px;
        }
        
        input, .form-input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 48px;
            border: 1px solid #ddd;
            background: white;
            font-size: 1rem;
        }
        
        .consent-text {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.7);
            text-align: center;
            margin-top: 12px;
        }
        
        /* FAQ аккордеон */
        .faq-item {
            background: #fff6ed;
            margin-bottom: 12px;
            border-radius: 24px;
            padding: 8px 20px;
        }
        
        .faq-question {
            font-weight: 700;
            padding: 16px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
        }
        
        .faq-answer {
            display: none;
            padding-bottom: 20px;
            color: #2C1A0E;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        footer {
            background: #2C1A0E;
            color: #FAF6F0;
            padding: 40px 0 24px;
        }
        
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        
        .gold-icon {
            color: #C8922A;
            font-size: 32px;
            font-weight: bold;
        }
        
        .section-offset {
            scroll-margin-top: 80px;
        }
        
        /* Стиль для иконки 3D */
        .icon-3d {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
        }
        .icon-3d svg {
            width: 28px;
            height: 28px;
        }
        .btn-gold .icon-3d svg {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 1024px) {
            .slider-card {
                flex: 0 0 calc(50% - 14px);
                min-width: calc(50% - 14px);
            }
            .slider-fade {
                width: 80px;
            }
        }
        
        @media (max-width: 768px) {
            .trust-grid {
                flex-direction: column;
                align-items: center;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
            .slider-card {
                flex: 0 0 85%;
                min-width: 85%;
            }
            .slider-fade {
                width: 40px;
            }
            .slider-btn {
                width: 36px;
                height: 36px;
            }
            .card-title {
                font-size: 1.4rem;
            }
            .section-offset {
                scroll-margin-top: 70px;
            }
            .trust-icon svg {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 480px) {
            .slider-card {
                flex: 0 0 90%;
                min-width: 90%;
            }
        }

        /* Блок О компании */
.about-section {
    padding: 80px 0;
    background: #FAF6F0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 2.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2C1A0E;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #C8922A;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2C1A0E;
    margin-bottom: 24px;
    line-height: 1.5;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: #3a3a3a;
}

.about-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #C8922A;
    font-weight: bold;
    font-size: 1.1rem;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 400px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .about-list li {
        font-size: 0.95rem;
    }
    
    .about-image {
        min-height: 280px;
        order: -1;
    }
}
/* Стили для карточек отзывов с изображениями */
.review-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.review-card:hover .review-img {
    transform: scale(1.02);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .review-card {
        min-width: 260px;
        max-width: 100%;
    }
}

/* Попап с формой рассчёта стоимости */
.calc-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.calc-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.calc-popup-container {
    background: #FAF6F0;
    border-radius: 32px;
    max-width: 500px;
    width: 90%;
    position: relative;
    padding: 40px;
    animation: popupFadeIn 0.3s ease;
}

.calc-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #C8922A;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.calc-popup-close:hover {
    background: #b07d22;
    transform: scale(1.05);
}

.calc-popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #2C1A0E;
    text-align: center;
}

.calc-popup-content p {
    text-align: center;
    margin-bottom: 24px;
    color: #6B3A2A;
}

.calc-popup-content select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 48px;
    border: 1px solid #ddd;
    background: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C1A0E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
}

.calc-popup-content select:focus {
    outline: none;
    border-color: #C8922A;
}

@media (max-width: 768px) {
    .calc-popup-container {
        padding: 30px 24px;
    }
    .calc-popup-content h3 {
        font-size: 1.5rem;
    }
}
/* Кнопка Подробнее */
.btn-detail {
    width: 100%;
    background: transparent;
    border: 2px solid #C8922A;
    color: #C8922A;
    padding: 12px 16px;
    border-radius: 48px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-detail:hover {
    background: #C8922A;
    color: #FAF6F0;
    transform: translateY(-2px);
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

/* Меню с логотипом */
.sticky-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FAF6F0;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200, 146, 42, 0.3);
    padding: 8px 0;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 20px;
}

.menu-logo {
    flex-shrink: 0;
}

.menu-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.menu-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.menu-link {
    color: #2C1A0E;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    padding: 6px 0;
    white-space: nowrap;
}

.menu-link:hover {
    color: #C8922A;
}

.menu-link.active {
    color: #C8922A;
    border-bottom: 2px solid #C8922A;
}

/* Адаптация для мобильных */
@media (max-width: 900px) {
    .menu-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px;
    }
    
    .menu-links {
        gap: 16px;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 6px;
        justify-content: flex-start;
    }
    
    .menu-link {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .menu-logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .menu-links {
        gap: 12px;
    }
}
/* Кнопка Полный каталог под слайдером */
.btn-catalog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #C8922A;
    color: #FAF6F0;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 48px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 146, 42, 0.3);
}

.btn-catalog:hover {
    background-color: #b07d22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 146, 42, 0.4);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .btn-catalog {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Бургер-меню */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #2C1A0E;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Анимация бургера в крестик при открытии */
.burger-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Десктопное меню */
.menu-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .menu-container {
        justify-content: space-between;
        padding: 12px 20px;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #FAF6F0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 24px;
        gap: 16px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .menu-links.open {
        right: 0;
    }
    
    .menu-link {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(200, 146, 42, 0.2);
    }
    
    .menu-link.active {
        border-bottom: 2px solid #C8922A;
    }
    
    /* Затемнение фона при открытом меню */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}
/* Галерея работ */
.gallery-section {
    padding: 60px 0;
    background: #FAF6F0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Адаптация для планшетов */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Лайтбокс для просмотра фото */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: #C8922A;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: #b07d22;
    transform: scale(1.05);
}

/* Виджет контактов в правом нижнем углу */
.contact-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.contact-widget-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #C8922A;
    color: white;
    padding: 12px 20px;
    border-radius: 60px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(200, 146, 42, 0.4);
    transition: all 0.3s ease;
}

.contact-widget-button:hover {
    background: #b07d22;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(200, 146, 42, 0.5);
}

.contact-widget-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #2C1A0E;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

.contact-widget-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    color: #FAF6F0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: rgba(200, 146, 42, 0.2);
    transform: translateX(-5px);
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-phone:hover { background: rgba(122, 46, 56, 0.3); }
.contact-wa:hover { background: rgba(37, 211, 102, 0.2); }
.contact-viber:hover { background: rgba(115, 96, 242, 0.2); }
.contact-tg:hover { background: rgba(0, 136, 204, 0.2); }

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .contact-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .contact-widget-button {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .contact-widget-button span {
        display: none;
    }
    
    .contact-widget-button svg {
        margin: 0;
    }
    
    .contact-widget-menu {
        bottom: 60px;
        min-width: 160px;
    }
    
    .contact-item span {
        font-size: 13px;
    }
}

/* Скрываем только таблицу цен на беседку */
#popupPriceBody {
    display: none;
}

/* Скрываем заголовок "Цены на беседку" */
.popup-content-single > h3:first-of-type {
    display: none;
}

/* Первая таблица (цен) — скрываем */
.popup-content-single > .price-table:first-of-type {
    display: none;
}