/*
 * ═══════════════════════════════════════════════════════════════
 * ARAM THEME - AUTH & MY ACCOUNT PAGES
 * تسجيل الدخول - التسجيل - حسابي
 * @version 1.0.0
 * @author Brivox
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════ */
:root {
    --auth-gold: #C9A962;
    --auth-gold-light: #E5D4A1;
    --auth-gold-dark: #8B7355;
    --auth-black: #0A0A0A;
    --auth-white: #FEFEFE;
    --auth-cream: #FAF7F2;
    --auth-accent: #8E7B6B;
    --auth-accent-light: #D4C4B5;
    --auth-success: #4CAF50;
    --auth-error: #f44336;
    --auth-warning: #ff9800;
    --auth-info: #2196f3;
    --auth-gradient-gold: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    --auth-gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    --auth-shadow: 0 10px 40px rgba(0,0,0,0.1);
    --auth-shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.25);
    --auth-radius-sm: 10px;
    --auth-radius-md: 16px;
    --auth-radius-lg: 24px;
    --auth-radius-xl: 32px;
    --auth-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ═══════════════════════════════════════════════════════════════
   AUTH PAGES (LOGIN & REGISTER) - DESKTOP
   ═══════════════════════════════════════════════════════════════ */

.aram-auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Banner Side */
.auth-banner {
    position: relative;
    background: var(--auth-gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.auth-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
}

.auth-banner-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
}

.auth-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 450px;
}

.auth-logo {
    margin-bottom: 40px;
}

.auth-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.auth-logo h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--auth-white);
}

.auth-banner-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--auth-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.auth-banner-desc {
    font-size: 16px;
    color: var(--auth-accent-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.auth-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.auth-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.auth-feature i {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--auth-gold);
}

.auth-feature span {
    font-size: 12px;
    color: var(--auth-accent-light);
    font-weight: 600;
}

/* Form Side */
.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--auth-cream);
}

.auth-form-container {
    width: 100%;
    max-width: 440px;
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--auth-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--auth-black);
    box-shadow: var(--auth-shadow-gold);
}

.auth-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--auth-black);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--auth-accent);
}

/* Form Fields */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--auth-black);
}

.auth-field label i {
    color: var(--auth-gold);
    font-size: 16px;
}

.auth-input {
    height: 54px;
    padding: 0 20px;
    background: var(--auth-white);
    border: 2px solid var(--auth-accent-light);
    border-radius: var(--auth-radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--auth-black);
    transition: var(--auth-transition);
}

.auth-input:focus {
    outline: none;
    border-color: var(--auth-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

.auth-input::placeholder {
    color: var(--auth-accent-light);
}

/* Password Field */
.password-wrapper {
    position: relative;
}

.password-wrapper .auth-input {
    padding-left: 50px;
}

.toggle-password {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: var(--auth-accent);
    cursor: pointer;
    transition: var(--auth-transition);
}

.toggle-password:hover {
    color: var(--auth-gold);
}

/* Password Strength */
.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: var(--auth-accent-light);
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--auth-error);
    border-radius: 2px;
    transition: var(--auth-transition);
}

.strength-bar.weak span { width: 33%; background: var(--auth-error); }
.strength-bar.medium span { width: 66%; background: var(--auth-warning); }
.strength-bar.strong span { width: 100%; background: var(--auth-success); }

.strength-text {
    font-size: 11px;
    color: var(--auth-accent);
}

/* Checkbox */
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.auth-checkbox input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--auth-accent-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--auth-transition);
}

.checkmark::after {
    content: '✓';
    font-size: 12px;
    color: var(--auth-white);
    opacity: 0;
    transform: scale(0);
    transition: var(--auth-transition);
}

.auth-checkbox input:checked + .checkmark {
    background: var(--auth-gold);
    border-color: var(--auth-gold);
}

.auth-checkbox input:checked + .checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-text {
    font-size: 13px;
    color: var(--auth-accent);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--auth-gold);
    font-weight: 600;
}

/* Auth Options */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forgot-password {
    font-size: 13px;
    color: var(--auth-gold);
    font-weight: 600;
    transition: var(--auth-transition);
}

.forgot-password:hover {
    color: var(--auth-gold-dark);
}

/* Submit Button */
.auth-submit-btn {
    height: 56px;
    background: var(--auth-gradient-gold);
    border: none;
    border-radius: var(--auth-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--auth-black);
    cursor: pointer;
    transition: var(--auth-transition);
    margin-top: 10px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--auth-shadow-gold);
}

.auth-submit-btn i {
    font-size: 20px;
    transition: var(--auth-transition);
}

.auth-submit-btn:hover i {
    transform: translateX(-5px);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--auth-accent-light);
}

.auth-divider span {
    font-size: 13px;
    color: var(--auth-accent);
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    height: 50px;
    background: var(--auth-white);
    border: 2px solid var(--auth-accent-light);
    border-radius: var(--auth-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--auth-black);
    cursor: pointer;
    transition: var(--auth-transition);
}

