/* =========================================================
   make.css — Auto Part Search | Select Make Page
   Pure CSS, no Tailwind dependency
   ========================================================= */

/* =========================================================
   1. CSS VARIABLES
   ========================================================= */
:root {
    --teal-dark:      #0a4a47;
    --teal-mid:       #0d6b63;
    --teal-bright:    #0ea89a;
    --lime:           #dcfb11;
    --lime-hover:     #b0db00;
    --white:          #ffffff;
    --off-white:      #f0f4f0;
    --text-muted:     rgba(255, 255, 255, 0.65);
    --circle-bg:      #e8ede8;
    --circle-border:  #d0d8d0;
    --selected-glow:  rgba(200, 244, 0, 0.45);
    --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.18);
    --transition:     0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main:      'Roboto', sans-serif;
    --font-display:   'Wix Madefor Display', sans-serif;
    --make-max-width: 1280px;
}

body.homepage {
    /* background: radial-gradient(circle at 70% 20%, #17bfae 0%, #004d4f 35%, #002d2f 100%); */
}

/* =========================================================
   2. BASE RESET (scoped to make page)
   ========================================================= */
.make-page *,
.make-page *::before,
.make-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.homepage:has(.make-page) {
    background-position: center top;
}

.make-page {
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
    /* background:
      radial-gradient(120% 30% at 52% 18%, rgba(27, 244, 203, 0.78) 0%, rgba(27, 244, 203, 0.24) 32%, rgba(27, 244, 203, 0) 60%),
      radial-gradient(28% 65% at 0% 78%, rgba(61, 244, 214, 0.62) 0%, rgba(61, 244, 214, 0.18) 44%, rgba(61, 244, 214, 0) 78%),
      linear-gradient(180deg, #041f45 0%, #0a6e79 21%, #0b666e 34%, #09505a 58%, #084952 100%); */
}

/* =========================================================
   3. HERO SECTION
   ========================================================= */
.make-hero {
    position: relative;
    background: transparent;
    /* min-height: 100vh; */
    /* padding-bottom: 4rem; */
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 32px;
}

/* noise texture overlay */
.make-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

/* =========================================================
   4. TOPBAR
   ========================================================= */
.make-topbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 36px;
}

.make-topbar-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 12px;
}

.make-topbar-subtitle {
    font-size: 16px;
    color: #fff;
    margin-top: 3px;
    font-weight: 400;
    letter-spacing: 0.6px;
    /* text-transform: uppercase; */
}

/* ---- Search ---- */
.make-search-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}

.make-search-wrap:focus-within {
    background: rgba(255, 255, 255, 0.17);
    border-color: var(--lime);
}

.make-search-input {
    /* background: transparent; */
    border: none;
    outline: none;
    color: #000;
    font-family: var(--font-main);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    width: 190px;
}

.model-search-wrap {
    display: flex;
    align-items: center;
    width: min(360px, 100%);
    background: #ffffff;
    border-radius: 999px;
    overflow: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    flex-shrink: 0;
    margin-bottom: 12px;
}

.model-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    color: #305259;
    padding: 0.45rem 0.85rem;
}

.model-search-btn {
    width: 44px;
    height: 36px;
    border: none;
    background: #00FFB5;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.model-search-btn svg {
    width: 14px;
    height: 14px;
}

