/* ============================================
   MY ACCOUNT - PREMIUM DESIGN STYLES
   ============================================ */

/* Variables CSS */
:root {
    --ma-primary: #1a1a2e;
    --ma-secondary: #16213e;
    --ma-accent: #2333c2;
    --ma-accent-light: #2c36c6;
    --ma-gold: #11005c;
    --ma-gold-light: #000c44;
    --ma-text-primary: #222222;
    --ma-text-secondary: #666666;
    --ma-text-muted: #999999;
    --ma-bg-light: #f8f9fa;
    --ma-bg-card: #ffffff;
    --ma-border: #e8e8e8;
    --ma-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --ma-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --ma-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --ma-shadow-glow: 0 0 40px rgba(233, 69, 96, 0.15);
    --ma-radius-sm: 8px;
    --ma-radius-md: 12px;
    --ma-radius-lg: 20px;
    --ma-radius-xl: 28px;
    --ma-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Partículas flotantes */
.my_account-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.my_account-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--ma-gold), var(--ma-accent));
    border-radius: 50%;
    animation: float 20s infinite;
    opacity: 0;
}

.my_account-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.my_account-particle:nth-child(2) { left: 25%; animation-delay: 3s; }
.my_account-particle:nth-child(3) { left: 40%; animation-delay: 6s; }
.my_account-particle:nth-child(4) { left: 55%; animation-delay: 2s; }
.my_account-particle:nth-child(5) { left: 70%; animation-delay: 5s; }
.my_account-particle:nth-child(6) { left: 85%; animation-delay: 1s; }

/* Wrapper Principal */
.my_account-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Breadcrumb */
.my_account-breadcrumb {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.my_account-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.my_account-breadcrumb a {
    color: var(--ma-text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--ma-transition);
    font-weight: 500;
}

.my_account-breadcrumb a:hover {
    color: var(--ma-accent);
}

.my_account-breadcrumb-separator {
    color: var(--ma-text-muted);
    font-size: 10px;
}

.my_account-breadcrumb-current {
    color: var(--ma-text-primary);
    font-weight: 600;
}

/* Container Principal */
.my_account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.my_account-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.my_account-header-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.my_account-header h1 {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    color: var(--ma-text-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
    position: relative;
}

.my_account-header p {
    color: var(--ma-text-secondary);
    font-size: 17px;
    font-weight: 400;
}

/* User Section - Grid de 2 columnas */
.my_account-user-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

/* Profile Card */
.my_account-profile-card {
    background: var(--ma-bg-card);
    border-radius: var(--ma-radius-xl);
    padding: 35px;
    box-shadow: var(--ma-shadow-md);
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
    transition: var(--ma-transition);
    border: 1px solid var(--ma-border);
}

.my_account-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ma-shadow-lg);
}

.my_account-profile-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ma-gold), var(--ma-accent));
    opacity: 0;
    transition: var(--ma-transition);
}

.my_account-profile-card:hover .my_account-profile-card-glow {
    opacity: 1;
}

.my_account-user-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ma-gold) 0%, var(--ma-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 24px rgba(7, 19, 255, 0.3);
}

.my_account-user-avatar span {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.my_account-avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--ma-gold);
    opacity: 0;
    animation: ringPulse 2s ease-in-out infinite;
}

.my_account-profile-card:hover .my_account-avatar-ring {
    opacity: 1;
}

.my_account-user-details h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ma-text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.my_account-user-email {
    color: var(--ma-text-secondary);
    font-size: 15px;
    margin-bottom: 8px !important;
}

.my_account-member-since {
    font-size: 13px !important;
    color: var(--ma-text-muted) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.my_account-member-since i {
    color: var(--ma-accent);
    font-size: 12px;
}

/* Stats Card */
.my_account-stats-card {
    background: var(--ma-bg-card);
    border-radius: var(--ma-radius-xl);
    padding: 25px;
    box-shadow: var(--ma-shadow-md);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid var(--ma-border);
}

.my_account-stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: var(--ma-bg-light);
    border-radius: var(--ma-radius-md);
    transition: var(--ma-transition);
    cursor: default;
}

.my_account-stat-item:hover {
    background: linear-gradient(135deg, rgba(7, 19, 255, 0.08) 0%, rgba(69, 72, 233, 0.05) 100%);
    transform: translateX(5px);
}

.my_account-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--ma-radius-sm);
    background: linear-gradient(135deg, var(--ma-gold) 0%, var(--ma-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.my_account-stat-content {
    flex: 1;
}

.my_account-stat-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--ma-text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.my_account-stat-label {
    font-size: 13px;
    color: var(--ma-text-secondary);
    font-weight: 500;
}

/* Quick Actions */
.my_account-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.my_account-action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 25px;
    background: var(--ma-text-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--ma-radius-lg);
    transition: var(--ma-transition);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 15px;
}

.my_account-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ma-accent) 0%, var(--ma-accent-light) 100%);
    opacity: 0;
    transition: var(--ma-transition);
}