.social-btn:hover {
    border-color: var(--auth-black);
    background: var(--auth-cream);
}

/* Footer */
.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--auth-accent-light);
}

.auth-footer p {
    font-size: 14px;
    color: var(--auth-accent);
    margin-bottom: 10px;
}

.auth-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--auth-gold);
    transition: var(--auth-transition);
}

.auth-link:hover {
    color: var(--auth-gold-dark);
}

.auth-link i {
    transition: var(--auth-transition);
}

.auth-link:hover i {
    transform: translateX(-5px);
}

/* WooCommerce Notices */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    padding: 15px 20px;
    border-radius: var(--auth-radius-sm);
    font-size: 14px;
    margin-bottom: 15px;
}

.woocommerce-message {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.woocommerce-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    list-style: none;
    padding: 15px 20px;
}

.woocommerce-info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}


/* ═══════════════════════════════════════════════════════════════
   MY ACCOUNT PAGE - DESKTOP
   ═══════════════════════════════════════════════════════════════ */

.aram-myaccount-page {
    min-height: 100vh;
    background: var(--auth-cream);
    padding-bottom: 80px;
}

/* Account Header */
.account-header {
    position: relative;
    background: var(--auth-gradient-dark);
    padding: 140px 0 100px;
    overflow: hidden;
}

.account-header-bg {
    position: absolute;
    inset: 0;
}

.header-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.account-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 25px;
}

.user-avatar {
    position: relative;
    width: 100px;
    height: 100px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--auth-gold);
}

.change-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--auth-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--auth-black);
    cursor: pointer;
    transition: var(--auth-transition);
}

.change-avatar-btn:hover {
    transform: scale(1.1);
}

.user-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--auth-white);
    margin-bottom: 8px;
}

.user-email,
.user-member {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--auth-accent-light);
    margin-bottom: 5px;
}

.user-email i,
.user-member i {
    color: var(--auth-gold);
}

/* User Stats */
.user-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--auth-radius-md);
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--auth-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--auth-black);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--auth-white);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--auth-accent-light);
}

/* Account Layout */
.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Sidebar */
.account-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-nav {
    background: var(--auth-white);
    border-radius: var(--auth-radius-lg);
    padding: 15px;
    box-shadow: var(--auth-shadow);
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: var(--auth-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--auth-accent);
    transition: var(--auth-transition);
    margin-bottom: 5px;
}

.account-nav-item:last-child {
    margin-bottom: 0;
}

.account-nav-item:hover {
    background: var(--auth-cream);
    color: var(--auth-black);
}

.account-nav-item.is-active {
    background: var(--auth-gradient-gold);
    color: var(--auth-black);
}

.nav-icon {
    width: 40px;
    height: 40px;
    background: var(--auth-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--auth-transition);
}

.account-nav-item.is-active .nav-icon {
    background: rgba(0,0,0,0.1);
}

.account-nav-item:hover .nav-icon {
    background: var(--auth-white);
}

.nav-text {
    flex: 1;
}

.nav-arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(5px);
    transition: var(--auth-transition);
}

.account-nav-item:hover .nav-arrow,
.account-nav-item.is-active .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Help Card */
.help-card {
    background: var(--auth-gradient-dark);
    border-radius: var(--auth-radius-lg);
    padding: 25px;
    text-align: center;
}

.help-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--auth-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--auth-black);
}

.help-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--auth-white);
    margin-bottom: 5px;
}

.help-card p {
    font-size: 13px;
    color: var(--auth-accent-light);
    margin-bottom: 15px;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25d366;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    transition: var(--auth-transition);
}

.help-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* Main Content */
.account-main {
    background: var(--auth-white);
    border-radius: var(--auth-radius-lg);
    padding: 30px;
    box-shadow: var(--auth-shadow);
    min-height: 500px;
}

/* Dashboard Content */
.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--auth-black);
    margin-bottom: 20px;
}

.section-title i {
    color: var(--auth-gold);
    font-size: 22px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--auth-gold);
    transition: var(--auth-transition);
}

.view-all-link:hover {
    color: var(--auth-gold-dark);
}

/* Quick Actions */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: var(--auth-cream);
    border-radius: var(--auth-radius-md);
    transition: var(--auth-transition);
}

.action-card:hover {
    background: var(--auth-white);
    box-shadow: var(--auth-shadow);
    transform: translateY(-5px);
}

.action-icon {
    width: 55px;
    height: 55px;
    background: var(--auth-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--auth-black);
}

.action-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--auth-black);
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--auth-cream);
    border-radius: var(--auth-radius-md);
    transition: var(--auth-transition);
}

.order-card:hover {
    box-shadow: var(--auth-shadow);
}

.order-image {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: var(--auth-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.items-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 2px 6px;
    background: var(--auth-black);
    color: var(--auth-gold);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50px;
}

.order-details {
    flex: 1;
}

.order-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.order-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--auth-black);
}

