.product-tire-wizard-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.product-tire-wizard-step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}
.product-tire-wizard-step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}
.product-tire-wizard-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
    border: 2px solid white;
}
.product-tire-wizard-step-item.active .product-tire-wizard-step-circle {
    background-color: var(--bs-orange-custom, #f58220);
    color: white;
}
.product-tire-wizard-step-item.completed .product-tire-wizard-step-circle {
    background-color: #28a745;
    color: white;
}
.product-tire-wizard-step-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
}
.product-tire-wizard-step-item.active .product-tire-wizard-step-title {
    color: var(--bs-orange-custom, #f58220);
}

.product-tire-search-vehicle-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    background-color: var(--bs-light-gray, #f8f9fa);
}
.product-tire-search-vehicle-button:hover,
.product-tire-search-vehicle-input:checked + .product-tire-search-vehicle-button {
    border-color: var(--bs-orange-custom, #f58220);
    background-color: var(--bs-ultralight-orange-custom, #fff3e6);
}
.product-tire-search-vehicle-input { display: none; }

.product-tire-search-season-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--bs-dark, #212529);
}
.product-tire-search-season-icon-container {
    width: 70px;
    height: 70px;
    border: 2px solid #ced4da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}
.product-tire-search-season-input { display: none; }
.product-tire-search-season-input:checked + .product-tire-search-season-icon-container {
    border-color: var(--bs-orange-custom, #f58220);
    background-color: var(--bs-ultralight-orange-custom, #fff3e6);
}

/* Tire image SVG */
.product-tire-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 487px;
    aspect-ratio: 487 / 155;
    margin: 0 auto;
}
.product-tire-image-wrapper .img-fluid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.product-tire-overlay-svg {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    opacity: 0.5;
}
.product-tire-overlay-svg text {
    fill: rgb(255, 255, 255);
    font-size: 1.7rem;
    font-weight: bold;
    font-family: 'Arial Black', Gadget, sans-serif;
    letter-spacing: 0.1em;
}
@media (max-width: 768px) {
    .product-tire-overlay-svg text { font-size: 1.2rem; }
    .product-tire-overlay-svg {top: 10px;}
}
