/* ==================== ACCOUNT BOTTOM SHEET STYLES ==================== */
.account-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 28px 28px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
}

.account-bottom-sheet.open {
    transform: translateY(0);
}

.account-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10001;
}

.account-sheet-overlay.open {
    opacity: 1;
    visibility: visible;
}

.account-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: white;
}

.account-sheet-header h3 {
    font-size: 1.2rem;
    color: #1f2a44;
    margin: 0;
    font-weight: 600;
}

.account-sheet-header h3 i {
    color: #f2a83a;
    margin-right: 8px;
}

.account-sheet-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-sheet-close:hover {
    background: #f1f5f9;
    color: #ef4444;
}

.account-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Profile Section - Clean without border */
.profile-section {
    text-align: center;
    padding: 32px 24px 24px;
    background: white;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(242, 168, 58, 0.25);
}

.profile-avatar i {
    font-size: 2.5rem;
    color: white;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 4px;
}

.profile-email {
    font-size: 0.85rem;
    color: #64748b;
}

/* Menu Items - Clean professional list */
.menu-items {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
    margin-bottom: 4px;
}

.menu-item:hover {
    background: #f8fafc;
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-item i:first-child {
    width: 24px;
    font-size: 1.1rem;
    color: #f2a83a;
}

.menu-item span {
    flex: 1;
    font-weight: 500;
    color: #1f2a44;
    font-size: 0.95rem;
}

.menu-item .arrow {
    color: #cbd5e1;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.menu-item:hover .arrow {
    color: #f2a83a;
    transform: translateX(2px);
}

/* Logout Item - Clean styling */
.logout-item {
    margin-top: 16px;
    border-top: none;
}

.logout-item i:first-child {
    color: #ef4444;
}

.logout-item span {
    color: #ef4444;
}

.logout-item:hover {
    background: #fef2f2;
}

/* Auth Buttons for Logged Out State - Professional */
.auth-buttons-section {
    text-align: center;
    padding: 48px 24px;
    background: white;
}

.welcome-message {
    margin-bottom: 32px;
}

.welcome-message i {
    font-size: 3.5rem;
    color: #f2a83a;
    margin-bottom: 16px;
    display: inline-block;
}

.welcome-message h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 8px;
}

.welcome-message p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto;
}

.btn-login-sheet, .btn-register-sheet {
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-login-sheet {
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    color: white;
}

.btn-login-sheet:hover {
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 168, 58, 0.3);
}

.btn-register-sheet {
    background: white;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}

.btn-register-sheet:hover {
    border-color: #f2a83a;
    background: #fef9f0;
    color: #f2a83a;
}

/* Loading State */
.loading-account {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.loading-account i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: inline-block;
    color: #f2a83a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .account-bottom-sheet {
        height: 85vh;
    }
    
    .menu-items {
        padding: 4px 12px;
    }
    
    .menu-item {
        padding: 12px 14px;
    }
    
    .profile-section {
        padding: 24px 20px 20px;
    }
}