.make-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.make-search-btn {
    background: #00FFB5;
    border: none;
    padding: 12px 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.make-search-btn:hover {
    background: var(--lime-hover);
}

.make-search-btn svg {
    width: 15px;
    height: 15px;
    display: block;
}

/* =========================================================
   5. INTRO TEXT
   ========================================================= */
.make-intro {
    position: relative;
    z-index: 10;
    /* padding: 1.5rem 2rem 0; */
    /* max-width: 860px; */
}

.make-intro-heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.make-hero.make-hero-content{
    box-shadow: var(--shadow-card);
    /* background:
  radial-gradient(120% 30% at 52% 18%, rgba(27, 244, 203, 0.45) 0%, rgba(27, 244, 203, 0.18) 32%, rgba(27, 244, 203, 0) 60%),
  radial-gradient(28% 65% at 0% 78%, rgba(61, 244, 214, 0.35) 0%, rgba(61, 244, 214, 0.12) 44%, rgba(61, 244, 214, 0) 78%),
  linear-gradient(180deg, rgba(2, 45, 31, 0.85) 0%, rgba(6, 78, 59, 0.75) 25%, rgba(6, 95, 70, 0.7) 50%, rgba(4, 120, 87, 0.65) 75%, rgba(6, 95, 70, 0.7) 100%);  */
padding: 44px 32px;
background: linear-gradient(180deg, rgba(6, 105, 105, 0.5) 0%, rgba(5, 86, 91, 0.55) 100%);
padding-left: 48px;
}

.make-intro-body {
    /* font-family: var(--font-display); */
    font-family: var(--font-main);
    font-size: 18px;
    color: #fff;
    line-height: 1.65;
}

.make-intro-cta {
    font-family: var(--font-display);
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    /* font-style: italic; */
}

/* =========================================================
   6. MAKE GRID SECTION
   ========================================================= */
.make-grid-section {
    position: relative;
    z-index: 10;
    /* padding: 1.5rem 2rem 0; */
}

.make-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 44px;
    width: 100%;
    max-width: none;
    row-gap: 32px;
}

/* =========================================================
   7. MAKE CARD (circle tile)
   ========================================================= */
.make-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    user-select: none;
    outline: none;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;

    /* entry animation */
    opacity: 0;
    transform: translateY(14px) scale(0.95);
    animation: cardReveal 0.35s ease forwards;
}

.make-card:visited {
    color: inherit;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* hidden state (view all) */
.make-card.make-hidden {
    display: none !important;
}

/* no-result state */
.make-card.make-no-match {
    display: none !important;
}

/* ---- Circle ---- */
.make-circle {
    position: relative;
    width: clamp(68px, 8.5vw, 160px);
    height: clamp(68px, 8.5vw, 160px);
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--circle-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition),
        background var(--transition);
}

.make-circle img {
    width: 58%;
    height: 58%;
    object-fit: contain;
    /* transition: transform var(--transition); */
    /* makes SVG logos dark by default — remove if logos are already coloured */
    /* filter: brightness(0) saturate(100%); */
}

/* ---- Tick badge ---- */
.make-tick {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
}

.make-tick svg {
    width: 10px;
    height: 10px;
    stroke: #111;
    stroke-width: 2.5;
    fill: none;
    display: block;
}

/* ---- Label ---- */
.make-label {
    font-family: 'URWDIN-Bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f3d42;
    text-transform: uppercase;
    text-align: center;
    transition: color var(--transition);
    line-height: 1;
}

/* =========================================================
   8. HOVER STATE
   ========================================================= */
.make-card:hover .make-circle {
    border-color: #dcfb11;
    box-shadow: 0 0 0 3px rgba(200, 244, 0, 0.13);
    transform: translateY(-3px);
}

.make-card:hover .make-circle img {
    transform: scale(1.08);
}

.make-card:hover {
    color: var(--lime);
}

/* =========================================================
   9. SELECTED STATE
   ========================================================= */
.make-card.is-selected .make-circle {
    border-color: var(--lime);
    box-shadow:
        0 0 0 4px var(--selected-glow),
        0 6px 22px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    transform: translateY(-4px);
}

.make-card.is-selected .make-circle img {
    transform: scale(1.1);
}

.make-card.is-selected .make-tick {
    opacity: 1;
    transform: scale(1);
}

.make-card.is-selected {
    color: var(--lime);
}

/* focus ring for keyboard */
.make-card:focus-visible .make-circle {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
}

/* =========================================================
   10. VIEW TOGGLE BUTTON
   ========================================================= */
