/* ============================================================
   ПЕРЕМЕННЫЕ
   ============================================================ */
:root {
    --wood-50:  #f9f5f0;
    --wood-100: #f0e6d6;
    --wood-200: #e0ccb3;
    --wood-300: #c9a877;
    --wood-400: #b88f5d;
    --wood-500: #9b7348;
    --wood-600: #7d5a3a;
    --wood-700: #5e4429;
    --wood-800: #3d2817;
    --wood-900: #2a1a0f;

    --header-h: 80px;
    --section-py: 80px;
    --radius:   15px;
}

/* ============================================================
   УТИЛИТЫ (дополнение к common_new.css)
   ============================================================ */
.shadow-xl    { box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.bg-white     { background: #ffffff; }
.mx-auto      { margin-left: auto; margin-right: auto; }
.flex-shrink-0{ flex-shrink: 0; }
.bradtop15    { border-radius: 15px 15px 0 0; }
.brad8        { border-radius: 8px; }
.p8           { padding: 8px; }
.mb6          { margin-bottom: 6px; }
.mb8          { margin-bottom: 8px; }
.mr8          { margin-right: 8px; }
.mr12         { margin-right: 12px; }
.gap40        { gap: 40px; }
.col          { flex-direction: column; }
.objfit-cover { object-fit: cover; }
.mt5          { margin-top: 5px; }

.dn-mobile    { /* desktop-only — скрыт ниже 992px */ }
.dn-mobile-sm { /* скрыт ниже 768px */ }
.dn-desktop   { display: none; }

/* ============================================================
   БАЗОВЫЕ НАСТРОЙКИ СТРАНИЦЫ
   ============================================================ */
.page-larixwood {
    background: var(--wood-50);
    font-family: 'Montserrat', sans-serif;
    color: #3B3B3B;
    font-size: 1.6rem;
    line-height: 2.8rem;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
    top: 0;
    left: 0;
    background: rgba(61, 40, 23, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    transition: box-shadow .3s;
}
#header.header-scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.40);
}

.header-inner, #header > .main {
    height: var(--header-h);
}

.header-logo-icon {
    width: 40px;
    height: 40px;
    color: var(--wood-300);
    font-size: 3rem;
}
.header-logo-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--wood-100);
    letter-spacing: 0.1em;
}

.header-nav-link {
    color: var(--wood-100);
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 30px;
    text-decoration: none;
}
.header-nav-link:hover {
    color: var(--wood-300);
}

.header-cta {
    background: var(--wood-500);
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    margin-left: 20px;
}
.header-cta:hover {
    background: var(--wood-600);
    color: #fff;
}

.burger-btn {
    background: transparent;
    border: none;
    color: var(--wood-100);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 5px;
}

/* Mobile menu */
.mobile-menu {
    background: var(--wood-800);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
}
.mobile-menu-link {
    display: block;
    color: var(--wood-100);
    font-size: 1.6rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: color .2s;
}
.mobile-menu-link:hover {
    color: var(--wood-300);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    background: var(--wood-500);
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 22px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .3s, transform .2s;
    line-height: 1.3;
}
.btn-primary:hover {
    background: var(--wood-600);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--wood-100);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 22px 30px;
    border-radius: 8px;
    border: 2px solid var(--wood-100);
    text-decoration: none;
    cursor: pointer;
    transition: background .3s, color .3s;
    line-height: 1.3;
}
.btn-outline:hover {
    background: var(--wood-100);
    color: var(--wood-800);
}

.btn-outline-light {
    background: transparent;
    color: var(--wood-100);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 14px 30px;
    border-radius: 8px;
    border: 2px solid var(--wood-300);
    text-decoration: none;
    cursor: pointer;
    transition: background .3s, color .3s;
    line-height: 1.3;
}
.btn-outline-light:hover {
    background: var(--wood-700);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--wood-700);
    font-weight: 700;
    font-size: 1.6rem;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .3s;
    line-height: 1.3;
}
.btn-white:hover {
    background: var(--wood-50);
    color: var(--wood-800);
}

/* ============================================================
   SECTIONS — общие
   ============================================================ */
.section-white {
    background: #fff;
    padding: var(--section-py) 0;
}
.section-light {
    background: linear-gradient(135deg, var(--wood-50), var(--wood-100));
    padding: var(--section-py) 0;
}
.section-dark {
    background: var(--wood-800);
    padding: var(--section-py) 0;
}

