/* ===== ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ - СТИЛИ ПОД MASTERDOM-74 ===== */

#subtle-policy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-top: 3px solid #337AB7;  /* ← Ваш фирменный синий */
    z-index: 999999999;
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    backdrop-filter: blur(8px);
    font-family: Verdana, sans-serif;  /* ← Шрифт как у вас */
    box-shadow: 0 -4px 20px rgba(51, 122, 183, 0.15);
}

#subtle-policy-bar.active {
    transform: translateY(0);
}

.subtle-policy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.subtle-policy-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

.subtle-policy-link {
    color: #337AB7;  /* ← Ваш фирменный синий */
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(51, 122, 183, 0.3);
    transition: all 0.2s ease;
}

.subtle-policy-link:hover {
    color: #1a4f7a;
    border-bottom-color: #337AB7;
}

/* ===== КНОПКИ ===== */
.subtle-policy-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* Главная кнопка "Принять" - в стиле ваших кнопок */
.subtle-policy-btn {
    background: #337AB7;  /* ← Ваш цвет */
    color: #ffffff;
    border: 2px solid #337AB7;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    font-family: Verdana, sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.subtle-policy-btn:hover {
    background: #ffffff;
    color: #337AB7;
    box-shadow: 0 4px 12px rgba(51, 122, 183, 0.3);
}

/* Кнопка-крестик */
.subtle-policy-close {
    background: transparent;
    color: #999;
    border: 1.5px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
    font-family: Verdana, sans-serif;
    line-height: 1;
}

.subtle-policy-close:hover {
    color: #337AB7;
    border-color: #337AB7;
    background: rgba(51, 122, 183, 0.05);
    transform: rotate(90deg);
}

/* ===== АДАПТИВ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 768px) {
    #subtle-policy-bar {
        padding: 15px 0;
    }
    
    .subtle-policy-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 15px;
    }
    
    .subtle-policy-text {
        text-align: center;
        font-size: 12px;
    }
    
    .subtle-policy-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .subtle-policy-btn {
        flex: 1;
        max-width: 180px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .subtle-policy-close {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    #subtle-policy-bar {
        padding: 12px 0;
    }
    
    .subtle-policy-text {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .subtle-policy-btn {
        font-size: 11px;
        padding: 8px 16px;
    }
}