.my_account-action-btn:hover::before {
    opacity: 1;
}

.my_account-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.my_account-action-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--ma-radius-sm);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    z-index: 1;
    transition: var(--ma-transition);
}

.my_account-action-btn:hover .my_account-action-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.my_account-action-btn span {
    position: relative;
    z-index: 1;
    flex: 1;
}

.my_account-action-arrow {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--ma-transition);
}

.my_account-action-btn:hover .my_account-action-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Options Grid */
.my_account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.my_account-card {
    background: var(--ma-bg-card);
    border-radius: var(--ma-radius-xl);
    padding: 35px 30px;
    box-shadow: var(--ma-shadow-md);
    transition: var(--ma-transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ma-border);
}

.my_account-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: none;
}

.my_account-card:hover .my_account-card-shine {
    animation: shimmer 0.8s ease;
}

.my_account-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ma-shadow-lg), var(--ma-shadow-glow);
    border-color: rgba(233, 69, 96, 0.2);
}

.my_account-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ma-gold) 0%, var(--ma-gold-light) 100%);
    border-radius: var(--ma-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 28px;
    transition: var(--ma-transition);
}

.my_account-card:hover .my_account-card-icon {
    background: linear-gradient(135deg, var(--ma-accent) 0%, var(--ma-accent-light) 100%);
    color: #fff;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(69, 137, 233, 0.35);
}

.my_account-card-content {
    flex: 1;
}

.my_account-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ma-text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.my_account-card p {
    color: var(--ma-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.my_account-card-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ma-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ma-text-muted);
    font-size: 14px;
    transition: var(--ma-transition);
}

.my_account-card:hover .my_account-card-arrow {
    background: var(--ma-accent);
    color: #fff;
    transform: translateX(5px);
}

/* Empty State */
.my_account-empty-section {
    background: var(--ma-bg-card);
    border-radius: var(--ma-radius-xl);
    padding: 70px 40px;
    text-align: center;
    box-shadow: var(--ma-shadow-md);
    animation: fadeInUp 0.8s ease 0.4s both;
    border: 1px solid var(--ma-border);
}

.my_account-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: var(--ma-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--ma-gold);
    position: relative;
}

.my_account-empty-icon-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--ma-gold);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.my_account-empty-title {
    font-size: 26px;
    color: var(--ma-text-primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.my_account-empty-description {
    color: var(--ma-text-secondary);
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.my_account-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ma-accent) 0%, var(--ma-accent-light) 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--ma-radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--ma-transition);
    box-shadow: 0 8px 24px rgba(23, 8, 135, 0.3);
}

.my_account-empty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(23, 11, 155, 0.4);
}

/* ============================================
   MODAL EDIT PROFILE - PREMIUM STYLES
   ============================================ */

.edit_profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
}

.edit_profile-modal.active {
    display: flex;
}

.edit_profile-modal-content {
    background: #fff;
    border-radius: var(--ma-radius-xl);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.edit_profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    background: linear-gradient(135deg, var(--ma-primary) 0%, var(--ma-secondary) 100%);
    color: #fff;
}

.edit_profile-modal-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.edit_profile-modal-title i {
    font-size: 24px;
    color: var(--ma-gold);
}

.edit_profile-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.edit_profile-modal-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--ma-transition);
}

.edit_profile-modal-close:hover {
    background: var(--ma-accent);
    transform: rotate(90deg);
}

.edit_profile-form {
    padding: 30px 35px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.edit_profile-form::-webkit-scrollbar {
    width: 6px;
}

.edit_profile-form::-webkit-scrollbar-track {
    background: transparent;
}

.edit_profile-form::-webkit-scrollbar-thumb {
    background: var(--ma-border);
    border-radius: 3px;
}

.edit_profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.edit_profile-form-group {
    margin-bottom: 20px;
}

.edit_profile-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ma-text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edit_profile-form-group label i {
    color: var(--ma-accent);
    font-size: 14px;
}

.edit_profile-form-group input[type="text"],
.edit_profile-form-group input[type="tel"],
.edit_profile-form-group input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    background: var(--ma-bg-light);
    border: 2px solid var(--ma-border);
    border-radius: var(--ma-radius-md);
    color: var(--ma-text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--ma-transition);
    box-sizing: border-box;
}

