/* ========== EMPTY STATE (Sin productos) ========== */
.empty-state {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.empty-state-content {
    text-align: center;
    max-width: 600px;
}

.empty-logo {
    width: 280px;
    max-width: 80vw;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 224, 255, 0.4));
}

/* Animación de palpitación */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 224, 255, 0.4));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(106, 0, 255, 0.6));
    }
}

.empty-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem;
    letter-spacing: 0.5px;
}

.empty-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 0 0 2rem;
    font-weight: 400;
}

.btn-empty-publicate {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 224, 255, 0.3);
}

.btn-empty-publicate:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 224, 255, 0.5);
}

@media (max-width: 768px) {
    .empty-title {
        font-size: 1.5rem;
    }

    .empty-subtitle {
        font-size: 1rem;
    }

    .empty-logo {
        width: 220px;
    }
}