.wood-texture {
    background-color: var(--wood-800);
    background-image:
        linear-gradient(90deg, rgba(61,40,23,0.15) 1px, transparent 1px),
        linear-gradient(rgba(61,40,23,0.15) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Section label badge */
.section-label {
    display: inline-block;
    background: var(--wood-100);
    color: var(--wood-700);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 16px;
    border-radius: 100px;
}
.section-label-dark {
    background: var(--wood-600);
    color: var(--wood-100);
}

.section-desc {
    color: var(--wood-600);
    font-size: 1.7rem;
    line-height: 2.8rem;
}
.section-desc-dark {
    color: var(--wood-200);
    font-size: 1.7rem;
    line-height: 2.8rem;
}

.text-light       { color: #fff; }
.text-light-muted { color: var(--wood-200); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    min-height: 750px;
    padding-top: var(--header-h);
    padding: 120px 0 40px;
}

.hero-overlay {
    inset: 0;
    background: linear-gradient(100deg, rgba(42, 26, 15, 0.8) 40%, rgb(61 40 23 / 1%) 100%);
}

.hero-content {
    max-width: 750px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--wood-50);
}
.hero-accent {
    color: var(--wood-300);
}

.hero-desc {
    font-size: 1.8rem;
    line-height: 3rem;
    color: var(--wood-100);
}

.hero-badge-icon { color: var(--wood-300); font-size: 2.8rem; }
.hero-badge-title { font-weight: 700; font-size: 1.6rem; color: var(--wood-100); }
.hero-badge-sub   { font-size: 1.3rem; color: var(--wood-200); }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-text {
    font-size: 1.65rem;
    line-height: 2.9rem;
    color: var(--wood-600);
}

.stat-card {
    background: var(--wood-50);
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 130px;
}
.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--wood-600);
    line-height: 1.2;
}
.stat-label {
    font-size: 1.4rem;
    color: var(--wood-700);
    font-weight: 500;
}

.check-ico { color: var(--wood-500); font-size: 1.8rem; }
.check-item { color: var(--wood-700); font-weight: 500; font-size: 1.5rem; }