.edit_profile-form-group input:focus {
    outline: none;
    border-color: var(--ma-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

.edit_profile-form-group input::placeholder {
    color: var(--ma-text-muted);
}

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

/* Form Divider */
.edit_profile-form-divider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 20px;
    padding: 18px 0;
    border-top: 1px solid var(--ma-border);
    border-bottom: 1px solid var(--ma-border);
    flex-wrap: wrap;
    gap: 15px;
}

.edit_profile-divider-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.edit_profile-divider-left i {
    color: var(--ma-accent);
    font-size: 18px;
}

.edit_profile-divider-left span {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.edit_profile-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 10px;
    background: linear-gradient(135deg, var(--ma-accent) 0%, var(--ma-accent-light) 100%);
    color: #fff;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
}

.edit_profile-divider-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.edit_profile-search-wrapper {
    position: relative;
}

.edit_profile-search-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ma-text-muted);
    font-size: 14px;
}

.edit_profile-search-input {
    padding: 10px 14px 10px 38px;
    background: var(--ma-bg-light);
    border: 2px solid var(--ma-border);
    border-radius: var(--ma-radius-sm);
    color: var(--ma-text-primary);
    font-size: 14px;
    font-family: inherit;
    width: 180px;
    transition: var(--ma-transition);
}

.edit_profile-search-input:focus {
    outline: none;
    border-color: var(--ma-gold);
    background: #fff;
    width: 220px;
}

.edit_profile-search-input::placeholder {
    color: var(--ma-text-muted);
}

.edit_profile-btn-add-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--ma-gold) 0%, var(--ma-gold-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--ma-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ma-transition);
}

.edit_profile-btn-add-address:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
}

/* Addresses Container */
.edit_profile-addresses-scroll {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 20px;
}

.edit_profile-addresses-scroll::-webkit-scrollbar {
    width: 6px;
}

.edit_profile-addresses-scroll::-webkit-scrollbar-track {
    background: var(--ma-bg-light);
    border-radius: 3px;
}

.edit_profile-addresses-scroll::-webkit-scrollbar-thumb {
    background: var(--ma-border);
    border-radius: 3px;
}

.edit_profile-addresses-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--ma-text-muted);
}

/* Address Cards */
.edit_profile-address-card {
    background: var(--ma-bg-light);
    border: 2px solid var(--ma-border);
    border-radius: var(--ma-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--ma-transition);
}

.edit_profile-address-card:last-child {
    margin-bottom: 0;
}

.edit_profile-address-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
}

.edit_profile-address-card.expanded {
    background: #fff;
    border-color: var(--ma-gold);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
}

.edit_profile-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
}

.edit_profile-address-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ma-text-primary);
}

.edit_profile-address-title i {
    color: var(--ma-accent);
    font-size: 16px;
}

.edit_profile-default-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--ma-gold) 0%, var(--ma-gold-light) 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.edit_profile-default-badge i {
    font-size: 10px;
    color: #ffffff;
}

.edit_profile-address-actions {
    display: flex;
    gap: 8px;
}

.edit_profile-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--ma-border);
    color: var(--ma-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--ma-transition);
}

.edit_profile-btn-expand:hover {
    background: var(--ma-bg-card);
    border-color: var(--ma-text-secondary);
    color: var(--ma-text-primary);
}

.edit_profile-btn-delete:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--ma-accent);
    color: var(--ma-accent);
}

.edit_profile-address-card.expanded .edit_profile-btn-expand i {
    transform: rotate(180deg);
}

.edit_profile-btn-icon i {
    transition: var(--ma-transition);
}

.edit_profile-address-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px 16px;
    color: var(--ma-text-secondary);
    font-size: 14px;
}

.edit_profile-address-preview i {
    color: var(--ma-gold);
    font-size: 14px;
}

.edit_profile-address-form {
    padding: 20px 18px;
    background: #fff;
    border-top: 1px solid var(--ma-border);
}

/* No Addresses */
.edit_profile-no-addresses {
    text-align: center;
    padding: 50px 30px;
}

.edit_profile-no-addresses-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--ma-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit_profile-no-addresses-icon i {
    font-size: 36px;
    color: var(--ma-text-muted);
}

.edit_profile-no-addresses p {
    font-size: 16px;
    font-weight: 600;
    color: var(--ma-text-primary);
    margin-bottom: 8px;
}

.edit_profile-no-addresses span {
    font-size: 14px;
    color: var(--ma-text-muted);
}

/* Checkbox Custom */
.edit_profile-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    background: var(--ma-bg-light);
    border: 2px solid var(--ma-border);
    border-radius: var(--ma-radius-sm);
    transition: var(--ma-transition);
}

.edit_profile-checkbox-label:hover {
    background: #fff;
    border-color: var(--ma-gold);
}

.edit_profile-checkbox-label input[type="checkbox"] {
    display: none;
}

.edit_profile-checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--ma-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ma-transition);
    flex-shrink: 0;
}

.edit_profile-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: var(--ma-transition);
}

.edit_profile-checkbox-label input[type="checkbox"]:checked + .edit_profile-checkbox-custom {
    background: var(--ma-gold);
    border-color: var(--ma-gold);
}

