/* =========================================================================
   1. ГЛОБАЛЬНЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --aq-blue: #C98B5F;                        /* янтарно-терракотовый вместо циана */
    --aq-blue-glow: rgba(201, 139, 95, 0.5);   /* тёплое свечение */
    --aq-black: #2A1F14;                       /* тёплый тёмно-коричневый вместо холодного чёрного */
    --aq-bg-gray: #F5F0EA;                     /* кремовый вместо серого */
    --aq-radius-main: 16px;
    --aq-radius-sm: 12px;
    --aq-border-hover: #C98B5F;                /* тёплый янтарь */
    --aq-shadow-hover: 0 8px 20px rgba(201, 139, 95, 0.10);
    --aq-transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--aq-black);
    background-color: #FFFDF9;                 /* тёплый белый вместо #fff */
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

/* =========================================================================
   2. АНИМАЦИИ И ЭФФЕКТЫ
   ========================================================================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cart-jump-anim {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cart-jump {
    animation: cart-jump-anim 0.4s ease;
}

@keyframes aqFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   3. НАВИГАЦИЯ И КНОПКИ (ЛОГОТИПЫ)
   ========================================================================= */
.header-logo-container {
    flex-shrink: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 10px !important;
}

.logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
}

.brand-logo {
    object-fit: contain !important;
    transition: var(--aq-transition);
}

/* Мобильный горизонтальный логотип */
.logo-mobile {
    display: block !important;
    height: 46px !important;
    width: auto !important;
    max-width: 190px !important; 
    margin-top: 2px !important;
}

/* Скрываем десктопный по умолчанию (для мобилок) */
.logo-desktop {
    display: none !important;
}

@media (min-width: 1024px) {
    .logo-mobile {
        display: none !important;
    }
    .logo-desktop {
        display: block !important;
        height: 140px !important;
        width: auto !important;
    }
}

.nav-btn {
    display: block;
    padding: 12px 20px;
    border-radius: var(--aq-radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--aq-transition);
    color: rgba(42, 31, 20, 0.55);            /* тёплый приглушённый */
}

.nav-btn:hover {
    background-color: var(--aq-bg-gray);
    color: var(--aq-black);
}

.nav-btn.active {
    color: var(--aq-blue);
    background-color: rgba(201, 139, 95, 0.10); /* тёплый tint */
}

/* =========================================================================
   4. МИНИШОП2 И КОРЗИНА (БАЗА)
   ========================================================================= */
#msMiniCart, 
#msMiniCart a {
    all: unset !important;
    display: flex !important;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.ms2_form {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

/* =========================================================================
   4.5 ЛИПКИЕ ХЛЕБНЫЕ КРОШКИ (STICKY BREADCRUMBS)
   ========================================================================= */
.main-breadcrumbs-nav {
    padding-top: 12px;
    padding-bottom: 4px;
    background-color: #FFFDF9;               /* тёплый белый */
    width: 100%;
}

/* =========================================================================
   6. ВСПОМОГАТЕЛЬНЫЕ СТИЛИ
   ========================================================================= */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.glass-header {
    background: rgba(255, 253, 249, 0.76);   /* тёплое стекло */
    backdrop-filter: saturate(180%) blur(20px);
}

/* =========================================================================
   7. КНОПКА ОФОРМЛЕНИЯ ЗАКАЗА
   ========================================================================= */
.btn-checkout {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 14px 30px !important;
    background-color: var(--aq-black) !important;
    color: #ffffff !important;
    border-radius: var(--aq-radius-sm) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: var(--aq-transition) !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(42, 31, 20, 0.12) !important;
}

/* =========================================================================
   8. КОРЗИНА И КОЛИЧЕСТВО (+ -)
   ========================================================================= */
.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E8DDD2;        /* тёплый разделитель */
    gap: 24px;
}

.cart-item__quantity, 
.quantity-wrapper { 
    display: inline-flex; 
    align-items: center; 
    background-color: var(--aq-bg-gray); 
    border-radius: var(--aq-radius-sm); 
    padding: 4px; 
    border: 2px solid transparent; 
}

.quantity-input {
    width: 40px;
    text-align: center;
    font-weight: 600;
    background: transparent;
    border: none;
}

/* =========================================================================
   9. СТРОКА ПОКУПКИ И АДАПТИВЫ ПОД ВСЕ ЭКРАНЫ
   ========================================================================= */
.product-purchase-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
}

.main-product-price-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 140px;
}

