/* PublishQuoteDialog styles */
.publish-products-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.75rem;
}
.publish-product-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    border: 1px solid #d9e3ef;
}
.publish-product-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f9fa;
    flex-shrink: 0;
}
.publish-product-logo-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #e9ecef;
    color: #8c96a3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.publish-pill {
    display: inline-block;
    padding: 0.08rem 0.34rem;
    border-radius: 999px;
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid transparent;
}
.publish-pill-promo { background: var(--rz-info-lighter); color: var(--rz-info-dark); border-color: var(--dalatic-accent-200); }
.publish-pill-corporate { background: var(--rz-primary-lighter); color: var(--rz-primary-dark); border-color: var(--dalatic-primary-200); }
.publish-product-meta {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}
