/* Hot Lots Section */

.hot-lots__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.hot-lots__header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-lots__title {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
}

.hot-lots__link {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s ease;
}

.hot-lots__link:hover {
    color: var(--primary-hover);
}

.hot-lots__badges {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.hot-lots__label {
    font-size: var(--text-caption);
    font-weight: 400;
    color: var(--text-muted);
}

.hot-lots__dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
}

.hot-lots__dot--iaai {
    background-color: var(--primary);
}

.hot-lots__dot--copart {
    background-color: var(--success-dark);
}

.hot-lots__grid {
    display: flex;
    gap: var(--space-5);
}

/* ——— Lot Card ——— */

.lot-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.lot-card__image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
}

.lot-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-5);
}

.lot-card__name {
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lot-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lot-card__price {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary);
}

.lot-card__mileage {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hot-lots__grid {
        flex-direction: column;
    }

    .hot-lots__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
}
