/* =========================
   Voorraad filters
========================= */

.cove-voorraad-filters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.cove-voorraad-filters select,
.cove-voorraad-filters button,
.cove-voorraad-filters a {
    min-height: 48px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #151515;
    color: #fff;
    padding: 0 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cove-voorraad-filters button {
    background: #C1121F;
    border-color: #C1121F;
    font-weight: 700;
    cursor: pointer;
}

.cove-voorraad-filters button:hover {
    background: #9f0e19;
    border-color: #9f0e19;
}

.cove-voorraad-filters a:hover {
    border-color: #C1121F;
    color: #fff;
}

/* =========================
   Voorraad grid
========================= */

.cove-voorraad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* =========================
   Voorraad cards
========================= */

.cove-vehicle-card {
    background: #111;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    overflow: hidden;
    min-height: 100%;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.cove-vehicle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(193,18,31,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.cove-vehicle-link,
.cove-vehicle-card a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cove-vehicle-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #191919;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.cove-vehicle-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .3s ease;
    z-index: 2;
}

.cove-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease, opacity .35s ease;
}

.cove-vehicle-card:hover .cove-vehicle-image img {
    transform: scale(1.04);
    opacity: .78;
}

.cove-vehicle-card:hover .cove-vehicle-image::after {
    background: rgba(0,0,0,.42);
}

.cove-no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.cove-photo-count {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 4;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 4px;
    line-height: 1;
}

.cove-zoom-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
}

.cove-vehicle-card:hover .cove-zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Bekijk auto knop uitgeschakeld */
.cove-hover-button {
    display: none !important;
}

.cove-vehicle-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cove-vehicle-main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cove-vehicle-content h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.cove-uitvoering {
    color: #d0d0d0;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
}

.cove-vehicle-meta {
    margin-top: auto;
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #C1121F;
    font-size: 14px;
    font-weight: 700;
}

.cove-vehicle-meta span {
    display: inline-flex;
    align-items: center;
    color: #C1121F;
}

.cove-vehicle-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    color: #C1121F;
    opacity: .7;
}

.cove-vehicle-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cove-price {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.cove-details-link {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: color .25s ease;
    white-space: nowrap;
}

.cove-vehicle-card:hover .cove-details-link {
    color: #C1121F;
}

/* =========================
   Detailpagina basis
========================= */

html,
body {
    overflow-x: hidden;
}

body.single-voertuig,
body.single-voertuig #main,
body.single-voertuig .main-content,
body.single-voertuig .page-content,
body.single-voertuig .content-area,
body.single-voertuig .site-main,
.cove-vehicle-template-page {
    background: #000 !important;
}

.cove-vehicle-template-page {
    min-height: 100vh;
    padding-top: 50px;
    overflow-x: hidden;
}

.cove-single-modern {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 24px;
    color: #fff;
    box-sizing: border-box;
}

.cove-back-link {
    display: inline-flex;
    color: #9ca3af;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 34px;
}

.cove-back-link:hover {
    color: #C1121F;
}

.cove-single-hero {
    display: grid;
    grid-template-columns: 560px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.cove-single-left {
    max-width: 560px;
    width: 100%;
    min-width: 0;
}

.cove-single-right {
    min-width: 0;
}

/* =========================
   Detailpagina galerij
   Originele verhouding, geen crop
========================= */

.cove-gallery {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.cove-gallery-main {
    position: relative;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    background: transparent !important;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
}

.cove-gallery-main-button {
    width: 100%;
    height: auto !important;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent !important;
    cursor: zoom-in;
    overflow: hidden;
    line-height: 0;
    transform: none !important;
}

.cove-gallery-main img,
.cove-main-vehicle-image {
    width: 100% !important;
    height: auto !important;
    object-fit: initial !important;
    object-position: initial !important;
    transform: none !important;
    background: transparent !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    vertical-align: top !important;
}

.cove-no-gallery {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    background: #111;
}

.cove-gallery-counter {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 5;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.cove-gallery-thumbs {
    display: flex !important;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #C1121F #151515;
    box-sizing: border-box;
}

.cove-gallery-thumbs::-webkit-scrollbar {
    height: 8px;
}

.cove-gallery-thumbs::-webkit-scrollbar-track {
    background: #151515;
    border-radius: 99px;
}

.cove-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #C1121F;
    border-radius: 99px;
}

.cove-thumb-btn {
    flex: 0 0 92px !important;
    width: 92px !important;
    height: 72px !important;
    border: 1px solid rgba(255,255,255,.12);
    background: #111;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: .72;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.cove-thumb-btn.active,
.cove-thumb-btn:hover {
    opacity: 1;
    border-color: #C1121F;
}

.cove-thumb-btn:hover {
    transform: translateY(-2px);
}

.cove-thumb-btn img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* =========================
   Lightbox
   Originele verhouding, geen crop
========================= */

body.cove-lightbox-open {
    overflow: hidden;
}

.cove-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.cove-lightbox.active {
    display: flex;
}

.cove-lightbox-image-wrap {
    width: auto;
    max-width: 92vw;
    max-height: 86vh;
    overflow: visible;
    border-radius: 12px;
    background: transparent;
    line-height: 0;
}

.cove-lightbox-image {
    width: auto !important;
    height: auto !important;
    max-width: 92vw !important;
    max-height: 86vh !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    display: block !important;
    border-radius: 12px;
}

.cove-lightbox-close,
.cove-lightbox-prev,
.cove-lightbox-next {
    position: absolute;
    border: 0;
    background: rgba(255,255,255,.10);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
}

.cove-lightbox-close:hover,
.cove-lightbox-prev:hover,
.cove-lightbox-next:hover {
    background: #C1121F;
}

.cove-lightbox-close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
}

.cove-lightbox-prev,
.cove-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 72px;
    border-radius: 10px;
    font-size: 54px;
    line-height: 1;
}

.cove-lightbox-prev {
    left: 24px;
}

.cove-lightbox-next {
    right: 24px;
}

.cove-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 8px 14px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
}

/* =========================
   Detailpagina rechterzijde
========================= */

.cove-single-label {
    color: #C1121F;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 800;
    display: block;
    margin-bottom: 14px;
}

.cove-single-right h1 {
    color: #fff;
    font-size: clamp(38px,4vw,62px);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin: 0 0 14px;
}

.cove-single-subtitle {
    color: #b8b8b8;
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 28px;
    overflow-wrap: anywhere;
}

.cove-single-price {
    color: #C1121F;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 34px;
}

.cove-spec-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-bottom: 34px;
}

