/* ========================================
   ОБЩИЕ ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ
   ======================================== */

:root {
    --primary-yellow: #FFC107;
    --dark-gray: #212121;
    --text-gray: #616161;
    --border-gray: #e0e0e0;
}

* {
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', Arial, Helvetica, sans-serif;
}

.product-name {
    font-family: 'Nunito', Arial, Helvetica, sans-serif;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark-gray);
}
.home-page {
    margin-bottom: 0;
    padding-bottom: 0;
}
a{

    color:#FFC107;

    transition:.3s;
}

a:hover{

    color:#d89b00;
}
/* ----- Контейнер ----- */
.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}
main{
    padding: 40px 0 80px;
}

/* ========================================
   УНИВЕРСАЛЬНАЯ ЖЁЛТАЯ КНОПКА
======================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 42px;

    background:#FFC928;
    color:#212121;

    border:1px solid #FFC928;
    border-radius:8px;

    text-decoration:none;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:.25s ease;
}

.btn:hover{
    background:#ffb800;
    border-color:#ffb800;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(255,193,7,.35);
}

.btn:active{
    transform:translateY(0);
}

.btn:disabled{
    opacity:.6;
    cursor:not-allowed;
}
 /* ==========================
   БРЕНДЫ (обновлённый)
========================== */

.home-brands {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin: 0 0 50px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 10px;
    margin: 14px auto 0;
}

/* ---------- Обёртка слайдера со стрелками ---------- */
.brands-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ---------- Swiper ---------- */
.steklobit-brands-slider {
    flex: 1;
    padding: 10px 0;
}

.steklobit-brands-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---------- Стрелки (только жёлтая галочка) ---------- */
.brands-prev,
.brands-next {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.25s;
    
    /* Убираем круг и фон */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    
    /* Размер области клика */
    width: 40px;
    height: 40px;
    
    /* Жёлтый цвет */
    color: #FFC107;
}

.brands-prev:hover,
.brands-next:hover {
    color: #e6a800; /* чуть темнее при наведении */
    transform: scale(1.1); /* лёгкое увеличение */
}

/* Размер самой иконки */
.brands-prev svg,
.brands-next svg {
    display: block;
    width: 32px;   /* делаем побольше, как на скрине */
    height: 32px;
    stroke: currentColor;
    stroke-width: 3;    /* жирная линия, как галочка */
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ---------- Логотип (без карточки) ---------- */
.brand-card {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
    height: 70px;
}

.brand-card img {
    max-width: 130px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: 0.3s;
}

.brand-card:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
}

/* ---------- Кнопка "Все бренды" ---------- */
.brands-footer {
    text-align: center;
    margin-top: 35px;
}

.brands-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 42px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #212121;
    text-decoration: none;
    transition: 0.25s;
    font-weight: 600;
    font-size: 16px;
}

.brands-button:hover {
    background: #FFC928;
    color: #fff;
    border-color: #FFC928;
}

/* ---------- Адаптив ---------- */
@media (max-width: 768px) {
    .brands-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .brands-slider-wrapper {
        gap: 10px;
    }

    .brands-prev,
    .brands-next {
        width: 38px;
        height: 38px;
    }

    .brand-card img {
        max-width: 100px;
        max-height: 36px;
    }

    .brands-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* ========================================
   СТРАНИЦА ТОВАРА (.single-product)
   ======================================== */

.product-page {
    display: flex;
    gap: 30px;
}
/* Кнопка купить во всех карточках WooCommerce */

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce a.button,
.woocommerce-page a.button {

    width:100%;
    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#FFC107 !important;
    color:#fff !important;

    border:none !important;
    border-radius:12px !important;

    font-size:20px;
    font-weight:600;

    transition:0.3s;
}


/* hover */

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover {

    background:#e5a900 !important;
    color:#fff !important;
}
/* ==========================================
   ПОПУЛЯРНЫЕ ТОВАРЫ НА ГЛАВНОЙ (.home-featured)
   ========================================== */

.home-featured {
    padding: 60px 0;
}

/* ----- Сетка товаров ----- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.products-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.steklobit-products-slider {
    flex: 1;
    overflow: hidden;
    padding: 10px 0;
}

.steklobit-products-slider .swiper-slide {
    height: auto;
    display: flex;
}

.steklobit-products-slider .swiper-slide .product-card {
    width: 100%;
}

.products-prev,
.products-next {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.25s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 40px;
    height: 40px;
    color: #FFC107;
    flex-shrink: 0;
}

.products-prev:hover,
.products-next:hover {
    color: #e6a800;
    transform: scale(1.1);
}

.products-prev svg,
.products-next svg {
    display: block;
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ===================================
   Преимущества
=================================== */

.features-section{
    padding:70px 0;
    background:#FAFAFA;
}

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}
.feature-card{

    background:#fff;

    border-radius:18px;

    padding:40px 35px;

    text-align:center;

    border:1px solid #ececec;

    transition:.3s;

    min-height:320px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;
}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

 
}

/* ==========================
   Иконка
========================== */

.feature-icon{
    width:78px;
    height:78px;

    margin:0 auto 28px;

    border-radius:50%;

    background:#FFF8E1;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.feature-icon svg{
    width:38px;
    height:38px;
    fill:#FFC107;
    transition:.3s;
}

