/* ==================== PROFILE PAGE & SETTINGS ==================== */
.profile-header { margin-bottom: 25px; }
.profile-header h2 { font-size: 20px; font-weight: 600; }
.profile-content { padding: 0 5px; }
.profile-name { font-size: 28px; font-weight: 700; margin-bottom: 5px; }
.profile-phone { color: var(--text-secondary); font-size: 15px; margin-bottom: 25px; }
.profile-menu, .profile-settings { margin-bottom: 25px; }
.profile-settings h4 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}
.menu-item:hover { color: var(--accent-primary); }
.menu-item span:first-child { font-size: 16px; }
.menu-subtitle { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.menu-item i { color: var(--accent-primary); font-size: 14px; }
.logout-btn { display: block; color: var(--accent-primary); font-size: 16px; font-weight: 500; text-decoration: none; padding: 15px 0; }

/* Order History */
.order-history-content { padding: 20px 0; }
.order-history-info { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; }

/* Email Page */
.email-content { padding: 20px 0; }
.current-email { font-size: 18px; margin-bottom: 25px; }
.email-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.email-input {
    width: 100%; padding: 15px; border: none; border-bottom: 2px solid var(--accent-primary);
    background: none; color: var(--text-primary); font-size: 16px; font-family: inherit;
    margin-bottom: 25px; outline: none;
}
.email-input::placeholder { color: var(--text-muted); }

/* Email Permission */
.email-permission-content { padding: 20px 0; }
.email-permission-content > p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 15px; }
.read-more { color: var(--accent-primary); font-size: 14px; text-decoration: none; display: inline-block; margin-bottom: 30px; }
.current-status { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }

/* Notifications */
.notifications-content { padding: 20px 0; }
.notifications-info { color: var(--text-secondary); font-size: 14px; margin-bottom: 25px; }
.notification-section { margin-bottom: 30px; }
.notification-section h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.notification-section > p { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
.notification-section .note { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.toggle-btn {
    padding: 12px 20px; border: none; border-radius: 8px; background-color: var(--accent-primary);
    color: var(--bg-primary); font-size: 14px; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: all 0.3s ease;
}
body.female-theme .toggle-btn { color: #ffffff; }
.toggle-btn:hover { background-color: var(--accent-primary-light); }

/* Password */
.password-content { padding: 20px 0; }
.password-content > p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 25px; }
.password-inputs { margin-bottom: 25px; }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 14px; margin-bottom: 8px; }
.password-input {
    width: 100%; padding: 15px; border: none; border-radius: 10px; background-color: var(--bg-input);
    color: var(--text-primary); font-size: 16px; font-family: inherit; outline: none;
    border: 1px solid transparent; transition: border-color 0.3s ease;
}
body.female-theme .password-input { border-color: var(--border-color); }
.password-input:focus { border-color: var(--accent-primary); }

/* Language Page */
.language-content { padding: 20px 0; }
.language-content > p { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; }
.country-list, .language-list { margin-bottom: 30px; }
.country-item, .language-item {
    display: flex; justify-content: space-between; align-items: center; padding: 15px;
    background-color: var(--bg-card); border-radius: 10px; margin-bottom: 10px;
    cursor: pointer; border: 1px solid transparent; transition: all 0.3s ease;
}
body.female-theme .country-item, body.female-theme .language-item { box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.country-item.selected, .language-item.selected { border: 1px solid var(--accent-primary); }
.country-item i, .language-item i { color: var(--accent-primary); }
.language-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
