.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.evcar-market-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.evcar-market-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.evcar-market-card:hover {
    border-color: #9ca3af;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.evcar-market-card__flag {
    font-size: 2rem;
    line-height: 1;
}

.evcar-market-card__label {
    font-weight: 600;
    font-size: 1rem;
}

.evcar-market-card__currency {
    font-size: 0.875rem;
    color: #6b7280;
}

.evcar-country-switcher__select {
    min-width: 10rem;
    padding: 0.4rem 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #fff;
    font-size: 0.9rem;
}

.evcar-breadcrumbs {
    margin-bottom: 1rem;
}

.evcar-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.evcar-breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #9ca3af;
}

.evcar-footer-hubs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.evcar-footer-hubs h3 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
}

.evcar-footer-hubs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evcar-footer-hubs a {
    color: inherit;
    text-decoration: none;
    font-size: 0.875rem;
}

.evcar-footer-hubs a:hover {
    text-decoration: underline;
}

.evcar-related-cars {
    padding: 2rem 0 3rem;
}

.evcar-related-cars__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.evcar-compare-table-wrap {
    overflow-x: auto;
}

.evcar-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.evcar-compare-table th,
.evcar-compare-table td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    text-align: left;
}

.evcar-compare-table th {
    background: #f9fafb;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.car-card__thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