.feature-card:hover .feature-icon{
    background:#FFC107;
    transform:scale(1.08);
}

.feature-card:hover .feature-icon svg{
    fill:#fff;
}

/* ==========================
   Заголовок
========================== */

.feature-card h3{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
    line-height:1.3;
}

/* ==========================
   Текст
========================== */

.feature-card p{
    font-size:16px;
    line-height:1.7;
    color:#777;
    margin:0;
}

/* ==========================================
   НОВИНКИ НА ГЛАВНОЙ (.home-latest) — карусель
   ========================================== */

.home-latest {
    padding: 60px 0;
}

.latest-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.steklobit-latest-slider {
    flex: 1;
    overflow: hidden;
    padding: 10px 0;
}

.steklobit-latest-slider .swiper-slide {
    height: auto;
    display: flex;
}

.steklobit-latest-slider .swiper-slide .product-card {
    width: 100%;
}

.latest-prev,
.latest-next {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.25s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 40px;
    height: 40px;
    color: #FFC107;
    flex-shrink: 0;
}

.latest-prev:hover,
.latest-next:hover {
    color: #e6a800;
    transform: scale(1.1);
}

.latest-prev svg,
.latest-next svg {
    display: block;
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ===================================
   Отзывы - ФИНАЛЬНАЯ ВЕРСИЯ (компактная)
=================================== */

.home-reviews {
    padding: 80px 0;
}

#comments {
    max-width: 900px;
    margin: 0 auto 70px;
}

.comment-list {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0;
    list-style: none;
}

/* ----- СЕТКА КАРТОЧЕК ----- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 45px;
}

/* ----- КАРТОЧКА ОТЗЫВА (обновлённая) ----- */
.review-card {
    list-style: none;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 16px 22px 14px;        /* немного увеличил отступы для комфорта */
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
    transition: .3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
    margin-bottom: 20px;
}

/* Верхний блок – аватар слева, контент справа */
.review-header {
    display: flex;
    align-items: flex-start;   /* выравнивание по верхнему краю */
    gap: 14px;
    margin-bottom: 12px;       /* отступ от текста */
}

/* Аватар */
.review-header .avatar {
    width: 48px;               /* чуть увеличил для лучшей читаемости */
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

/* Правая часть (звёзды + имя) */
.review-header-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;              /* предотвращает переполнение */
}

/* Звёзды */
.review-stars {
    color: #FFC107;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 2px;        /* небольшой отступ до имени */
}

/* Имя автора */
.review-author {
    font-weight: 700;
    color: #222;
    font-size: 15px;
    font-style: normal;
    line-height: 1.3;
}

/* Дата (если нужна) – располагается под именем */
.review-date {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* Текст отзыва – без изменений, остаётся снизу */
.review-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 80px;
}

/* ----- ДЛЯ СТРАНИЦЫ ОТЗЫВОВ (если используется comments_template) ----- */
.comment-author .fn {
    font-weight: 700;
    color: #222;
    font-size: 16px;
    font-style: normal;
}

.comment-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 12px;
}

.comment-meta {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 12px;
    color: #FFC107;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.comment-reply-link:hover {
    color: #d89b00;
}

/* ----- ПУСТОЙ БЛОК ----- */
.reviews-empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
}

.reviews-empty h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.reviews-empty p {
    color: #777;
    font-size: 18px;
    margin-bottom: 30px;
}

/* ----- КНОПКИ ----- */
.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
}

.btn-yellow,
.reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: #FFC107;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
    border: none;
    cursor: pointer;
}

.btn-yellow:hover,
.reviews-btn:hover {
    background: #e3aa00;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: 2px solid #FFC107;
    color: #222;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: #FFC107;
    color: #fff;
    transform: translateY(-2px);
}

/* ----- АДАПТИВ ----- */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card,
    #comments .comment,
    .comment-list li.comment {
        padding: 18px;
        min-height: auto;
    }

    .reviews-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-yellow,
    .reviews-btn,
    .btn-outline {
        width: 100%;
        max-width: 280px;
    }
}
.comment-reply-link{

    display:inline-block;

 

    padding:10px 20px;

    border:2px solid #FFC107;

    border-radius:8px;

    color:#FFC107;

    font-weight:700;
}

.comment-reply-link:hover{

    background:#FFC107;

    color:#fff;
}
 /* ========================================
   КОНТАКТЫ НА ГЛАВНОЙ
======================================== */

.home-contacts{
    padding:80px 0;
    background:#fafafa;
}

.contacts-inner{
    display:grid;
    grid-template-columns:430px 1fr;
    gap:35px;
    align-items:stretch;
}

/* -------------------------
   Левая колонка
--------------------------*/

