/* Стили для Header Widget */
.header-section {
    position: relative;
    z-index: 1000;
}

.header-widget-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
}

.header-widget-custom .logo-bth {
    max-height: 40px;
    width: auto;
}

.header-widget-custom .header-button {
    background: #ff6b6b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-widget-custom .header-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

