.btn-primary {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: .8rem 1rem;
    border: 0;
    border-radius: 10px;
    background: #b11f1f;
    color: #fff;
    font-weight: 600;
    cursor: pointer
}

    .btn-primary[disabled] {
        opacity: .7;
        cursor: not-allowed;
        filter: grayscale(.2);
    }

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .5rem .75rem;
    border-radius: .5rem;
    background-color: #f8fafc;
}

    .link-btn:hover {
        background-color: #eef2f7;
    }

.prod-card {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .75rem;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
}

.prod-thumb {
    width: 72px;
    height: 72px;
    border-radius: .5rem;
    object-fit: cover;
    background: #f3f4f6;
}

.prod-title {
    font-weight: 700;
    color: #0f172a;
}

.prod-actions {
    margin-top: .35rem;
}

.tags-widget {
    border: 1px solid #9b2e28;
    border-radius: 12px;
    padding: 16px;
    min-height: 90px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tags-input {
    border: none;
    outline: none;
    min-width: 220px;
    padding: 6px 4px;
    font-size: 14px;
    color: #6b7280;
}

    .tags-input::placeholder {
        color: #cbd5e1;
    }

.tag-chip {
    display: inline-flex;
    align-items: center;
    background: #1f2a44;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 14px;
}

    .tag-chip button {
        background: transparent;
        border: 0;
        margin-left: 10px;
        cursor: pointer;
        color: #fff;
        display: inline-flex;
        align-items: center;
    }

        .tag-chip button:hover {
            opacity: .85;
        }

    .tag-chip svg {
        width: 16px;
        height: 16px;
    }

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 8px 12px;
    border-radius: 9999px;
    user-select: none;
    min-width: 110px;
    text-align: center;
}
/* Colores por estado */
.status--active {
    background: #10b981;
    color: #053321; /* verde */
    box-shadow: 0 0 0 1px #0ea5a3 inset;
}

.status--pending {
    background: #f59e0b;
    color: #3a2200; /* naranja */
    box-shadow: 0 0 0 1px #d97706 inset;
}

.status--suspended {
    background: #ef4444;
    color: #3f0b0b; /* rojo */
    box-shadow: 0 0 0 1px #dc2626 inset;
}

@media (max-width: 1024px) {
    .link-btn {
        padding: .6rem .8rem;
    }
}