.contacts-info{

    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-item{

    display:flex;
    align-items:center;

    gap:18px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:24px;

    transition:.3s;
}

.contact-item:hover{

    transform:translateY(-4px);

    box-shadow:0 16px 35px rgba(0,0,0,.07);

    border-color:#ddd;
}

/* -------------------------
   Иконка
--------------------------*/

.contact-icon{

    width:62px;
    height:62px;

    border-radius:50%;

    background:#FFF8E1;

    color:#FFC107;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    flex-shrink:0;

    transition:.3s;
}

.contact-item:hover .contact-icon{

    background:#FFC107;

    color:#fff;

    transform:scale(1.08);
}

/* -------------------------
   Текст
--------------------------*/

.contact-label{

    font-size:14px;

    color:#888;

    margin-bottom:6px;
}

.contact-item a,
.contact-item span{

    font-size:18px;

    font-weight:700;

    color:#212121;

    text-decoration:none;
}

.contact-item a:hover{

    color:#FFC107;
}

/* -------------------------
   Карта
--------------------------*/

.contacts-map{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    overflow:hidden;

    min-height:420px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.contacts-map:hover{

    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.contacts-map iframe{

    width:100%;
    height:100%;
    border:0;
}

.no-data{

    color:#999;

    font-size:18px;

    text-align:center;

    padding:40px;
}

/* -------------------------
   Адаптив
--------------------------*/

@media(max-width:992px){

    .contacts-inner{

        grid-template-columns:1fr;
    }

    .contacts-map{

        min-height:350px;
    }
}

@media(max-width:576px){

    .home-contacts{

        padding:60px 0;
    }

    .contact-item{

        padding:18px;
    }

    .contact-icon{

        width:54px;
        height:54px;

        font-size:24px;
    }

    .contact-item a,
    .contact-item span{

        font-size:16px;
    }

    .contacts-map{

        min-height:260px;
    }
}



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

.home-contacts{
    padding:80px 0;
    background:#fafafa;
}

/* -----------------------------
   Две колонки
----------------------------- */

.contacts-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:35px;
    align-items:stretch;
}

/* -----------------------------
   Общие карточки
----------------------------- */

.contacts-card,
.contact-form-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:35px;

    transition:.3s;
}

.contacts-card:hover,
.contact-form-card:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* -----------------------------
   Заголовки
----------------------------- */

.contacts-card h3,
.contact-form-card h3{

    margin:0 0 30px;

    font-size:28px;

    font-weight:700;

    color:#212121;
}

/* -----------------------------
   Контакт
----------------------------- */

.contact-row{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 0;

    border-bottom:1px solid #f2f2f2;
}

.contact-row:last-of-type{

    border-bottom:none;
}

/* -----------------------------
   Иконка
----------------------------- */

.contact-icon{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#FFF8E1;

    color:#FFC107;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

    transition:.3s;
}

.contact-row:hover .contact-icon{

    background:#FFC107;

    color:#fff;

    transform:scale(1.08);
}

/* -----------------------------
   Заголовок
----------------------------- */

.contact-title{

    font-size:14px;

    color:#888;

    margin-bottom:6px;
}

/* -----------------------------
   Значение
----------------------------- */

.contact-row a,
.contact-row span{

    font-size:18px;

    font-weight:700;

    color:#212121;

    text-decoration:none;
}

.contact-row a:hover{

    color:#FFC107;
}

/* -----------------------------
   Соцсети
----------------------------- */

.contact-social{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:30px;
}

.btn-social{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    border-radius:8px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    transition:.25s;
}

.btn-social:hover{

    transform:translateY(-3px);

    color:#fff;
}

.whatsapp{

    background:#25D366;
}

.telegram{

    background:#2AABEE;
}

.viber{

    background:#7360F2;
}

/* -----------------------------
   Информационный блок
----------------------------- */

.contacts-note{

    margin-top:35px;

    padding:22px;

    background:#FFF8E1;

    border-left:4px solid #FFC107;

    border-radius:12px;
}

.contacts-note strong{

    display:block;

    font-size:18px;

    margin-bottom:8px;
}

.contacts-note p{

    margin:0;

    color:#666;

    line-height:1.6;
}

/* ========================================
   ФОРМА
======================================== */

.contact-form-card form{

    margin-top:10px;
}

.contact-form-card label{

    display:block;

    font-weight:600;

    margin-bottom:8px;

    color:#212121;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select{

    width:100%;

    border:1px solid #ddd;

    border-radius:10px;

    padding:14px 18px;

    font-size:15px;

    margin-bottom:18px;

    transition:.25s;

    outline:none;
}

.contact-form-card textarea{

    min-height:170px;

    resize:vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus{

    border-color:#FFC107;

    box-shadow:0 0 0 4px rgba(255,193,7,.15);
}

/* Кнопка формы */

.contact-form-card input[type=submit],
.contact-form-card button,
.contact-form-card .wpcf7-submit{

    width:100%;

    border:none;

    cursor:pointer;

    background:#FFC107;

    color:#212121;

    font-weight:700;

    font-size:17px;

    padding:16px;

    border-radius:10px;

    transition:.25s;
}

.contact-form-card input[type=submit]:hover,
.contact-form-card button:hover,
.contact-form-card .wpcf7-submit:hover{

    background:#e3aa00;

    color:#fff;

    transform:translateY(-2px);
}

/* ========================================
   АДАПТИВ
======================================== */

@media(max-width:992px){

    .contacts-grid{

        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .home-contacts{

        padding:60px 0;
    }

    .contacts-card,
    .contact-form-card{

        padding:25px;
    }

    .contact-row{

        align-items:flex-start;
    }

    .contact-row a,
    .contact-row span{

        font-size:16px;
    }

    .contacts-card h3,
    .contact-form-card h3{

        font-size:24px;
    }

    .contact-social{

        flex-direction:column;
    }

    .btn-social{

        width:100%;
    }

}
.contact-icon svg{
    width:24px;
    height:24px;
    stroke:currentColor;
}

.contact-form-text{
    margin:-10px 0 25px;
    color:#777;
    line-height:1.6;
    font-size:15px;
}
.contacts-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:35px;
    align-items:stretch;
}

.ct-info-card,
.contact-form-card{
    height:100%;
}

/* ===================================
   WooCommerce category top bar
   =================================== */

.woocommerce .woocommerce-breadcrumb {

    max-width:1200px;
    margin:25px auto 0;

    padding:16px 25px;

    background:#fff;

    border:1px solid #eeeeee;

    border-radius:16px 16px 0 0;

    font-size:14px;

    color:#999;

}


/* строка количества + сортировка */

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {

    max-width:1200px;

    background:#fff;

    margin:0 auto;

}


/* количество */

.woocommerce .woocommerce-result-count {

    float:left;

    padding:18px 25px;

    color:#999;

    font-size:14px;

}


/* сортировка */

.woocommerce .woocommerce-ordering {

    float:right;

    padding:12px 25px;

}


/* нижняя часть карточки */

.woocommerce .woocommerce-result-count:after {

    content:"";

}


/* объединяем визуально */

.woocommerce .woocommerce-ordering select {

    height:38px;

    border-radius:10px;

    border:1px solid #e5e5e5;

    padding:0 15px;

    font-size:14px;

}


/* убрать лишние края */

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {

    border-bottom:1px solid #eee;

}


/* адаптация */

@media(max-width:768px){

    .woocommerce .woocommerce-result-count,
    .woocommerce .woocommerce-ordering {

        float:none;

        width:100%;

        text-align:center;

    }

}
.page-about {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.page-about .home-map {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.page-about .home-map iframe {
    display: block;
}

/* ===== QUICK BUY MODAL ===== */

.quick-modal {

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:9999;

}


.quick-modal.active {

    display:flex;

    align-items:center;
    justify-content:center;

}


.quick-modal-overlay {

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.5);

}



.quick-modal-box {

    position:relative;

    background:#fff;

    width:420px;
    max-width:90%;

    padding:30px;

    border-radius:20px;

    z-index:2;

}



.quick-modal-close {

    position:absolute;

    right:15px;
    top:10px;

    border:0;

    background:none;

    font-size:30px;

    cursor:pointer;

}
.product-quick-buy {
    text-align:center;
    margin:8px 0;
}


.quick-buy-link {

    font-size:13px;

    color:#888;

    text-decoration:underline;

    cursor:pointer;

}


.quick-buy-link:hover {

    color:#FFC107;

}
/* ========================================
   QUICK BUY MODAL - STEKLOBIT STYLE
======================================== */
/* =================================
   QUICK BUY MODAL - стиль магазина
================================= */

.quick-modal-box h3{
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin:0 0 30px;
    color:#212121;
}


/* подписи полей */

.quick-modal-box label{

    display:block;

    font-size:14px;

    font-weight:600;

    color:#777;

    margin-bottom:8px;

}


/* поля */

.quick-modal-box input[type="tel"],
.quick-modal-box textarea{

    width:100%;

    border:1px solid #e0e0e0;

    border-radius:12px;

    padding:14px 16px;

    font-size:15px;

    color:#212121;

    outline:none;

    transition:.25s;

    margin-bottom:20px;

    font-family:inherit;

}


/* фокус */

.quick-modal-box input[type="tel"]:focus,
.quick-modal-box textarea:focus{

    border-color:#FFC107;

    box-shadow:0 0 0 4px rgba(255,193,7,.15);

}


/* сообщение */

.quick-modal-box textarea{

    height:120px;

    resize:none;

}


/* кнопка */

.quick-modal-box .wpcf7-submit{

    width:100%;

    height:48px;

    border:none;

    border-radius:12px;

    background:#FFC107;

    color:#212121;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}


.quick-modal-box .wpcf7-submit:hover{

    background:#e5a900;

    color:#fff;

}


/* низ под кнопкой */

.quick-modal-box .quick-info-text{

    text-align:center;

    margin-top:25px;

    color:#888;

    font-size:14px;

    line-height:1.5;

}


/* крестик */

.quick-modal-close{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#FFF8E1;

    color:#FFC107;

    font-size:24px;

    line-height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

}


/* мобильный */

@media(max-width:576px){

    .quick-modal-box {

        padding:25px;

    }


    .quick-modal-box h3 {

        font-size:24px;

    }

}
/* =====================================================
   СТРАНИЦА ВСЕХ БРЕНДОВ
===================================================== */

.brands-all-page {
    margin: 20px 0 60px;
}

.brands-all-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-all-card {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
}

.brand-all-card img {
    max-width: 150px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.25s;
}

.brand-all-card:hover {
    border-color: #FFC107;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.brand-all-card:hover img {
    filter: none;
    opacity: 1;
}

.brand-all-name {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    text-align: center;
}

@media (max-width: 992px) {
    .brands-all-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .brands-all-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .brands-all-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* =====================================================
   STEKLOBIT — BRAND PAGE
===================================================== */

.brand-page {
    padding-bottom: 50px;
}


/* =====================================================
   ЗАГОЛОВОК БРЕНДА
   Используем тот же catalog-header,
   что и у страницы категорий
===================================================== */

.brand-page .catalog-header {
    text-align: center;
}
/* =====================================================
   ХЛЕБНЫЕ КРОШКИ В CATALOG-TOOLBAR
===================================================== */

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 25px 40px ;

    margin-bottom: 25px;

    border-bottom: 1px solid #f0f0f0;
}

.catalog-breadcrumbs {
    flex: 1;
    min-width: 200px;
    width: 100%; /* Добавить эту строку */
}

.catalog-breadcrumbs .woocommerce-breadcrumb {
    margin: 0;

    padding: 15px!important;

    font-size: 14px;

    color: #777;
}

.catalog-breadcrumbs .woocommerce-breadcrumb a {
    color: #212121;

    text-decoration: none;
}

.catalog-breadcrumbs .woocommerce-breadcrumb a:hover {
    color: #FFC107;
}

.catalog-breadcrumbs .woocommerce-breadcrumb .breadcrumb-separator {
    margin: 0 5px;

    color: #ccc;
}

.catalog-breadcrumbs .woocommerce-breadcrumb .breadcrumb-current {
    color: #212121;

    font-weight: 600;
}

.catalog-ordering {
    flex-shrink: 0;
}

.catalog-ordering .woocommerce-ordering {
    margin: 0;

    float: none;
}

.catalog-ordering .woocommerce-ordering select {
    padding: 8px 30px 8px 12px;

    border: 1px solid #e0e0e0;
    border-radius: 7px;

    background: #fff;

    color: #212121;

    font-size: 13px;

    cursor: pointer;

    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.catalog-ordering .woocommerce-ordering select:focus {
    outline: none;

    border-color: #FFC107;

    box-shadow: 0 0 0 2px rgba(255, 193, 7, .15);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .catalog-toolbar {
        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        padding: 12px 0;
    }

    .catalog-breadcrumbs {
        font-size: 13px;
    }

    .catalog-ordering .woocommerce-ordering select {
        width: 100%;

        padding: 10px 30px 10px 12px;

        font-size: 14px;
    }

}

/* =====================================================
   БЛОК БРЕНДА
===================================================== */

.brand-category-box {
    display: flex;
    align-items: flex-start;

    width: 100%;

    padding: 20px;

    margin-bottom: 30px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #e0e0e0;
    border-radius: 10px;

    gap: 20px;
}


/* =====================================================
   ЛОГОТИП
===================================================== */

.brand-category-logo {
    width: 90px;
    height: 90px;

    flex: 0 0 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #e0e0e0;
    border-radius: 8px;

    overflow: hidden;
}

.brand-category-logo img {
    display: block;

    width: 100%;
    height: 100%;

    padding: 10px;

    box-sizing: border-box;

    object-fit: contain;
}


/* =====================================================
   КОНТЕНТ СПРАВА ОТ ЛОГОТИПА
===================================================== */

.brand-category-content {
    flex: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}


/* =====================================================
   ЦЕНТРИРОВАННЫЙ БЛОК С КАТЕГОРИЯМИ
===================================================== */

.brand-category-center {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    text-align: center;
}


/* =====================================================
   ЗАГОЛОВОК "КАТЕГОРИИ LENOVO 186 ТОВАРОВ"
===================================================== */

.brand-category-title {
    display: flex;
    align-items: baseline;
    justify-content: center;

    gap: 10px;

    margin-bottom: 14px;

    width: 100%;
}

.brand-category-title h2 {
    margin: 0;

    color: #212121;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 700;
}

.brand-category-total {
    color: #777;

    font-size: 14px;
    white-space: nowrap;
}


/* =====================================================
   КНОПКИ КАТЕГОРИЙ
===================================================== */

.brand-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    align-items: center;

    gap: 8px;

    width: 100%;
}

.brand-category-card {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-height: 38px;

    padding: 7px 12px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #e0e0e0;
    border-radius: 7px;

    color: #212121;

    font-size: 13px;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.brand-category-card strong {
    font-weight: 600;
}

.brand-category-card small {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 21px;
    height: 21px;

    padding: 0 5px;

    box-sizing: border-box;

    border-radius: 11px;

    background: #f3f3f3;

    color: #777;

    font-size: 11px;

    font-weight: 600;
}


/* =====================================================
   HOVER
===================================================== */

.brand-category-card:hover {
    background: #fff;

    border-color: #FFC107;

    color: #212121;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .06);
}

.brand-category-card:hover small {
    background: #FFC107;

    color: #212121;
}


/* =====================================================
   ACTIVE
===================================================== */

.brand-category-card.active {
    background: #FFC107;

    border-color: #FFC107;

    color: #212121;

    box-shadow:
        0 2px 8px rgba(255, 193, 7, .18);
}

.brand-category-card.active small {
    background: rgba(255, 255, 255, .55);

    color: #212121;
}


/* =====================================================
   ЗАГОЛОВОК ТОВАРОВ
===================================================== */

.brand-products-heading {
    display: flex;

    justify-content: center;

    margin-bottom: 20px;
}

.brand-products-heading h2 {
    position: relative;

    margin: 0;

    padding-bottom: 9px;

    color: #212121;

    font-size: 21px;

    line-height: 1.3;

    text-align: center;
}

.brand-products-heading h2::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 42px;
    height: 3px;

    transform: translateX(-50%);

    background: #FFC107;

    border-radius: 3px;
}


/* =====================================================
   ПАГИНАЦИЯ
===================================================== */

.brand-pagination {
    display: flex;

    justify-content: center;

    margin-top: 30px;
}

.brand-pagination ul {
    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.brand-pagination li {
    margin: 0;
}

.brand-pagination a,
.brand-pagination span {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    padding: 0 9px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #e0e0e0;
    border-radius: 7px;

    color: #212121;

    font-size: 13px;

    text-decoration: none;
}

.brand-pagination a:hover {
    background: #FFC107;

    border-color: #FFC107;
}

.brand-pagination .current {
    background: #FFC107;

    border-color: #FFC107;

    color: #212121;

    font-weight: 600;
}


/* =====================================================
   НЕТ ТОВАРОВ
===================================================== */

.brand-no-products {
    max-width: 550px;

    margin: 30px auto;

    padding: 40px 25px;

    box-sizing: border-box;

    text-align: center;

    background: #fff;

    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.brand-no-products-icon {
    margin-bottom: 10px;

    font-size: 30px;
}

.brand-no-products h3 {
    margin: 0 0 8px;

    font-size: 20px;

    color: #212121;
}

.brand-no-products p {
    margin: 0 0 20px;

    color: #777;

    font-size: 14px;
}


/* =====================================================
   КНОПКА
===================================================== */

.brand-back-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 8px 16px;

    box-sizing: border-box;

    background: #FFC107;

    border: 1px solid #FFC107;
    border-radius: 7px;

    color: #212121;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;
}

.brand-back-button:hover {
    background: #e5ac00;

    border-color: #e5ac00;

    color: #212121;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .brand-category-box {
        padding: 15px;

        gap: 14px;
    }

    .brand-category-logo {
        width: 60px;
        height: 60px;

        flex-basis: 60px;
    }

    .brand-category-logo img {
        padding: 7px;
    }

    .brand-category-title {
        flex-wrap: wrap;
        justify-content: center;

        margin-bottom: 12px;
    }

    .brand-category-title h2 {
        font-size: 18px;
    }

    .brand-category-total {
        display: inline-block;

        margin-top: 0;
    }

    .brand-categories-grid {
        gap: 6px;
    }

    .brand-category-card {
        min-height: 36px;

        padding: 6px 9px;

        font-size: 12px;
    }

    .brand-category-card small {
        min-width: 18px;
        height: 18px;

        font-size: 10px;
    }

    .brand-products-heading h2 {
        font-size: 19px;
    }

}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    max-width: 1200px;
    background: #fff;
    margin: 0 auto;
}
.woocommerce .woocommerce-breadcrumb {
    max-width: 1200px;
    margin: 25px auto 0;
    padding: 16px 25px;
    background: #fff;
    /* ... */
}/* =========================================================
   STEKLOBIT CHECKOUT — ГОРИЗОНТАЛЬНЫЕ КАРТОЧКИ
   ОДНА КАРТОЧКА НА ВСЮ ШИРИНУ
   (база не изменена, добавлены только новые правила внизу)
========================================================= */

.steklobit-checkout {
	--sb-yellow: #FFC107;
	--sb-dark: #212121;
	--sb-text: #616161;
	--sb-border: #e0e0e0;
	--sb-bg: #f7f7f7;
}

.steklobit-checkout-wrap {
	width: 100% !important;
	max-width: 1100px !important;
	margin: 0 auto !important;

	display: flex !important;
	flex-direction: column !important;

	gap: 16px !important;
}

.steklobit-checkout-main {
	display: contents !important;
}

/* =========================================================
   КАРТОЧКИ
========================================================= */

.steklobit-checkout-section,
.steklobit-order-box,
.steklobit-place-order {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;

	box-sizing: border-box !important;

	margin: 0 !important;

	padding: 20px !important;

	background: #fff;

	border: 1px solid #e0e0e0;

	border-radius: 14px;
}

/* =========================================================
   ЗАГОЛОВКИ КАРТОЧЕК
========================================================= */

.steklobit-section-title,
.steklobit-order-box-title {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin-bottom: 18px;
}

.steklobit-section-number {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--sb-yellow);
	color: var(--sb-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
}

.steklobit-section-title h2,
.steklobit-order-box-title h2 {
	margin: 0;
	font-size: 19px;
	line-height: 1.25;
	color: var(--sb-dark);
}

.steklobit-section-title p {
	margin: 4px 0 0;
	font-size: 12px;
	color: var(--sb-text);
}

/* =========================================================
   ПОЛЯ КОНТАКТОВ
========================================================= */

.steklobit-contact-fields {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* NEW: Имя + Фамилия в одну строку на десктопе */
.steklobit-name-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

@media (max-width: 500px) {
	.steklobit-name-row {
		grid-template-columns: 1fr;
	}
}

.steklobit-checkout .form-row {
	width: 100% !important;
	float: none !important;

	margin: 0 0 10px 0 !important;
	padding: 0 !important;
}

.steklobit-name-row .form-row {
	margin: 0 !important;
}

.steklobit-checkout input.input-text,
.steklobit-checkout textarea,
.steklobit-checkout select {
	width: 100% !important;
	max-width: 100% !important;

	box-sizing: border-box !important;

	border: 1px solid var(--sb-border);
	border-radius: 9px;
	padding: 11px 12px;
	background: #fff;
}

.steklobit-checkout textarea {
	min-height: 105px;
	resize: vertical;
}

/* =========================================================
   ДОСТАВКА
========================================================= */

.steklobit-delivery-section {
	width: 100% !important;
}

.steklobit-shipping-methods {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.steklobit-delivery-method-wrapper {
	border: 1px solid var(--sb-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.steklobit-delivery-method {
	display: grid;
	grid-template-columns: 20px 30px minmax(0, 1fr) auto;
	gap: 9px;
	align-items: center;
	padding: 11px;
	cursor: pointer;
}

.steklobit-delivery-method input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.steklobit-delivery-radio {
	width: 17px;
	height: 17px;
	border: 2px solid #bbb;
	border-radius: 50%;
	position: relative;
	box-sizing: border-box;
}

.steklobit-delivery-method input:checked + .steklobit-delivery-radio {
	border-color: var(--sb-yellow);
}

.steklobit-delivery-method input:checked + .steklobit-delivery-radio:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sb-yellow);
	left: 3px;
	top: 3px;
}

.steklobit-delivery-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--sb-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.steklobit-delivery-content {
	min-width: 0;
}

.steklobit-delivery-content strong {
	display: block;
	color: var(--sb-dark);
	font-size: 14px;
}

.steklobit-delivery-content small {
	display: block;
	margin-top: 2px;
	color: var(--sb-text);
	font-size: 11px;
	line-height: 1.3;
}

.steklobit-delivery-cost {
	white-space: nowrap;
	font-size: 12px;
	font-weight: 700;
}

/* CHANGED: было display:none + .show()/.hide() -> теперь max-height/opacity,
   чтобы select2/chosen внутри плагинов доставки инициализировались
   корректно ещё до визуального раскрытия блока. */
.steklobit-pickup-details {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 12px;
	border-top: 0 solid var(--sb-border);
	background: var(--sb-bg);
	font-size: 12px;
	transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
}

.steklobit-pickup-details.steklobit-visible {
	max-height: 400px;
	opacity: 1;
	padding: 12px;
	border-top: 1px solid var(--sb-border);
}

.steklobit-pickup-address {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.steklobit-pickup-note {
	margin-top: 8px;
	color: var(--sb-text);
}

/* =========================================================
   ВИДЖЕТ ВЫБОРА ОТДЕЛЕНИЯ (Nova Post / Укрпочта)
========================================================= */

/* CHANGED: контейнер больше не display:none по умолчанию — он в потоке,
   но визуально свёрнут через max-height/opacity. Это чинит невыбираемый
   город/отделение у плагинов на select2/chosen. */
.steklobit-shipping-plugin-fields {
	width: 100% !important;
	box-sizing: border-box !important;

	margin: 0 !important;
	padding: 0 13px;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	border-top: 0 solid var(--sb-border);
	background: var(--sb-bg);
	transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
}

.steklobit-shipping-plugin-fields.steklobit-visible {
	max-height: 1000px;
	opacity: 1;
	padding: 13px;
	border-top: 1px solid var(--sb-border);
	/* overflow: visible нужен ПОСЛЕ раскрытия — иначе выпадающий список
	   выбора города/отделения (select2/chosen) будет обрезан рамкой
	   блока и будет казаться, что "не открывается". */
	overflow: visible;
}

.steklobit-shipping-plugin-fields .form-row {
	width: 100% !important;
	float: none !important;
	margin: 0 0 10px 0 !important;
	padding: 0 !important;
}

.steklobit-shipping-plugin-fields input,
.steklobit-shipping-plugin-fields select {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 9px !important;
	padding: 11px 12px !important;
}

.steklobit-shipping-plugin-fields-fallback:empty {
	display: none !important;
	padding: 0 !important;
	border: none !important;
}

.steklobit-shipping-message {
	display: flex;
	gap: 10px;
	padding: 12px;
	background: var(--sb-bg);
	border-radius: 10px;
	font-size: 12px;
}

.steklobit-shipping-message > span {
	font-weight: 800;
}

.steklobit-shipping-message p {
	margin: 3px 0 0;
	color: var(--sb-text);
}

/* =========================================================
   ОПЛАТА
========================================================= */

.steklobit-payment-area {
	width: 100% !important;
	font-size: 13px;
}

.steklobit-payment-area ul.wc_payment_methods {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	list-style: none;
}

.steklobit-payment-area li.wc_payment_method {
	padding: 10px !important;
	margin-bottom: 7px !important;
	border: 1px solid var(--sb-border);
	border-radius: 9px;
	background: #fff;
}

.steklobit-payment-area li.wc_payment_method:last-child {
	margin-bottom: 0 !important;
}

.steklobit-payment-area .payment_box {
	margin-top: 10px;
	padding: 14px;
	background: var(--sb-bg);
	border-radius: 9px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--sb-text);
}

.steklobit-payment-area .payment_box p {
	margin: 0 0 6px;
}

.steklobit-payment-area .payment_box strong {
	color: var(--sb-dark);
}

/* =========================================================
   КОММЕНТАРИЙ
========================================================= */

.steklobit-order-comment .form-row {
	margin-bottom: 0 !important;
}

.steklobit-order-comment textarea {
	width: 100% !important;
	min-height: 110px !important;
}

/* =========================================================
   КНОПКА ОФОРМЛЕНИЯ ЗАКАЗА
========================================================= */

.steklobit-place-order {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.steklobit-place-order .woocommerce-terms-and-conditions-wrapper {
	font-size: 12px;
	color: var(--sb-text);
}

.steklobit-place-order-btn {
	width: 100%;
	height: 52px;
	border: 0;
	border-radius: 12px;
	background: var(--sb-yellow);
	color: var(--sb-dark);
	font-weight: 800;
	font-size: 17px;
	cursor: pointer;
	transition: 0.25s;
}

.steklobit-place-order-btn:hover {
	background: #e5a900;
	color: #fff;
}

/* =========================================================
   ЗАКАЗ (карточка "Ваш заказ")
========================================================= */

.steklobit-order-box {
	height: 100%;
}

.steklobit-order-box-title {
	align-items: center;
	justify-content: space-between;
}

.steklobit-order-box-title h2 {
	display: inline-block;
}

.steklobit-cart-count {
	min-width: 26px;
	height: 26px;
	padding: 0 7px;
	border-radius: 13px;
	background: var(--sb-yellow);
	color: var(--sb-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
}

.steklobit-order-review table.shop_table {
	width: 100%;
	border: 0;
	margin: 0;
	font-size: 12px;
}

.steklobit-order-review table.shop_table td,
.steklobit-order-review table.shop_table th {
	padding: 8px 0;
	border-bottom: 1px solid var(--sb-border);
}

.steklobit-order-review .woocommerce-shipping-totals,
.steklobit-order-review [class*="nova-post"],
.steklobit-order-review [class*="novaposhta"],
.steklobit-order-review [class*="ukrposhta"],
.steklobit-order-review [class*="ukrpost"] {
	display: none !important;
}

.steklobit-secure {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 15px;
	padding-top: 13px;
	border-top: 1px solid var(--sb-border);
	font-size: 11px;
}

.steklobit-secure-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--sb-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.steklobit-secure div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.steklobit-secure div span {
	color: var(--sb-text);
}

/* =========================================================
   МОБИЛЬНЫЙ
========================================================= */

@media (max-width: 700px) {

	.steklobit-checkout-wrap {
		width: calc(100% - 24px) !important;
		max-width: none !important;

		gap: 12px !important;
	}

	.steklobit-checkout-section,
	.steklobit-order-box,
	.steklobit-place-order {
		padding: 15px !important;
	}

	.steklobit-place-order-btn {
		height: 48px;
		font-size: 16px;
	}

}

.steklobit-delivery-fields {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--sb-border, #e0e0e0);
}
.steklobit-delivery-fields .form-row {
    margin-bottom: 12px;
}
.steklobit-delivery-fields label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}
.steklobit-delivery-fields select,
.steklobit-delivery-fields input[type="text"] {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--sb-border, #e0e0e0);
    border-radius: 9px;
    box-sizing: border-box;
}

/* Блоки деталей доставки (плавное появление) */
.steklobit-delivery-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    margin: 0;
    padding: 0 13px;
    border-top: 1px solid transparent;
    background: transparent;
    box-sizing: border-box;
}
.steklobit-delivery-details.steklobit-visible {
    max-height: 800px;
    opacity: 1;
    margin: 0;
    padding: 13px;
    border-top-color: var(--sb-border, #e0e0e0);
    background: var(--sb-bg, #f7f7f7);
    transition: max-height 0.45s ease, opacity 0.3s ease, margin 0.3s ease;
}

/* Подтипы доставки (НП, Укр) */
.steklobit-delivery-subtype {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}
.steklobit-delivery-subtype label {
    font-weight: normal;
    cursor: pointer;
}
.steklobit-delivery-subtype input[type="radio"] {
    margin-right: 5px;
}

/* Поля внутри блоков */
.steklobit-delivery-details .form-row {
    margin-bottom: 10px;
}
.steklobit-delivery-details label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}
.steklobit-delivery-details select,
.steklobit-delivery-details input[type="text"] {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--sb-border, #e0e0e0);
    border-radius: 9px;
    box-sizing: border-box;
}