/* Product detail dialog styles */
.product-dialog-shell {
    min-height: 680px;
}
.product-dialog-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
}
.product-dialog-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
    flex-shrink: 0;
}
.product-dialog-logo-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #e9ecef;
    color: #8c96a3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.promo-badge-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;
}
.promo-badge-active { background: var(--rz-info-lighter); color: var(--rz-info-dark); border-color: var(--dalatic-accent-200); }
.promo-badge-expired { background: var(--rz-secondary-lighter); color: var(--rz-secondary-dark); border-color: var(--rz-base-300); }
.promo-card {
    border: 1px solid var(--rz-base-300);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.promo-card:hover { border-color: var(--rz-primary); box-shadow: 0 0 0 2px var(--rz-primary-lighter); }
.promo-card.selected { border-color: var(--rz-primary); background: var(--rz-primary-lighter); }
.price-row-selectable { cursor: pointer; transition: background 0.15s ease; }
.price-row-selectable:hover { background: #f8fbff; }
.price-row-selected { background: #eef4ff; }
.rich-description {
    line-height: 1.6;
    color: var(--rz-text-color);
}
.rich-description p {
    margin: 0 0 0.7rem 0;
}
.rich-description ul,
.rich-description ol {
    margin: 0.35rem 0 0.75rem 1.1rem;
    padding: 0;
}
.rich-description li {
    margin-bottom: 0.3rem;
}
.rich-description strong {
    font-weight: 700;
}
.rich-description .alert,
.rich-description .alert-warning {
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    background: #fff4da;
    color: #7a5a00;
    border: 1px solid #f3d27a;
    margin: 0.75rem 0;
}
.product-dialog-skeleton-card {
    padding: 1rem;
    border: 1px solid var(--rz-base-300);
    border-radius: 12px;
    background: #fff;
}