.product-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #EDE5DC;              /* тёплая рамка */
    border-radius: var(--aq-radius-sm);
    height: 56px;
    background-color: var(--aq-bg-gray);
    padding: 0 8px;
    width: 120px;
    flex-shrink: 0;
}

.product-qty-selector button {
    width: 32px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #A08878;                         /* тёплый muted */
    transition: var(--aq-transition);
}

.product-qty-selector button:hover { color: var(--aq-black); }

.product-qty-selector input {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
    border: none;
    padding: 0;
    color: var(--aq-black);
}

.submit-cart-btn {
    height: 56px !important;
    padding: 0 36px !important;
    background-color: var(--aq-black) !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-size: 13px !important;
    border-radius: var(--aq-radius-sm) !important;
    transition: var(--aq-transition) !important;
    white-space: nowrap;
}

main#msProduct .bg-\[var\(--aq-bg-gray\)\] {
    margin-top: 1rem !important;
    max-width: 440px !important;
}

/* --- МОБИЛЬНЫЙ ПОРТРЕТНЫЙ РЕЖИМ (ДО 767px) --- */
@media (max-width: 767px) {
    .main-breadcrumbs-nav {
        position: sticky !important;
        top: 64px !important; 
        z-index: 50 !important;
    }

    .product-purchase-row {
        gap: 10px !important;
        margin-top: 16px !important;
        margin-bottom: 16px !important;
    }

    .main-product-price-block { min-width: auto !important; flex-shrink: 0 !important; }
    .main-product-price-block .text-2xl { font-size: 1.35rem !important; }

    .product-qty-selector {
        width: 95px !important;
        height: 44px !important;
        padding: 0 4px !important;
        margin: 0 0 0 auto !important;
    }

    .product-qty-selector button { font-size: 1rem !important; width: 24px !important; }
    .product-qty-selector input { font-size: 0.9rem !important; }

    .submit-cart-btn {
        height: 44px !important;
        padding: 0 14px !important;
        font-size: 11px !important;
        flex-grow: 1 !important;
        border-radius: 12px !important;
    }

    main#msProduct .bg-\[var\(--aq-bg-gray\)\] { max-width: 100% !important; padding: 12px 16px !important; }
}

/* --- МОБИЛЬНЫЙ ЛАНДШАФТНЫЙ РЕЖИМ (ДО 940px) --- */
@media (orientation: landscape) and (max-width: 940px) {
    .main-breadcrumbs-nav {
        position: sticky !important;
        top: 64px !important; 
        z-index: 50 !important;
    }

    main#msProduct { padding-top: 0.15rem !important; padding-bottom: 1rem !important; }
    main#msProduct > .flex-col { flex-direction: row !important; gap: 24px !important; align-items: start !important; }
    
    main#msProduct .lg\:w-1\/2 { width: 33% !important; }
    main#msProduct .max-h-\[35vh\] { max-height: 50vh !important; }
    main#msProduct .thumbnails-container { justify-content: center !important; margin-top: 6px !important; }
    main#msProduct .thumb-btn { width: 3rem !important; height: 3rem !important; padding: 2px !important; }
    
    main#msProduct .lg\:w-1\/2.xl\:w-\[45\%\] { width: 67% !important; }
    main#msProduct h1 { font-size: 1.2rem !important; margin-bottom: 2px !important; line-height: 1.25 !important; }
    
    .new-product__card-chips { margin-top: 4px !important; margin-bottom: 6px !important; }
    .new-product__card-chip { padding: 4px 10px !important; font-size: 9px !important; }

    .product-purchase-row { gap: 12px !important; margin-top: 6px !important; margin-bottom: 10px !important; }
    .main-product-price-block .text-2xl { font-size: 1.25rem !important; }
    .product-qty-selector { height: 38px !important; width: 90px !important; margin: 0 !important; }
    .submit-cart-btn { height: 38px !important; font-size: 11px !important; padding: 0 20px !important; flex-grow: 1 !important; }

    main#msProduct .bg-\[var\(--aq-bg-gray\)\] { margin-top: 4px !important; padding: 8px 14px !important; border-radius: 12px !important; max-width: 100% !important; }
    .hidden.lg\.block.bg-white.border-b { display: none !important; }
}

/* =========================================================================
   10-14. ХАРАКТЕРИСТИКИ, СЕТКА И БЕЙДЖИ
   ========================================================================= */