.view-toggle-wrap {
    position: relative;
    z-index: 10;
    padding: 2rem 0 0;
}

.view-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    color: #00FFB5;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.3px;
    transition: color var(--transition), gap var(--transition);
    text-decoration: none;
}

.view-toggle-btn:hover {
    gap: 0.65rem;
}

.view-toggle-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.view-toggle-btn.is-expanded svg {
    transform: rotate(180deg);
}

/* =========================================================
   11. EMPTY SEARCH STATE
   ========================================================= */
.make-no-results {
    display: none;
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
}

.make-no-results.is-visible {
    display: block;
}

/* =========================================================
   12. TRUST SECTION
   ========================================================= */
.make-trust-section {
    position: relative;
    font-family: var(--font-main);
    background: transparent;
    padding: 3rem 2rem 3rem;
}

.make-trust-inner {
    position: relative;
    z-index: 2;
    max-width: var(--make-max-width);
    margin: 0 auto;
    background-image: url(../images/man-repairing-car.jpg);
    background-size: cover;
    background-position: center;
    /* border: 1px solid rgba(130, 225, 215, 0.25); */
    min-height: 374px;
    padding: 3rem 4rem;
    overflow: hidden;
}

.make-trust-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 26, 31, 0.48) 0%, rgba(2, 26, 31, 0.62) 100%);
    z-index: 0;
}

.make-trust-inner > * {
    position: relative;
    z-index: 1;
}

.make-trust-heading {
    font-family: 'URWDIN-Bold', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #76f2ea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.15;
}

.make-trust-body {
    font-size: 18px;
    color: rgba(235, 246, 244, 0.92);
    line-height: 1.72;
    margin-bottom: 0.85rem;
    text-align: center;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}

.shop-heading{
    font-family: var(--font-display);
}

@media (max-width: 900px) {
    .make-trust-inner {
        min-height: 360px;
        padding: 2rem 1.5rem;
    }
}

/* =========================================================
   13. DETAIL PANEL (selected make card — bottom)
   ========================================================= */
.make-detail-panel {
    display: none;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 244, 0, 0.22);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
    animation: panelFadeIn 0.3s ease;
}

.make-detail-panel.is-visible {
    display: flex;
}

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

/* logo box */
.make-detail-logo {
    flex-shrink: 0;
    width: 86px;
    height: 86px;
    background: var(--circle-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.make-detail-logo img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
}

/* content */
.make-detail-content {
    flex: 1;
    min-width: 200px;
}

.make-detail-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
    line-height: 1;
}

/* model list */
.make-detail-models {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.make-detail-models li {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 0.8rem;
    border-left: 2px solid var(--lime);
}

.make-detail-models li strong {
    color: var(--white);
    font-weight: 600;
}

/* view all link */
.make-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--lime);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition), gap var(--transition);
    line-height: 1;
}

.make-detail-link:hover {
    color: var(--lime-hover);
    gap: 0.65rem;
}

.make-detail-link svg {
    flex-shrink: 0;
}

/* =========================================================
   14. SHOP BY MAKE SECTION (popular make shortcut)
   ========================================================= */