.cove-spec-box {
    background: #111;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 18px;
    min-height: 100px;
}

.cove-spec-box span {
    display: block;
    color: #8f8f8f;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 10px;
}

.cove-spec-box strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

.cove-single-highlights {
    margin-bottom: 30px;
}

.cove-single-highlights h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 16px;
}

.cove-single-highlights ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #d0d0d0;
}

.cove-single-highlights li::before {
    content: "✓";
    color: #C1121F;
    font-weight: 800;
    margin-right: 10px;
}

.cove-single-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   Beschrijving en opties
========================= */

.cove-single-info-grid {
    display: grid;
    grid-template-columns: 1fr .55fr;
    gap: 70px;
    margin-top: 90px;
}

.cove-description-block h2,
.cove-options h2 {
    color: #fff;
    font-size: 30px;
    margin: 0 0 28px;
}

.cove-description-content {
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.85;
}

/* =========================
   Opties accordion
========================= */

.cove-options {
    color: #b8b8b8;
    margin-top: 0;
}

.cove-options-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cove-option-accordion-item {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: #0f0f0f;
    overflow: hidden;
}

.cove-option-accordion-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-weight: 800;
    font-size: 16px;
}

.cove-option-accordion-trigger span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cove-option-accordion-trigger span::before {
    content: "+";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(193,18,31,.18);
    color: #C1121F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    line-height: 1;
}

.cove-option-accordion-item.active .cove-option-accordion-trigger span::before {
    content: "–";
}

