/* PDP — bundle / kit tagliando progress */
.pdp-bundle-progress {
    margin: 1rem 0 1.25rem;
    padding: 1rem 1.05rem;
    border-radius: 12px;
    border: 1px solid rgba(224, 32, 32, 0.22);
    background: linear-gradient(160deg, rgba(224, 32, 32, 0.07) 0%, rgba(15, 23, 42, 0.04) 100%);
}

.pdp-bundle-progress__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pdp-bundle-progress__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(224, 32, 32, 0.12);
    color: #e02020;
    font-size: 1rem;
    flex-shrink: 0;
}

.pdp-bundle-progress__copy {
    min-width: 0;
}

.pdp-bundle-progress__eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #e02020;
}

.pdp-bundle-progress__title {
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

.pdp-bundle-progress__title strong {
    color: #e02020;
    font-weight: 800;
}

.pdp-bundle-progress__vehicle {
    margin: 0.3rem 0 0;
    font-size: 0.74rem;
    line-height: 1.4;
    color: #6b7280;
}

.pdp-bundle-progress__bar {
    display: flex;
    gap: 4px;
    margin-top: 0.85rem;
}

.pdp-bundle-progress__segment {
    flex: 1;
    height: 6px;
    border-radius: 99px;
    background: #e5e7eb;
    transition: background 0.2s;
}

.pdp-bundle-progress__segment.is-filled {
    background: var(--segment-color, #e02020);
}

.pdp-bundle-progress__segment.is-empty.is-required {
    background: #fecaca;
}

.pdp-bundle-progress__missing {
    margin-top: 0.85rem;
}

.pdp-bundle-progress__missing-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
}

.pdp-bundle-progress__missing-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pdp-bundle-progress__missing-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pdp-bundle-progress__missing-link:hover {
    border-color: rgba(224, 32, 32, 0.35);
    color: #e02020;
    background: #fffafa;
}

.pdp-bundle-progress__missing-link i {
    width: 1rem;
    text-align: center;
    color: #9ca3af;
}

.pdp-bundle-progress__required {
    margin-left: auto;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e02020;
}

.pdp-bundle-progress__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #e02020;
    text-decoration: none;
}

.pdp-bundle-progress__cta:hover {
    text-decoration: underline;
}