/* Montaged products hidden by default in modal, shown during edit */
.pg-card-montaged {
    display: none !important;
}

.pg-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--pg-grey-medium);
    font-size: 14px;
}

.pg-montage-shop-link {
    color: var(--pg-galaxy);
    text-decoration: underline;
    font-weight: 600;
}

/* Body scroll lock when modal open */
body.pg-modal-open { overflow: hidden; }

/* Step indicators */
.pg-selector-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--pg-border-dark);
    color: var(--pg-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.pg-selector-group.pg-filled .pg-selector-step {
    background: var(--pg-success);
}

.pg-selector-group.pg-filled {
    border-color: var(--pg-success);
}

/* Clickable selected product for "change" */
.pg-selected-product-info {
    cursor: pointer;
    transition: opacity 0.2s;
}

.pg-selected-product-info:hover {
    opacity: 0.7;
}

/* Summary total row */
.pg-summary-total .pg-summary-label,
.pg-summary-total .pg-summary-value {
    font-size: 16px;
    color: var(--pg-dark);
}

/* Toast notifications */
.pg-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    border-radius: 2px;
    color: var(--pg-white);
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 400px;
}

.pg-toast.pg-toast-visible {
    transform: translateY(0);
    opacity: 1;
}

.pg-toast-error { background: var(--pg-error); }
.pg-toast-success { background: var(--pg-success); }
.pg-toast-info { background: var(--pg-info); }