.aqara-char-item { display: flex; flex-direction: column; gap: 0.25rem; width: 100%; font-size: 15px; padding-bottom: 0.5rem; }
.aqara-char-name { color: #A08878; font-weight: 500; }    /* тёплый muted */
.aqara-char-value { font-weight: 700; color: var(--aq-black); }

@media (min-width: 768px) {
    .aqara-char-item { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 1rem; }
    .aqara-char-name::after { content: ""; flex-grow: 1; border-bottom: 2px dotted #D6C9BD; margin: 0 10px 5px 10px; order: 2; } /* тёплый пунктир */
}

.aqara-specs-grid { display: grid; width: 100%; gap: 20px; margin-top: 2rem; grid-template-columns: repeat(3, 1fr); }
.spec-card { padding: 20px; background-color: var(--aq-bg-gray); border-radius: var(--aq-radius-main); border: 2px solid transparent !important; transition: var(--aq-transition); display: flex; flex-direction: column; gap: 4px; }
.spec-card:hover, .thumb-btn:hover { background-color: #FFFDF9 !important; border-color: var(--aq-border-hover) !important; box-shadow: var(--aq-shadow-hover) !important; transform: translateY(+2px) !important; z-index: 10; }
.spec-label { display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: #A08878; letter-spacing: 0.1em; margin-bottom: 8px; } /* тёплый */
.spec-value { display: block; font-size: 0.95rem; font-weight: 600; color: #2A1F14; line-height: 1.4; }

@media (max-width: 1024px) { .aqara-specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .aqara-specs-grid { grid-template-columns: 1fr; } .spec-card { padding: 16px; } }

.aqara-beautiful-description { font-family: inherit; color: #5C4A3A; line-height: 1.65; max-width: 860px; margin: 40px auto; font-size: 16px; padding: 0 15px; }
.aqara-beautiful-description h2 { font-size: 1.35rem; font-weight: 700; color: #2A1F14; margin-top: 2.2em; margin-bottom: 0.8em; padding-bottom: 12px; border-bottom: 1px solid #E8DDD2; position: relative; letter-spacing: 0.2px; }
.aqara-beautiful-description h2::before { content: ''; position: absolute; bottom: -1px; left: 0; width: 40px; height: 2px; background-color: var(--aq-blue); border-radius: 2px; } /* акцентная полоска = янтарь */
.aqara-beautiful-description p { margin-bottom: 1.2em; }
.aqara-beautiful-description > p:first-of-type { font-size: 1.1rem; line-height: 1.6; color: #2A1F14; font-weight: 500; margin-bottom: 2em; }
.aqara-beautiful-description b, .aqara-beautiful-description strong { font-weight: 600; color: #2A1F14; }

@media (max-width: 768px) { .aqara-beautiful-description { font-size: 15px; margin: 20px auto; padding: 0; } .aqara-beautiful-description h2 { font-size: 1.25rem; margin-top: 1.8em; } }
.prose-sm p { color: #6B5848 !important; line-height: 1.625 !important; margin-bottom: 0.75rem !important; } /* тёплый secondary */
.prose-sm p:last-child { margin-bottom: 0 !important; }

main .bg-\[var\(--aq-bg-gray\)\] { border-radius: var(--aq-radius-main) !important; }
main .cart-item__quantity { border-radius: var(--aq-radius-sm) !important; }
section.bg-\[var\(--aq-bg-gray\)\] { border-radius: 0 !important; }

.new-product__card-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; margin-bottom: 14px; }
.new-product__card-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 9999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease; border: 1px solid transparent; }
.new-product__card-chip svg { width: 13px; height: 13px; }
.new-product__card-chip-matter { background-color: #2A1F14; color: #ffffff; box-shadow: 0 4px 12px rgba(42, 31, 20, 0.15); }  /* тёплый чёрный */
.new-product__card-chip-matter svg { color: #ffffff; }
.new-product__card-chip-zigbee { background-color: #fff7ed; color: #c2410c; border-color: #ffedd5; }
.new-product__card-chip-wifi { background-color: #fdf8f0; color: #92400e; border-color: #fde68a; }    /* в тёплых тонах */
.new-product__card-chip-bluetooth { background-color: #fdf4ec; color: #92400e; border-color: #fde8c8; } /* янтарный вместо фиолетового */
.new-product__card-chip-default { background-color: #F5F0EA; color: #2A1F14; border-color: #E8DDD2; }

/* =========================================================================
   15. СТИЛИ ЧИСТОЙ ГАЛЕРЕИ (APPLE-STYLE)
   ========================================================================= */
.product-gallery-clean .product-main-photo-wrapper { aspect-ratio: 1 / 1 !important; width: 100%; background-color: #ffffff !important; }
.product-image-slide { padding: 24px !important; background-color: #ffffff !important; }
.thumb-btn { background-color: #ffffff !important; border: 1px solid #E8DDD2 !important; transition: all 0.3s ease !important; } /* тёплая рамка */
.thumb-btn.active-thumb { border-color: var(--aq-blue) !important; box-shadow: 0 0 0 1px var(--aq-blue), 0 4px 12px var(--aq-blue-glow) !important; }

@media (max-width: 767px) { main#msProduct .product-main-photo-wrapper { aspect-ratio: 1 / 1 !important; max-height: 38vh !important; border-radius: 24px !important; } main#msProduct .product-image-slide { padding: 8px !important; } }
@media (orientation: landscape) and (max-width: 940px) { main#msProduct .product-main-photo-wrapper { aspect-ratio: 1 / 1 !important; max-height: 52vh !important; border-radius: 20px !important; } main#msProduct .product-image-slide { padding: 6px !important; } }


/* =========================================================================
   16. МОБИЛЬНАЯ И ДЕСКТОПНАЯ НАВИГАЦИЯ (КОМПАКТНАЯ В 1 ЛИНИЮ)
   ========================================================================= */

/* А. ДЕСКТОП: Парящее меню на ПК */
#js-floating-desktop-menu {
    z-index: 80 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.js-aside-btn.active-aside {
    color: var(--aq-black) !important;
    background-color: #FFFDF9 !important;    /* тёплый белый */
    box-shadow: 0 4px 14px rgba(42, 31, 20, 0.05) !important;
    border: 1px solid #E8DDD2 !important;    /* тёплый бордер */
}
.js-aside-btn.active-aside span { opacity: 1 !important; }


/* Б. МОБИЛЬНЫЙ ДОК */
#sticky-mobile-parent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    
    padding: 8px 12px 14px 12px !important;
    background-color: rgba(255, 253, 249, 0.95) !important; /* тёплый белый */
    backdrop-filter: saturate(190%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(190%) blur(20px) !important;
    border-top: 1px solid rgba(201, 139, 95, 0.12) !important; /* тёплая линия */
    
    transform: translateY(100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 -10px 40px rgba(42, 31, 20, 0.04) !important;
}

#sticky-mobile-parent.visible-dock {
    transform: translateY(0) !important;
}

@media (min-width: 1024px) {
    #sticky-mobile-parent {
        display: none !important;
    }
}

/* 1. СЛЕВА: Кнопка Назад */
.sticky-dock-left {
    display: flex !important;
    flex-shrink: 0 !important;
}

.sticky-cart-back-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #F5F0EA !important;    /* тёплый кремовый */
    color: #6B5848 !important;              /* тёплый secondary */
    border: 1px solid #E8DDD2 !important;
    border-radius: 12px !important;
    width: 44px !important;
    height: 44px !important;
    transition: background-color 0.2s !important;
}
.sticky-cart-back-btn svg { width: 22px; height: 22px; }

/* 2. ЦЕНТР: Навигация по табам */
#product-tabs-navigation {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex-grow: 1 !important;
    justify-content: center !important;
}

.tabs-scroll-container {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.js-mob-tab-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    background-color: transparent !important;
    border: 1px solid transparent !important;
    color: #A08878 !important;              /* тёплый muted */
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.js-mob-tab-btn svg {
    width: 20px;
    height: 20px;
}

.js-mob-tab-btn.active-mob-tab {
    color: #2A1F14 !important;
    background-color: rgba(201, 139, 95, 0.10) !important; /* тёплый tint */
    box-shadow: inset 0 0 0 1px rgba(201, 139, 95, 0.28) !important;
}

/* 3. СПРАВА: Кнопка Цена + Корзина */
.sticky-dock-right {
    display: flex !important;
    flex-shrink: 0 !important;
}

.sticky-cart-submit-combo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background-color: #2A1F14 !important;   /* тёплый чёрный */
    color: #ffffff !important;
    border-radius: 12px !important;
    height: 44px !important;
    padding: 0 14px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 14px rgba(42, 31, 20, 0.14) !important;
}

.sticky-cart-submit-combo:active { 
    background-color: var(--aq-blue) !important; /* янтарь при нажатии */
    color: #ffffff !important; 
    transform: scale(0.96); 
}

.sticky-combo-price {
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
}

.sticky-combo-divider {
    width: 1px !important;
    height: 20px !important;
    background-color: rgba(255, 255, 255, 0.22) !important;
}

.sticky-cart-submit-combo svg { 
    width: 18px; 
    height: 18px; 
    flex-shrink: 0 !important;
}


/* =========================================================================
   17. АДАПТИВНОСТЬ (Ландшафт)
   ========================================================================= */

@media (orientation: landscape) and (max-width: 940px) {
    #sticky-mobile-parent {
        padding: 6px 16px 8px 16px !important;
        gap: 12px !important;
    }
    
    .sticky-cart-back-btn { width: 38px !important; height: 38px !important; border-radius: 10px !important; }
    .sticky-cart-back-btn svg { width: 18px; height: 18px; }
    
    .sticky-cart-submit-combo { height: 38px !important; border-radius: 10px !important; padding: 0 12px !important; gap: 6px !important; }
    .sticky-combo-price { font-size: 13px !important; }
    .sticky-combo-divider { height: 16px !important; }
    .sticky-cart-submit-combo svg { width: 16px; height: 16px; }
    
    .js-mob-tab-btn { width: 34px !important; height: 34px !important; }
    .js-mob-tab-btn svg { width: 18px; height: 18px; }
}

/* =========================================================================
   hh- ИЗОЛИРОВАННЫЙ КОМПЛЕКС СТИЛЕЙ ДЛЯ КАРТОЧКИ ТОВАРА
   ========================================================================= */

.hh-product-page .hh-tabs-container {
    position: relative !important;
}

.hh-product-page .thumb-btn {
    border: 1px solid #E8DDD2 !important;   /* тёплый */
    transition: all 0.2s ease !important;
}
.hh-product-page .thumb-btn.active-thumb,
.hh-product-page .thumb-btn:hover {
    border-color: var(--aq-blue) !important;
    box-shadow: 0 0 0 1px var(--aq-blue), 0 4px 12px var(--aq-blue-glow) !important;
}

.hh-product-page .hh-specs-modern-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    background: transparent !important;
}
.hh-product-page .hh-spec-card-item {
    background: #FFFDF9 !important;         /* тёплый белый */
    border: 1px solid #E8DDD2 !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    transition: all 0.2s ease !important;
}
.hh-product-page .hh-spec-card-item:hover {
    border-color: var(--aq-border-hover) !important;
    box-shadow: var(--aq-shadow-hover) !important;
}
.hh-product-page .hh-spec-card-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #A08878 !important;              /* тёплый muted */
    letter-spacing: 0.05em !important;
}
.hh-product-page .hh-spec-card-value {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--aq-black) !important;
}

@media (max-width: 639px) {
    .hh-product-page .hh-specs-modern-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* ==========================================================================
   МЕГА-ФИКС ДЛЯ МОБИЛЬНОГО ЛАНДШАФТА
   ========================================================================== */
@media (orientation: landscape) and (max-width: 1023px) {
    .hh-product-page .landscape-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: start !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .hh-product-page .landscape-gallery {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: start !important;
        gap: 12px !important;
        width: 50% !important;
        flex-shrink: 0 !important;
        position: sticky !important;
        top: 80px !important;
    }

    .hh-product-page .landscape-thumbs-sidebar {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        max-height: 52vh !important;
        width: 64px !important;
        overflow-y: auto !important;
        order: 1 !important;
        flex-shrink: 0 !important;
    }
    .hh-product-page .landscape-thumbs-sidebar .thumb-btn {
        width: 48px !important;
        height: 48px !important;
        padding: 2px !important;
        border-radius: 10px !important;
    }

    .hh-product-page .product-main-photo-wrapper {
        order: 2 !important;
        flex-grow: 1 !important;
        height: auto !important;
        max-height: 52vh !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 16px !important;
        padding: 8px !important;
    }

    .hh-product-page .landscape-info {
        width: 50% !important;
        flex-grow: 1 !important;
        gap: 12px !important;
    }

    .hh-product-page .product-purchase-row {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
        gap: 12px !important;
    }
    .hh-product-page .product-qty-selector {
        height: 42px !important;
        width: 95px !important;
    }
    .hh-product-page .submit-cart-btn {
        height: 42px !important;
        font-size: 12px !important;
        padding: 0 20px !important;
    }
}