/* ============ ВЕРХНИЙ МОДУЛЬ (МОБИЛЬНЫЙ) ============ */
.top-header {
    width: 100%;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    height: 60px;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ВСЕГДА прозрачный фон с затемнением для главной */
body .top-header {
    background: rgba(0, 0, 0, 0.3) !important;
    color: #ffffff;
}

.top-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 100%;
}

.studio-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Гамбургер меню */
.mobile-hamburger {
    background: none;
    border: none;
    font-size: 1.5rem;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    right: auto;
    width: 280px;
    height: calc(100vh - 60px);
    z-index: 1010;
    transition: left 0.3s ease;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.9) !important;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.mobile-menu.show {
    left: 0;
    right: auto;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Социальные иконки в шапке */
.mobile-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* WhatsApp иконка */
.whatsapp-icon {
    color: #25D366 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Telegram иконка */
.telegram-icon {
    color: #0088cc !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-icon:hover i {
    transform: scale(1.1);
}