/* Hero vehicle picker — type → sub-category → vehicles */
.fc-hp {
    min-height: 200px;
}

.fc-hp-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fc-hp-title {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fc-hp-steps {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fc-hp-step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    transition: 0.2s ease;
}

.fc-hp-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
}

.fc-hp-step.is-active {
    background: var(--primary-color, #f0c040);
    color: #111;
}

.fc-hp-step.is-active span {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.fc-hp-step.is-done {
    color: rgba(255, 255, 255, 0.85);
}

.fc-hp-trail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.fc-hp-trail[hidden] {
    display: none !important;
}

.fc-hp-back {
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s ease;
}

.fc-hp-back:hover {
    background: var(--primary-color, #f0c040);
    color: #111;
}

.fc-hp-trail-text {
    font-size: 13px;
    opacity: 0.85;
}

.fc-hp-trail-text .fc-hp-crumb {
    color: var(--primary-color, #f0c040);
    font-weight: 600;
}

.fc-hp-lead {
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.9;
}

.fc-hp-muted {
    opacity: 0.65;
    font-size: 14px;
}

.fc-hp-panel[hidden] {
    display: none !important;
}

.fc-hp-panel.is-active {
    animation: fcHpFade 0.25s ease;
}

@keyframes fcHpFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Choice tiles (type / sub-category) */
.fc-hp-tile {
    border: none;
    width: 100%;
    padding: 18px 12px 14px;
    border-radius: 10px;
    background: var(--primary-color, #e8b923);
    color: #fff;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fc-hp-tile:hover,
.fc-hp-tile:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    outline: none;
    color: #fff;
}

.fc-hp-tile.is-selected {
    box-shadow: 0 0 0 2px #fff, 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fc-hp-tile__icon {
    display: block;
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1;
    opacity: 0.95;
}

.fc-hp-tile__label {
    display: block;
    font-size: 13px;
    line-height: 1.3;
}

/* Vehicle cards in hero */
.fc-hp-vehicles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.fc-hp-vehicles::-webkit-scrollbar {
    width: 6px;
}

.fc-hp-vehicles::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}

.fc-hp-vcard {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: 0.2s ease;
}

.fc-hp-vcard:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-2px);
}

.fc-hp-vcard__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.fc-hp-vcard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Two-wheeler: portrait image in hero results */
.fc-hp-vcard--two-wheeler .fc-hp-vcard__img {
    aspect-ratio: 3 / 4;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(30, 203, 21, 0.08) 100%);
}

.fc-hp-vcard--two-wheeler .fc-hp-vcard__img img {
    width: auto;
    max-width: 85%;
    max-height: 130px;
    object-fit: contain;
}

.fc-hp-vcard--car .fc-hp-vcard__img {
    aspect-ratio: 16 / 10;
}

.fc-hp-vcard__body {
    padding: 10px 12px 12px;
}

.fc-hp-vcard__name {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.25;
}

.fc-hp-vcard__meta {
    font-size: 11px;
    opacity: 0.75;
    margin-bottom: 6px;
}

.fc-hp-vcard__price {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color, #f0c040);
}

.fc-hp-footnote {
    margin: 14px 0 0;
    font-size: 12px;
    opacity: 0.65;
    text-align: center;
}

.fc-hp-empty {
    text-align: center;
    padding: 24px 12px;
    opacity: 0.8;
    font-size: 14px;
}

@media (max-width: 575px) {
    .fc-hp-steps {
        width: 100%;
        justify-content: space-between;
    }

    .fc-hp-step {
        flex: 1;
        justify-content: center;
        padding: 6px 4px;
        font-size: 9px;
    }

    .fc-hp-vehicles {
        grid-template-columns: 1fr;
        max-height: 360px;
    }
}