/* About gallery */
.about-gallery {
    align-items: flex-start;
}
.about-gallery-col {
    flex: 1;
    min-width: 0;
}
.about-img-tall {
    height: 260px;
}
.about-img-short {
    height: 190px;
}
.about-img-tall img,
.about-img-short img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    bottom: -20px;
    left: -20px;
    background: var(--wood-600);
    color: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    max-width: 260px;
}
.about-badge-icon { font-size: 2.8rem; color: var(--wood-200); }
.about-badge-title { font-weight: 700; font-size: 1.5rem; color: #fff; }
.about-badge-sub   { font-size: 1.2rem; color: var(--wood-200); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-card {
    background: var(--wood-50);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.product-card-img {
    height: 240px;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card-img img:hover {
    transform: scale(1.05);
}

.product-icon  { font-size: 2rem; color: var(--wood-600); }
.product-card h3 { font-size: 2rem; color: var(--wood-800); }
.product-desc  { color: var(--wood-600); font-size: 1.5rem; line-height: 2.4rem; }

.product-list  { list-style: none; margin: 0; padding: 0; }
.product-list li {
    color: var(--wood-700);
    font-size: 1.5rem;
    margin-bottom: 8px;
    margin-left: 0;
    list-style: none;
}
.product-check { color: var(--wood-500); }

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-top: 4px solid var(--wood-600);
    position: relative;
    z-index: 2;
}

.price-card-img {
    height: 190px;
}
.price-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-group-header {
    background: var(--wood-700);
    transform: translateY(30px);
    z-index: 1;
    position: relative;
}
.pricing-group-header-alt {
    background: var(--wood-600);
}

.price-bg {
    background: var(--wood-50);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-sort     { color: var(--wood-700); font-size: 1.5rem; }
.price-val      { color: var(--wood-600); font-size: 1.7rem; font-weight: 700; }
.price-size     { color: var(--wood-600); font-size: 1.5rem; }
.price-size-note { color: var(--wood-500); font-size: 1.35rem; }

/* Pricing CTA banner */
.pricing-cta-block {
    min-height: 300px;
}
.pricing-cta-overlay {
    inset: 0;
    background: rgba(42, 26, 15, 0.88);
    border-radius: var(--radius);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
    cursor: pointer;
}
.gallery-img {
    display: block;
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}
.gallery-overlay {
    inset: 0;
    background: linear-gradient(to top, rgba(42,26,15,0.9), transparent);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}
.gallery-sub { color: var(--wood-200); font-size: 1.4rem; }

/* ============================================================
   ADVANTAGES
   ============================================================ */
.adv-card {
    background: rgba(94, 68, 41, 0.4);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 35px 25px;
    transition: transform .3s;
}
.adv-card:hover {
    transform: translateY(-5px);
}
.adv-icon-wrap {
    width: 75px;
    height: 75px;
    background: var(--wood-500);
    border-radius: 50%;
    color: #fff;
    font-size: 2.6rem;
}
.adv-desc {
    color: var(--wood-200);
    font-size: 1.5rem;
    line-height: 2.4rem;
}

/* ============================================================
   CONTACTS
   ============================================================ */
.contact-card {
    border-radius: 20px;
}

.contact-icon   { color: var(--wood-600); font-size: 2rem; }
.contact-label  { font-weight: 600; color: var(--wood-800); font-size: 1.5rem; }
.contact-value  { color: var(--wood-600); font-size: 1.65rem; font-weight: 500; }
.contact-value:hover { color: var(--wood-700); }
.contact-text   { color: var(--wood-600); font-size: 1.55rem; }
.contact-note   { color: var(--wood-500); font-size: 1.3rem; }

.contact-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--wood-100);
    border-radius: 10px;
    color: var(--wood-600);
    font-size: 1.8rem;
}

.contact-legal {
    border-top: 1px solid var(--wood-200);
}
.contact-legal-title {
    font-weight: 700;
    color: var(--wood-800);
    font-size: 1.5rem;
}
.contact-legal-text { font-size: 1.4rem; color: var(--wood-600); line-height: 2.2rem; }
.contact-legal-text p { margin-bottom: 2px; }

/* Form */
.form-label  { color: var(--wood-700); font-weight: 500; font-size: 1.5rem; }
.form-input  {
    border: 2px solid var(--wood-200);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--wood-800);
    outline: none;
    transition: border-color .3s;
    box-sizing: border-box;
}
.form-input:focus { border-color: var(--wood-500); }
.form-textarea { resize: vertical; }
.form-note { color: var(--wood-500); font-size: 1.3rem; }

/* Special offer */
.special-offer-card {
    background: var(--wood-600);
}
.special-check { color: var(--wood-200); font-size: 2rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-desc {
    color: var(--wood-200);
    font-size: 1.7rem;
    line-height: 2.8rem;
}

.cta-stat-num   { font-size: 3.8rem; font-weight: 800; color: var(--wood-300); line-height: 1.2; }
.cta-stat-label { color: var(--wood-200); font-size: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
    background: var(--wood-900);
    color: var(--wood-200);
    padding: 60px 0 0;
}

.footer-logo-icon { color: var(--wood-400); font-size: 2.6rem; }
.footer-logo-text { font-size: 2rem; font-weight: 800; color: var(--wood-100); letter-spacing: 0.08em; }
.footer-desc      { color: var(--wood-300); font-size: 1.5rem; line-height: 2.4rem; }

.footer-heading { font-size: 1.6rem; font-weight: 700; color: var(--wood-100); }
.footer-list    { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 8px; margin-left: 0; list-style: none; }
.footer-link    { color: var(--wood-200); font-size: 1.5rem; text-decoration: none; }
.footer-link:hover { color: var(--wood-400); }
.footer-contact-ico { color: var(--wood-400); font-size: 1.4rem; }
.footer-text { color: var(--wood-200); font-size: 1.5rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 30px;
}
.footer-copy { color: var(--wood-400); font-size: 1.35rem; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollup {
    width: 48px;
    height: 48px;
    right: 25px;
    bottom: 25px;
    background: var(--wood-600);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-size: 1.8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, background .3s;
}
#scrollup:hover {
    background: var(--wood-700);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media all and (max-width: 1220px) {
    .header-logo-text, .header-logo-icon {font-size: 2.2rem;}
}
@media all and (max-width: 992px) {
    .dn-mobile { display: none !important; }
    .dn-desktop { display: flex !important; }

    :root { --section-py: 60px; }

    .hero-section { min-height: 600px; }
    .hero-title { font-size: 3.5rem; }
}

@media all and (max-width: 768px) {
    .dn-mobile-sm { display: none !important; }

    :root { --section-py: 50px; }

    .hero-title { font-size: 3rem; }
    .hero-desc  { font-size: 1.6rem; }

    .about-img-tall  { height: 200px; }
    .about-img-short { height: 150px; }

    .gallery-img { height: 240px; }

    .adv-card { padding: 25px 20px; }

    .contact-card { padding: 25px; }
    .special-offer-card { padding: 25px; }
}

@media all and (max-width: 576px) {
    :root { --section-py: 40px; }

    .hero-title {font-size: 3.5rem;line-height: 1.2;}
    .hero-section { min-height: 520px; }

    .btn-primary,
    .btn-outline,
    .btn-outline-light { padding: 12px 22px; font-size: 1.5rem; }
    
    #hero .btn-primary,
    #hero .btn-outline,
    #hero .btn-outline-light {padding: 18px 20px;font-size: 1.65rem;width: 100%;text-align: center;justify-content: center;box-sizing: border-box;}


    .stat-num { font-size: 3rem; }
    .cta-stat-num { font-size: 3rem; }

    .gallery-img { height: 200px; }

    .pricing-cta-block { min-height: 250px; }
}


/* ============================================================
   БАЗОВЫЕ НАСТРОЙКИ СТРАНИЦЫ
   ============================================================ */
.page-product-order {
    background: var(--wood-50);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ
   ============================================================ */
@keyframes orderEnter {
    from { opacity: 0; transform: scale(0.92) translateY(16px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

/* ============================================================
   ПОДЛОЖКА (BACKDROP)
   ============================================================ */
.order-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
    padding: 20px;
    background: rgba(61, 40, 23, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* ============================================================
   ОКНО МОДАЛКИ
   ============================================================ */
.order-window {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 1200px;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    animation: orderEnter 0.4s ease-out forwards;
}

/* ============================================================
   ДВУХКОЛОНОЧНАЯ СЕТКА
   ============================================================ */
.order-cols {
    min-height: 600px;
    align-items: stretch;   /* обе колонки одинаковой высоты */
}

/* ============================================================
   ЛЕВАЯ КОЛОНКА: ИЗОБРАЖЕНИЕ
   ============================================================ */
.order-col-img {
    min-height: 260px;
}

.order-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    border-radius: 20px 0 0 20px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to top,
        rgba(42, 26, 15, 0.90) 0%,
        rgba(42, 26, 15, 0.10) 55%,
        transparent 100%
    );
}

.order-img-footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 32px;
}

.order-img-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    font-family: 'Montserrat', sans-serif;
}

.order-img-desc {
    font-size: 1.5rem;
    color: var(--wood-100);
    line-height: 1.55;
    font-family: 'Montserrat', sans-serif;
}

/* ── Бейджи ─────────────────────────────────────── */
.order-badge {
    background: rgba(61, 40, 23, 0.72);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 8px 13px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.order-badge i {
    color: var(--wood-300);
}

/* ── Кнопка закрытия (на изображении) ─────────── */
.order-close-img {
    position: absolute;
    top: 14px; right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}

.order-close-img:hover {
    background: rgba(255, 255, 255, 0.40);
}

/* ============================================================
   ПРАВАЯ КОЛОНКА: ФОРМА
   ============================================================ */
.order-col-form {
    padding: 36px 40px;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
    box-sizing: border-box;
}

/* ── Кнопка закрытия (на форме, только мобильная) ─ */
.order-close-form {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--wood-100);
    color: var(--wood-600);
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.order-close-form:hover {
    background: var(--wood-200);
}

/* ── Заголовки формы ───────────────────────────── */
.order-form-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--wood-800);
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.order-form-subtitle {
    font-size: 1.5rem;
    color: var(--wood-600);
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* ── Метки полей ───────────────────────────────── */
.order-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wood-700);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

/* ── Строка с двумя инпутами ───────────────────── */
/*
   Используем flex fm15: дочерние block50 получают:
     flex-basis: calc(50% - 7.5px), gap = 15px, margin-bottom: 15px
*/
.order-inputs-row {
    /* margin-bottom управляется margin-bottom на block50 (=15px из fm15) */
}

/* ── Текстовые поля (переопределяем стили planb.css) ─ */
.order-input {
    /* width: 100%; */
    /* padding: 0 16px !important; */
    /* line-height: 50px; */
    border: 2px solid var(--wood-200) !important;
    border-radius: 12px;
    background: #fff !important;
    /* font-family: 'Montserrat', sans-serif !important; */
    font-size: 1.5rem !important;
    color: var(--wood-800) !important;
    /* outline: none; */
    /* box-sizing: border-box; */
    /* display: block; */
    margin: 0 !important;
    /* transition: border-color 0.25s; */
}

.order-input:focus {
    border-color: var(--wood-500) !important;
    background: #fff !important;
}

.order-input::placeholder {
    color: var(--wood-300);
}

/* ── Textarea (переопределяем стили planb.css) ──── */
.order-textarea {
    width: 100%;
    padding: 14px 16px !important;
    border: 2px solid var(--wood-200) !important;
    border-radius: 12px;
    background: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.5rem;
    color: var(--wood-800);
    outline: none;
    resize: none;
    line-height: 1.65;
    box-sizing: border-box;
    display: block;
    margin: 0 !important;
    transition: border-color 0.25s;
}

.order-textarea:focus {
    border-color: var(--wood-500) !important;
    background: #fff !important;
}

.order-textarea::placeholder {
    color: var(--wood-300);
}

/* ── Информационный блок ───────────────────────── */
.order-info {
    background: var(--wood-50);
    border: 1px solid var(--wood-200);
    border-radius: 12px;
    padding: 16px 20px;
    align-items: flex-start;
}

.order-info-icon {
    color: var(--wood-500);
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.order-info-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wood-600);
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 8px;
}

.order-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.order-info-list li {
    font-size: 1.35rem;
    color: var(--wood-600);
    line-height: 1.55;
    font-family: 'Montserrat', sans-serif;
    list-style: none;
    margin: 0 0 5px;
    padding-left: 14px;
    position: relative;
}

.order-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--wood-400);
}

/* ── Кнопка отправки ───────────────────────────── */
.order-btn-submit {
    background: var(--wood-600);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 58px;
    padding: 0 30px;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.order-btn-submit:hover {
    background: var(--wood-700);
    color: #fff;
    text-decoration: none;
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(61, 40, 23, 0.22);
}

/* ── Текст "или" ────────────────────────────────── */
.order-or {
    font-size: 1.4rem;
    color: var(--wood-400);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* ── Кнопка Viber / телефон ─────────────────────── */
.order-btn-viber {
    background: #3d9966;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 50px;
    padding: 0 24px;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s;
}

.order-btn-viber:hover {
    background: #2d7a52;
    color: #fff;
    text-decoration: none;
}

/* ── Политика персональных данных ──────────────── */
.order-privacy {
    font-size: 1.2rem;
    color: var(--wood-400);
    line-height: 1.55;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.order-privacy-link {
    color: var(--wood-600);
    text-decoration: underline;
}

.order-privacy-link:hover {
    color: var(--wood-700);
}

/* ============================================================
   МОДАЛКА УСПЕХА
   ============================================================ */
.success-window {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 480px;
    padding: 50px 40px;
    box-sizing: border-box;
    animation: orderEnter 0.4s ease-out forwards;
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d1fae5;
}

.success-icon {
    font-size: 3.2rem;
    color: #059669;
}

.success-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--wood-800);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 1.6rem;
    color: var(--wood-600);
    line-height: 1.65;
    font-family: 'Montserrat', sans-serif;
}

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

/* ≤ 992px */
@media (max-width: 992px) {
    .order-window    { max-width: 860px; }
    .order-col-form  { padding: 28px 30px; }
}

/* ≤ 768px — стек: изображение сверху, форма снизу */
@media (max-width: 768px) {
    .order-backdrop {
        padding: 0;
        align-items: flex-end;
    }

    .order-window {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        overflow-y: auto;
    }

    .order-cols     { min-height: unset; }

    /* фиксированная высота для изображения в стеке */
    .order-col-img  { height: 240px; }

    .order-col-form {
        padding: 24px 20px 36px;
        max-height: none;
        overflow-y: visible;
    }

    /* показываем кнопку закрытия на форме */
    .order-close-form { display: flex; }

    .order-form-title  { font-size: 2.2rem; }
    .order-img-title   { font-size: 2rem; }

    .success-window { padding: 36px 24px; }
}

/* ≤ 576px */
@media (max-width: 576px) {
    .order-backdrop {
        padding: 12px;
        align-items: center;
    }

    .order-window {
        border-radius: 20px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .order-col-img   { height: 200px; }
    .order-form-title { font-size: 2rem; }

    .success-window  { padding: 30px 20px; }
}

