/**
 * Account Dashboard Boutique Styles
 * Estilos premium para el resumen de cuenta y notificaciones (Toasts)
 */

/* Dashboard Summary Cards */
.account-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--bs-primary);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    opacity: 0.05;
    border-bottom-left-radius: 60px;
    transition: all 0.3s ease;
}

.stat-card:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--bs-primary);
    color: #fff;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: #333;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Toast Notifications - Boutique Style */
#expotodo-toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
}

.boutique-toast {
    background: #fff;
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--bs-primary);
    min-width: 300px;
    animation: slideInOut 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.boutique-toast.success { border-left-color: #28a745; }
.boutique-toast.error { border-left-color: #dc3545; }
.boutique-toast.info { border-left-color: #0d6efd; }

.toast-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
}

.toast-content {
    flex-grow: 1;
    font-weight: 500;
}

@keyframes slideInOut {
    0% { transform: translateX(120%); opacity: 0; }
    10% { transform: translateX(0); opacity: 1; }
    90% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}

/* Password Section */
.password-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f9fa;
    color: #333;
}