.edit_profile-checkbox-label input[type="checkbox"]:checked + .edit_profile-checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
    color: #ffffff;
}

.edit_profile-checkbox-label span:last-child {
    font-size: 14px;
    color: var(--ma-text-secondary);
}

/* Form Actions */
.edit_profile-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 25px;
    border-top: 1px solid var(--ma-border);
}

.edit_profile-btn-cancel,
.edit_profile-btn-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--ma-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ma-transition);
    border: none;
}

.edit_profile-btn-cancel {
    background: var(--ma-bg-light);
    color: var(--ma-text-secondary);
    border: 2px solid var(--ma-border);
}

.edit_profile-btn-cancel:hover {
    background: var(--ma-bg-card);
    border-color: var(--ma-text-secondary);
    color: var(--ma-text-primary);
}

.edit_profile-btn-save {
    background: linear-gradient(135deg, var(--ma-accent) 0%, var(--ma-accent-light) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(32, 14, 197, 0.3);
}

.edit_profile-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 20, 154, 0.4);
}

.edit_profile-btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Message */
.edit_profile-message {
    padding: 16px 20px;
    margin: 0 35px 20px;
    border-radius: var(--ma-radius-md);
    font-size: 14px;
    display: none;
    align-items: center;
    gap: 10px;
}

.edit_profile-message.success {
    display: flex;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.edit_profile-message.error {
    display: flex;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: var(--ma-accent);
}

/* ============================================
   DELETE ADDRESS MODAL
   ============================================ */

.delete_address-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
}

.delete_address-modal.active {
    display: flex;
}

.delete_address-modal-content {
    background: #fff;
    border-radius: var(--ma-radius-xl);
    width: 100%;
    max-width: 420px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.delete_address-modal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6366fd 0%, #2023d7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #f59e0b;
    font-size: 40px;
}

.delete_address-modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ma-text-primary);
    margin-bottom: 14px;
}

.delete_address-modal-content p {
    color: var(--ma-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.delete_address-modal-actions {
    display: flex;
    gap: 15px;
}

.delete_address-btn-cancel,
.delete_address-btn-confirm {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--ma-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ma-transition);
    border: none;
}

.delete_address-btn-cancel {
    background: var(--ma-bg-light);
    color: var(--ma-text-secondary);
    border: 2px solid var(--ma-border);
}

.delete_address-btn-cancel:hover {
    background: var(--ma-bg-card);
    border-color: var(--ma-text-secondary);
    color: var(--ma-text-primary);
}

.delete_address-btn-confirm {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.delete_address-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .my_account-user-section {
        grid-template-columns: 1fr;
    }

    .my_account-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .my_account-particles {
        display: none;
    }

    .my_account-header h1 {
        font-size: 32px;
    }

    .my_account-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .my_account-user-details h2 {
        font-size: 22px;
    }

    .my_account-member-since {
        justify-content: center;
    }

    .my_account-stats-card {
        padding: 20px;
    }

    .my_account-quick-actions {
        grid-template-columns: 1fr;
    }

    .my_account-grid {
        grid-template-columns: 1fr;
    }

    .my_account-card {
        padding: 30px 25px;
    }

    .my_account-empty-section {
        padding: 50px 25px;
    }

    /* Modal Responsive */
    .edit_profile-modal-content {
        width: 100%;
        max-height: 95vh;
        border-radius: var(--ma-radius-lg);
    }

    .edit_profile-modal-header {
        padding: 22px 25px;
    }

    .edit_profile-modal-header h2 {
        font-size: 18px;
    }

    .edit_profile-form {
        padding: 25px;
    }

    .edit_profile-form-grid {
        grid-template-columns: 1fr;
    }

    .edit_profile-form-row {
        grid-template-columns: 1fr;
    }

    .edit_profile-form-divider {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .edit_profile-divider-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .edit_profile-search-input {
        flex: 1;
        width: auto;
    }

    .edit_profile-btn-add-address {
        width: 100%;
        justify-content: center;
    }

    .edit_profile-form-actions {
        flex-direction: column;
    }

    .edit_profile-btn-cancel,
    .edit_profile-btn-save {
        width: 100%;
    }

    .delete_address-modal-content {
        padding: 30px 25px;
    }

    .delete_address-modal-actions {
        flex-direction: column;
    }

    .delete_address-btn-cancel,
    .delete_address-btn-confirm {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .my_account-container {
        padding: 0 15px;
    }

    .my_account-header h1 {
        font-size: 28px;
    }

    .my_account-stat-item {
        padding: 14px 16px;
    }

    .my_account-stat-number {
        font-size: 22px;
    }

    .my_account-action-btn {
        padding: 16px 20px;
    }

    .my_account-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}