/**
* Theme Name: Bacola Child
* Description: This is a child theme of Bacola, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
* Template: bacola
* Version: 1.5.5
*/

/* ============================================
   TI WISHLIST В HEADER
   ============================================ */

/* Показываем wishlist блок в header */
.header-wishlist-ti {
    display: inline-block !important;
}

/* Скрываем на мобильных (< 768px) */
@media screen and (max-width: 767px) {
    .header-wishlist-ti {
        display: none !important;
    }
}

/* ============================================
   СКРЫТИЕ ПОЛЯ "FIRMA NOMI" (COMPANY)
   ============================================ */

/* Скрываем поле компании на странице оформления заказа и в My Account */
#billing_company_field,
#shipping_company_field,
.woocommerce-address-fields #billing_company_field,
.woocommerce-address-fields #shipping_company_field {
    display: none !important;
}

/* ============================================
   БЛОК СОГЛАСИЯ С ПОЛИТИКОЙ
   ============================================ */

/* Красивое оформление блока согласия */
.twb-privacy-agreement {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.twb-privacy-agreement a {
    color: #DD3333;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.twb-privacy-agreement a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Мобильная адаптация для блока согласия */
@media screen and (max-width: 480px) {
    .twb-privacy-agreement {
        font-size: 12px;
        line-height: 1.6;
        padding: 12px;
    }
    
    .twb-privacy-agreement a {
        white-space: normal;
        display: inline;
    }
}

/* ============================================
   УБРАТЬ ФОН У ПОЛЯ ВВОДА ТЕЛЕФОНА
   ============================================ */

/* Убираем фон только у поля ввода телефона */
.twb-phone-input-wrapper .twb-phone-input {
    background: transparent !important;
    background-color: transparent !important;
}

/* ============================================
   ШИРИНА КОНТЕЙНЕРОВ ELEMENTOR
   ============================================ */

/* Устанавливаем ширину контейнеров Elementor на 1200px */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px !important;
}

/* Для обычных контейнеров */
.elementor-container {
    max-width: 1200px !important;
}

/* Для контейнеров с gap */
.elementor-container.elementor-column-gap-default,
.elementor-container.elementor-column-gap-extended {
    max-width: 1200px !important;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .elementor-section.elementor-section-boxed > .elementor-container,
    .elementor-container {
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}