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

    .my_account-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .my_account-header h1 {
        font-size: 36px;
        font-weight: 600;
        color: #222;
        margin-bottom: 10px;
    }

    .my_account-header p {
        color: #666;
        font-size: 16px;
    }

    .my_account-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .my_account-card {
        background: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .my_account-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .my_account-card-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: #fff;
        font-size: 24px;
    }

    .my_account-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #222;
        margin-bottom: 10px;
        text-align: center;
    }

    .my_account-card p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    .my_account-card-arrow {
        text-align: center;
        margin-top: 15px;
        color: #FFC700;
        font-size: 18px;
    }

    /* Sección de información del usuario */
    .my_account-user-info-section {
        background: #fff;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        margin-bottom: 40px;
    }

    .my_account-user-profile {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .my_account-user-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 32px;
        font-weight: 600;
    }

    .my_account-user-details h2 {
        font-size: 24px;
        color: #222;
        margin-bottom: 5px;
    }

    .my_account-user-details p {
        color: #666;
        font-size: 15px;
    }

    .my_account-user-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .my_account-stat-item {
        text-align: center;
        padding: 20px;
        background: #fafafa;
        border-radius: 8px;
    }

    .my_account-stat-number {
        font-size: 28px;
        font-weight: 700;
        color: #FFC700;
        margin-bottom: 5px;
    }

    .my_account-stat-label {
        color: #666;
        font-size: 14px;
    }

    /* Sección de acciones rápidas */
    .my_account-quick-actions {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        margin-bottom: 40px;
    }

    .my_account-action-btn {
        background: #222;
        color: #fff;
        padding: 15px 25px;
        border-radius: 8px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .my_account-action-btn:hover {
        background: #000;
        transform: translateX(5px);
    }

    .my_account-action-btn i {
        font-size: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .my_account-header h1 {
            font-size: 28px;
        }

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

        .my_account-user-profile {
            flex-direction: column;
            text-align: center;
        }

        .my_account-user-info-section {
            padding: 25px;
        }

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

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

    /* Estado vacío */
    .my_account-empty-section {
        background: #fafafa;
        border-radius: 12px;
        padding: 60px 30px;
        text-align: center;
        margin-top: 30px;
    }

    .my_account-empty-icon {
        width: 100px;
        height: 100px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: #FFC700;
        font-size: 40px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .my_account-empty-title {
        font-size: 22px;
        color: #222;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .my_account-empty-description {
        color: #666;
        font-size: 15px;
        margin-bottom: 25px;
    }

    .my_account-empty-btn {
        background: #222;
        color: #fff;
        padding: 12px 30px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .my_account-empty-btn:hover {
        background: #000;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Modal Edit Profile */
.edit_profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

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

.edit_profile-modal-content {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.edit_profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.edit_profile-modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.edit_profile-modal-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.edit_profile-modal-close:hover {
    background: #e0e0e0;
    color: #222;
    transform: rotate(90deg);
}

.edit_profile-form {
    padding: 30px;
}

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

.edit_profile-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.edit_profile-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.edit_profile-form-group input:focus {
    outline: none;
    border-color: #FFC700;
    background: #fffbf0;
}

.edit_profile-form-divider {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.edit_profile-form-divider span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

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

.edit_profile-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.edit_profile-btn-cancel,
.edit_profile-btn-save {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.edit_profile-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.edit_profile-btn-cancel:hover {
    background: #e0e0e0;
    color: #222;
}

.edit_profile-btn-save {
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.edit_profile-btn-save:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.edit_profile-message {
    padding: 0 30px 20px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.edit_profile-message.success {
    color: #10b981;
    display: block;
}

.edit_profile-message.error {
    color: #ef4444;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .edit_profile-modal-content {
        width: 95%;
        margin: 20px;
    }

    .edit_profile-modal-header,
    .edit_profile-form {
        padding: 20px;
    }

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

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

/* Estilos adicionales para direcciones */
.edit_profile-form-divider {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edit_profile-form-divider span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.edit_profile-btn-add-address {
    background: #FFC700;
    color: #222;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.edit_profile-btn-add-address:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

#addressesContainer {
    margin-bottom: 20px;
}

.edit_profile-address-card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.edit_profile-address-card.expanded {
    background: #fff;
    border-color: #FFC700;
}

.edit_profile-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.edit_profile-address-title {
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

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

.edit_profile-btn-icon {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.edit_profile-btn-icon:hover {
    background: #e0e0e0;
    color: #222;
}

.edit_profile-btn-delete:hover {
    background: #fee;
    color: #dc2626;
}

.edit_profile-address-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    padding: 8px 0;
}

.edit_profile-address-preview i {
    color: #FFC700;
    font-size: 16px;
}

.edit_profile-address-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.edit_profile-no-addresses {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.edit_profile-no-addresses i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.edit_profile-no-addresses p {
    font-size: 15px;
}

/* Animación para chevron */
.edit_profile-address-card.expanded .edit_profile-btn-icon i.fa-chevron-down {
    transform: rotate(180deg);
}

.edit_profile-btn-icon i {
    transition: transform 0.3s ease;
}
/* Modal de Confirmación de Eliminación */
.delete_address-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

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

.delete_address-modal-content {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.delete_address-modal-icon {
    width: 80px;
    height: 80px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff9800;
    font-size: 36px;
}

.delete_address-modal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.delete_address-modal-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.delete_address-btn-cancel,
.delete_address-btn-confirm {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.delete_address-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.delete_address-btn-cancel:hover {
    background: #e0e0e0;
    color: #222;
}

.delete_address-btn-confirm {
    background: #dc2626;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.delete_address-btn-confirm:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

@media (max-width: 768px) {
    .delete_address-modal-content {
        width: 90%;
        padding: 25px;
    }

    .delete_address-modal-actions {
        flex-direction: column;
    }
}
.edit_profile-default-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.edit_profile-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.edit_profile-checkbox-label:hover {
    background-color: #f8f9fa;
}

.edit_profile-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.edit_profile-addresses-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar personalizado */
.edit_profile-addresses-scroll::-webkit-scrollbar {
    width: 8px;
}

.edit_profile-addresses-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.edit_profile-addresses-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.edit_profile-addresses-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Espaciado entre tarjetas */
.edit_profile-address-card {
    margin-bottom: 15px;
}

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

/* Mejorar la vista colapsada para ver más direcciones */
.edit_profile-address-card:not(.expanded) {
    min-height: 60px;
}