/* === HEADER & PROFILE === */
.profile-header {
    text-align: center;
    margin: 20px 0 30px;
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    padding: 3px;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.brand-name {
    font-family: var(--font-head);
    font-size: 32px;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* === SOCIAL ICONS === */
.social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon:active {
    transform: translateY(-1px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* === MOBILE MENU === */
.mobile-menu-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
}

.menu-category {
    margin-bottom: 30px;
}

.menu-category-title {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.menu-brand-link {
    display: block;
    padding: 12px 0;
    color: var(--text-main);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s;
}

.menu-brand-link:active {
    color: var(--gold);
}

.menu-brand-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 5px;
}