.order-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.order-status.pending { background: #fef3c7; color: #d97706; }
.order-status.processing { background: #dbeafe; color: #2563eb; }
.order-status.completed { background: #dcfce7; color: #16a34a; }
.order-status.cancelled { background: #fef2f2; color: #dc2626; }
.order-status.on-hold { background: #f3e8ff; color: #9333ea; }

.order-meta {
    display: flex;
    gap: 20px;
}

.order-date,
.order-total {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--auth-accent);
}

.order-date i,
.order-total i {
    color: var(--auth-gold);
}

.order-actions {
    display: flex;
    gap: 10px;
}

.order-view-btn,
.order-pay-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--auth-radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: var(--auth-transition);
}

.order-view-btn {
    background: var(--auth-white);
    color: var(--auth-black);
    border: 1px solid var(--auth-accent-light);
}

.order-view-btn:hover {
    border-color: var(--auth-black);
}

.order-pay-btn {
    background: var(--auth-gradient-gold);
    color: var(--auth-black);
}

.order-pay-btn:hover {
    box-shadow: var(--auth-shadow-gold);
}

/* Empty Orders */
.empty-orders {
    text-align: center;
    padding: 50px 20px;
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--auth-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--auth-accent-light);
}

.empty-orders h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--auth-black);
    margin-bottom: 8px;
}

.empty-orders p {
    font-size: 14px;
    color: var(--auth-accent);
    margin-bottom: 20px;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--auth-gradient-gold);
    border-radius: var(--auth-radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--auth-black);
    transition: var(--auth-transition);
}

.shop-now-btn:hover {
    box-shadow: var(--auth-shadow-gold);
    transform: translateY(-2px);
}

/* Addresses */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.address-card {
    padding: 20px;
    background: var(--auth-cream);
    border-radius: var(--auth-radius-md);
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--auth-accent-light);
}

.address-header h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--auth-black);
}

.address-header h4 i {
    color: var(--auth-gold);
}

.edit-btn {
    width: 34px;
    height: 34px;
    background: var(--auth-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--auth-accent);
    transition: var(--auth-transition);
}

.edit-btn:hover {
    background: var(--auth-gold);
    color: var(--auth-black);
}

.address-content {
    font-size: 14px;
    color: var(--auth-accent);
    line-height: 1.7;
}

.address-content address {
    font-style: normal;
}

.no-address {
    color: var(--auth-accent-light);
    font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE STYLES (max-width: 1023px)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {
    
    /* Auth Pages */
    .aram-auth-page {
        grid-template-columns: 1fr;
    }
    
    .auth-banner {
        display: none;
    }
    
    .auth-form-section {
        padding: 30px 20px;
        min-height: 100vh;
    }
    
    .auth-form-container {
        max-width: 100%;
    }
    
    .auth-header {
        margin-bottom: 30px;
    }
    
    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .auth-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .auth-input {
        height: 50px;
        font-size: 14px;
    }
    
    .auth-submit-btn {
        height: 52px;
        font-size: 15px;
    }
    
    .auth-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    /* My Account */
    .aram-myaccount-page {
        padding-bottom: 100px;
    }
    
    .account-header {
        padding: 120px 0 80px;
    }
    
    .account-container {
        padding: 0 15px;
    }
    
    .account-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .user-profile {
        flex-direction: column;
    }
    
    .user-avatar {
        width: 90px;
        height: 90px;
    }
    
    .user-name {
        font-size: 22px;
    }
    
    .user-email,
    .user-member {
        justify-content: center;
        font-size: 13px;
    }
    
    .user-stats {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .stat-card {
        flex: 1;
        min-width: calc(50% - 10px);
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    /* Account Layout */
    .account-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -40px;
    }
    
    .account-sidebar {
        order: 2;
    }
    
    .account-nav {
        padding: 10px;
    }
    
    .account-nav-item {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .nav-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .help-card {
        padding: 20px;
    }
    
    .help-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .account-main {
        order: 1;
        padding: 20px;
        border-radius: var(--auth-radius-md);
    }
    
    /* Dashboard */
    .section-title {
        font-size: 16px;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .action-card {
        padding: 20px 10px;
    }
    
    .action-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .action-text {
        font-size: 12px;
    }
    
    .order-card {
        flex-wrap: wrap;
        padding: 15px;
    }
    
    .order-image {
        width: 60px;
        height: 60px;
    }
    
    .order-details {
        flex: 1;
        min-width: calc(100% - 80px);
    }
    
    .order-number {
        font-size: 14px;
    }
    
    .order-status {
        font-size: 10px;
    }
    
    .order-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .order-date,
    .order-total {
        font-size: 12px;
    }
    
    .order-actions {
        width: 100%;
        margin-top: 10px;
    }
    
    .order-view-btn,
    .order-pay-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .address-card {
        padding: 15px;
    }
    
    .empty-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .empty-orders h4 {
        font-size: 16px;
    }
    
    .shop-now-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SMALL MOBILE (max-width: 480px)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .auth-form-section {
        padding: 25px 15px;
    }
    
    .auth-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .auth-title {
        font-size: 22px;
    }
    
    .stat-card {
        min-width: 100%;
    }
}