.cove-option-accordion-trigger strong {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #C1121F;
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cove-option-accordion-content {
    display: none;
    padding: 0 20px 18px;
}

.cove-option-accordion-item.active .cove-option-accordion-content {
    display: block;
}

.cove-option-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cove-option-accordion-content li {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 12px 0;
    color: #b8b8b8;
    font-size: 14px;
}

.cove-option-accordion-content li::before {
    content: "✓";
    color: #C1121F;
    margin-right: 10px;
    font-weight: 800;
}

/* =========================
   Extra specs
========================= */

.cove-extra-specs-section {
    margin-top: 80px;
}

.cove-extra-specs-section h2 {
    color: #fff;
    font-size: 30px;
    margin: 0 0 28px;
}

.cove-extra-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cove-extra-spec {
    background: #111;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 20px;
}

.cove-extra-spec span {
    display: block;
    color: #8f8f8f;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 10px;
}

.cove-extra-spec strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

/* =========================
   Interesseblok
========================= */

.cove-interest-block {
    margin-top: 80px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: #0f0f0f;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.cove-interest-block h3 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 24px;
}

.cove-interest-block p {
    color: #b8b8b8;
    margin: 0;
}

.cove-interest-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cove-interest-contact a,
.cove-btn {
    min-height: 52px;
    padding: 0 24px;
    background: #C1121F;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.cove-interest-contact a:hover,
.cove-btn:hover {
    background: #9f0e19;
    color: #fff !important;
}

.cove-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
}

.cove-btn.secondary:hover {
    border-color: #C1121F;
    background: transparent;
}

.cove-no-results {
    color: #cfcfcf;
    font-size: 16px;
}

/* =========================
   Mobiele filter popup
========================= */

.cove-mobile-filter-toggle,
.cove-filter-panel-header,
.cove-mobile-filter-overlay {
    display: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1300px) {
    .cove-voorraad-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .cove-voorraad-filters {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 1100px) {
    .cove-single-hero,
    .cove-single-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cove-single-left {
        max-width: 100%;
    }

    .cove-spec-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 1000px) {
    .cove-extra-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .cove-voorraad-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 700px) {
    html,
    body {
        overflow-x: hidden !important;
    }

    body.single-voertuig .cove-vehicle-template-page,
    body.single-voertuig .cove-single-modern,
    body.single-voertuig .cove-single-hero,
    body.single-voertuig .cove-single-left,
    body.single-voertuig .cove-single-right,
    body.single-voertuig .cove-single-info-grid,
    body.single-voertuig .cove-interest-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .cove-single-modern {
        padding: 42px 20px;
    }

    .cove-gallery {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .cove-gallery-main {
        height: auto !important;
        border-radius: 14px;
    }

    .cove-gallery-main-button {
        height: auto !important;
        transform: none !important;
    }

    .cove-gallery-main img,
    .cove-main-vehicle-image {
        width: 100% !important;
        height: auto !important;
        object-fit: initial !important;
        transform: none !important;
    }

    .cove-gallery-thumbs {
        display: flex;
        overflow-x: auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cove-thumb-btn {
        flex: 0 0 78px !important;
        width: 78px !important;
        height: 62px !important;
    }

    .cove-single-right h1 {
        font-size: 34px;
    }

    .cove-single-price {
        font-size: 30px;
    }

    .cove-spec-grid {
        grid-template-columns: 1fr;
    }

    .cove-single-highlights ul {
        grid-template-columns: 1fr;
    }

    .cove-single-actions {
        flex-direction: column;
    }

    .cove-btn {
        width: 100%;
    }

    .cove-single-info-grid {
        margin-top: 58px;
    }

    .cove-interest-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .cove-interest-contact,
    .cove-interest-contact a {
        width: 100%;
    }

    .cove-lightbox {
        padding: 18px;
    }

    .cove-lightbox-image-wrap {
        width: 100% !important;
        max-width: calc(100vw - 36px) !important;
        max-height: 78vh !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .cove-lightbox-image {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 78vh !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }

    .cove-lightbox-prev,
    .cove-lightbox-next {
        width: 44px;
        height: 58px;
        font-size: 42px;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 3 !important;
    }

    .cove-lightbox-prev {
        left: 8px !important;
    }

    .cove-lightbox-next {
        right: 8px !important;
    }

    .cove-lightbox-close {
        top: 14px;
        right: 14px;
    }

    body.cove-filters-open {
        overflow: hidden;
    }

    .cove-filter-area {
        margin-bottom: 28px;
    }

    .cove-mobile-filter-toggle {
        display: flex;
        width: 100%;
        min-height: 52px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 10px;
        background: #C1121F;
        color: #fff;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        cursor: pointer;
    }

    .cove-mobile-filter-toggle::before {
        content: "☰";
        margin-right: 10px;
        font-size: 16px;
    }

    .cove-mobile-filter-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.72);
        z-index: 99990;
    }

    .cove-mobile-filter-overlay.active {
        display: block;
    }

    .cove-filter-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99991;
        background: #0b0b0b;
        border-top: 1px solid rgba(255,255,255,.12);
        border-radius: 20px 20px 0 0;
        padding: 22px 20px 24px;
        transform: translateY(110%);
        transition: transform .28s ease;
        max-height: 88vh;
        overflow-y: auto;
        box-shadow: 0 -18px 50px rgba(0,0,0,.45);
    }

    .cove-filter-panel.active {
        transform: translateY(0);
    }

    .cove-filter-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    .cove-filter-panel-header span {
        color: #fff;
        font-size: 22px;
        font-weight: 800;
    }

    .cove-filter-close {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.16);
        background: #151515;
        color: #fff;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
    }

    .cove-voorraad-filters {
        grid-template-columns: 1fr !important;
        gap: 13px;
        margin-bottom: 0;
    }

    .cove-voorraad-filters select,
    .cove-voorraad-filters button,
    .cove-voorraad-filters a {
        width: 100%;
        min-height: 52px;
        border-radius: 10px;
    }

    .cove-voorraad-filters button {
        margin-top: 6px;
    }
}

@media (max-width: 600px) {
    .cove-voorraad-filters {
        grid-template-columns: 1fr;
    }

    .cove-voorraad-grid {
        grid-template-columns: 1fr;
    }

    .cove-vehicle-content {
        padding: 22px;
    }

    .cove-vehicle-content h3 {
        font-size: 22px;
    }

    .cove-vehicle-footer {
        flex-direction: row;
        align-items: center;
    }

    .cove-price {
        font-size: 22px;
    }

    .cove-extra-specs-section {
        margin-top: 56px;
    }

    .cove-extra-specs-grid {
        grid-template-columns: 1fr;
    }
}