/* Badges de Estado - Diseño Premium Compacto */
.estado-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.estado-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.estado-badge:hover::before {
    left: 100%;
}

.estado-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
}

.estado-publicado {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), 0 2px 4px rgba(16, 185, 129, 0.2);
}

.estado-publicado::after {
    content: '✓';
    font-size: 0.85rem;
    margin-left: 0.2rem;
}

.estado-en-edición {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4), 0 2px 4px rgba(59, 130, 246, 0.2);
}

.estado-en-edición::after {
    content: '✎';
    font-size: 0.85rem;
}

.estado-en-revisión {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4), 0 2px 4px rgba(245, 158, 11, 0.2);
}

.estado-en-revisión::after {
    content: '⏳';
    font-size: 0.85rem;
}

.estado-aprobado {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4), 0 2px 4px rgba(139, 92, 246, 0.2);
}

.estado-aprobado::after {
    content: '★';
    font-size: 0.85rem;
}

.estado-agotado {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4), 0 2px 4px rgba(239, 68, 68, 0.2);
}

.estado-agotado::after {
    content: '⚠';
    font-size: 0.85rem;
}

.estado-descatalogado {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 50%, #374151 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4), 0 2px 4px rgba(107, 114, 128, 0.2);
}

.estado-descatalogado::after {
    content: '✕';
    font-size: 0.85rem;
}