.make-shop-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.make-shop-logo {
    width: 80px;
    height: 80px;
    background: var(--circle-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.make-shop-logo img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
}

.make-shop-content {
    flex: 1;
    min-width: 200px;
}

.make-shop-heading {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.6rem;
}

.make-shop-models {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.make-shop-models li {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.make-shop-models li strong {
    color: var(--white);
}

.make-shop-link {
    color: var(--lime);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.make-shop-link:hover {
    color: var(--lime-hover);
}

/* =========================================================
   15. RESPONSIVE BREAKPOINTS
   ========================================================= */

/* ---- Large desktop (1280px+) ---- */
@media (min-width: 1280px) {
    .make-trust-section {
        padding-left: calc((100vw - var(--make-max-width)) / 4);
        padding-right: calc((100vw - var(--make-max-width)) / 4);
    }
}

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
    .make-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* ---- Tablet and down: keep circles — larger diameter + readable type ---- */
@media (max-width: 1023px) {
    .make-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem 0.75rem;
        row-gap: 1.25rem;
        justify-items: center;
    }

    .make-card {
        min-width: 0;
        max-width: 100%;
    }

    .make-circle {
        width: clamp(120px, 30vw, 160px);
        height: clamp(120px, 30vw, 160px);
        border-radius: 50%;
        overflow: hidden;
    }

    .make-label {
        font-size: clamp(13px, 2.7vw, 16px);
        line-height: 1.15;
        letter-spacing: 0.03em;
        max-width: 86%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ---- Mobile (max 640px) ---- */
@media (max-width: 640px) {
    .make-hero {
        padding-inline: 1rem;
    }

    .make-hero.make-hero-content {
        padding: 1.5rem 1rem 1.25rem;
        padding-left: 1rem;
    }

    .make-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0 0.5rem;
        padding-top: 1.25rem;
        gap: 0.75rem;
    }

    .make-topbar-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
        margin-bottom: 0.35rem;
    }

    .make-topbar-subtitle {
        font-size: 0.9rem;
    }

    .model-search-wrap {
        width: 100%;
        max-width: none;
        margin-bottom: 0;
    }

    .make-search-input {
        width: 140px;
    }

    .make-intro-heading {
        font-size: 1.15rem;
    }

    .make-intro-body,
    .make-intro-cta {
        font-size: 0.95rem;
    }

    .make-intro {
        padding: 1rem 0 0;
    }

    .make-intro-cta {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .make-grid-section {
        padding: 0.5rem 0 0;
    }

    .view-toggle-wrap {
        padding: 1rem 0 0;
    }

    .make-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem 0.75rem;
        row-gap: 1.15rem;
        justify-items: center;
    }

    .make-circle {
        width: clamp(140px, 42vw, 180px);
        height: clamp(140px, 42vw, 180px);
        border-radius: 50%;
        overflow: hidden;
    }

    .make-label {
        font-size: clamp(14px, 4vw, 18px);
        line-height: 1.15;
        letter-spacing: 0.04em;
        max-width: 84%;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .make-trust-section {
        padding: 2.5rem 1rem 2rem;
    }

    .make-detail-panel {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .make-detail-logo {
        width: 70px;
        height: 70px;
    }

    .make-shop-row {
        padding: 1rem;
        gap: 1rem;
    }

    .make-no-results {
        padding: 1.25rem 0 0;
    }
}

/* ---- Very small phones (still circles) ---- */
@media (max-width: 380px) {
    .make-grid {
        gap: 0.75rem 0.55rem;
        row-gap: 0.95rem;
    }

    .make-circle {
        width: clamp(128px, 41vw, 168px);
        height: clamp(128px, 41vw, 168px);
    }

    .make-label {
        font-size: clamp(13px, 3.6vw, 16px);
        line-height: 1.12;
        max-width: 86%;
    }

    .make-topbar-title {
        font-size: 1.35rem;
    }
}









 .bg-mesh {
      background:
        radial-gradient(ellipse 80% 60% at 10% 20%, #0d5c4a55 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 90% 80%, #07403355 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 50% 50%, #051e1e 0%, #0a2a2a 100%);
      min-height: 100vh;
    }

    /* ── Logo card ── */
    .logo-card {
      background: #e8f0ee;
      /* border-radius: 4px; */
      display: flex;
      align-items: center;
      justify-content: center;
      width: 230px;
      height:  -webkit-fill-available;
      flex-shrink: 0;
    }

    /* ── Green left border accent ── */
    .border-accent {
      border-left: 3px solid #c8e000;
      padding-left: 1.60rem;
    }

    /* ── Section divider line ── */
    .divider {
      border: none;
      border-top: 1px solid #1e4d44;
    }

    /* ── FAQ accordion ── */
    .faq-item {
      border-bottom: 2px solid #c8e000;
    }
    .faq-item:first-child {
      border-top: 2px solid #c8e000;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: none;
      text-align: left;
      color: #fff;
      font-family: var(--font-main);
      font-size: 16px;
      font-weight: 400;
      padding: .75rem 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.2s;
    }
    .faq-question:hover { color: #c8e000; }

    .faq-icon {
        color: #c8e000;
        font-size: 40px;
        font-weight: 400;
        line-height: 27px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-right: 1rem;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      display: none;
      color: #fff;
      font-size: 0.875rem;
      line-height: 1.7;
      padding-bottom: 1.1rem;
      padding-right: 2rem;
    }

    /* ── Nav links ── */
    .nav-link {
      color: #a0c8be;
      font-size: 1rem;
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-link:hover, .nav-link.active { color: #c8e000; }

    .nav-sep {
      color: #fff;
      margin: 0 0.5rem;
      font-size: 0.8rem;
    }

    /* ── "View All" links ── */
    .view-all {
      color: #c8e000;
      font-size: 0.8rem;
      text-decoration: none;
      white-space: nowrap;
    }
    .view-all:hover { text-decoration: underline; }

    /* ── Section heading ── */
    .section-heading {
      font-family: var(--font-display);
      letter-spacing: 0.12em;
      font-size: 1.25rem;
      color: #7ab0a8;
      text-transform: uppercase;
    }

    .faq-heading {
      font-family: var(--font-display);
      letter-spacing: 0.08em;
      font-size: 1.4rem;
      font-weight: 700;
      color: #e8f4f0;
    }

    #faq-accordion {
      max-width: 1040px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Full-width bottom bands with centered inner content */
    .make-bottom-band {
      width: 100%;
      padding: 0;
    }

    .make-bottom-inner {
      max-width: var(--make-max-width);
      margin: 0 auto;
      width: 100%;
    }

    .make-bottom-divider {
      width: 100%;
      margin: 0;
      border-top-color: rgba(116, 220, 206, 0.24);
    }

    /* =========================================================
       "Shop Used Parts by Popular {Make} Models" — responsive
       ========================================================= */
    @media (max-width: 900px) {
      .make-bottom-band .make-bottom-inner {
          padding: 1.5rem 1.25rem 2rem;
      }

      .make-bottom-band .make-bottom-inner > .flex {
          flex-direction: row;
          align-items: center;
          gap: 1rem;
      }

      .make-bottom-band .logo-card {
          width: 96px;
          height: 96px;
          flex-shrink: 0;
          border-radius: 12px;
          padding: 0.5rem;
      }

      .make-bottom-band .logo-card img {
          width: 100%;
          height: 100%;
          object-fit: contain;
      }

      .make-bottom-band .shop-heading {
          font-size: clamp(18px, 4.5vw, 24px);
          line-height: 1.3;
          margin-bottom: 0.75rem;
          text-align: left;
      }

      .make-bottom-band .border-accent {
          padding-left: 1rem;
          border-left-width: 3px;
      }

      .make-bottom-band .border-accent li {
          padding: 0.2rem 0;
      }

      .make-bottom-band .model-chip-label {
          font-size: 0.95rem;
          line-height: 1.4;
      }
    }

    @media (max-width: 600px) {
      .make-bottom-band .make-bottom-inner {
          padding: 1.25rem 0.875rem 1.5rem;
      }

      .make-bottom-band .make-bottom-inner > .flex {
          gap: 0.875rem;
      }

      /* Drop the bulky placeholder card on phones — adds nothing visually */
      .make-bottom-band .logo-card {
          display: none;
      }

      .make-bottom-band .shop-heading {
          font-size: clamp(16px, 4.8vw, 20px);
          margin-bottom: 0.6rem;
      }

      .make-bottom-band .border-accent {
          padding-left: 0.85rem;
      }

      .make-bottom-band .model-chip-label {
          font-size: 0.9rem;
      }
    }
