/* =========================================
   Ovis Voorraad — Grid & Cards
   ========================================= */

.ovis-voorraad {
    width: 100%;
    box-sizing: border-box;
}

/* =========================================
   Filters
   ========================================= */

/* =========================================
   Categorie tabs
   ========================================= */

.ovis-tabs {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.ovis-tabs__tab {
    height: 44px;
    padding: 0 1.1rem !important;
    border: 1px solid #e5e7eb !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important;
    background: #ececec !important;
    color: #6b7280 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    line-height: 1.4 !important;
    cursor: pointer;
    transition: none;
    white-space: nowrap;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    position: relative;
    bottom: -1px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.ovis-tabs__tab svg {
    flex-shrink: 0;
    opacity: 0.75;
    width: 26px;
    height: 26px;
    stroke-width: 1.25;
}

.ovis-tabs__tab.is-active svg {
    opacity: 1;
}

.ovis-tabs__tab:hover {
    background: #e2e4e7 !important;
    color: #374151 !important;
}

.ovis-tabs__tab.is-active {
    background: #f5f5f5 !important;
    color: #111827 !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #f5f5f5 !important;
    z-index: 2;
}

/* Disabled model-filter */
.ovis-model-filter.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

/* Filterbalk sluit aan op de tabs: geen radius linksboven */
.ovis-tabs+.ovis-filters .ovis-filters__bar {
    border-top-left-radius: 0 !important;
}

/* =========================================
   Filters
   ========================================= */

.ovis-filters {
    width: 100%;
    margin-bottom: 2rem;
}

.ovis-filters__bar {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    background: #F5F5F5;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    padding: 0.875rem 1.25rem;
}

.ovis-filters__fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 1.5rem;
    align-items: end;
    width: 100%;
}

.ovis-filters__group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0 1.25rem;
    border-right: 1px solid #e5e7eb;
}

.ovis-filters__group:first-child {
    padding-left: 0;
}

/* Geen border rechts op de 4e kolom per rij */
.ovis-filters__fields>*:nth-child(4n) {
    border-right: none;
}

.ovis-filters__actions {
    grid-column: 1 / -1;
    padding-left: 0;
    border-right: none;
    justify-content: flex-end;
}

.ovis-filters__select {
    width: 100%;
}

.ovis-filters__label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}

.ovis-filters__label svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.ovis-filters__select {
    width: 100%;
    height: 36px;
    padding: 0 1.6rem 0 0.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.82rem;
    color: #374151;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    appearance: none;
    cursor: pointer;
}

.ovis-filters__select:focus {
    outline: none;
    border-color: #111827;
}

.ovis-filters__group--slaap {
    padding-left: 0;
}

.ovis-filters__group--lengte {
    grid-column: 2;
}

.ovis-filters__range {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ovis-filters__range .ovis-filters__select {
    width: auto;
    flex: 1;
}

.ovis-filters__range-sep {
    color: #6b7280;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.ovis-filters__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.ovis-filters__btn {
    height: 36px;
    padding: 0 1.25rem;
    background: #DE8D31 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    font-family: inherit;
    letter-spacing: normal !important;
    text-transform: none !important;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    transition: background 0.15s ease;
    outline: none !important;
    box-shadow: none !important;
}

.ovis-filters__btn:hover,
.ovis-filters__btn:focus,
.ovis-filters__btn:active {
    background: #C27824 !important;
    color: #fff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =========================================
   Multi-select
   ========================================= */

.ovis-multi-select {
    position: relative;
    width: 100%;
}

.ovis-multi-select__trigger {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.3rem !important;
    min-height: 36px;
    width: 100% !important;
    padding: 0.3rem 0.6rem;
    border: 1px solid #e5e7eb !important;
    border-radius: 4px;
    background: #fff !important;
    color: #6b7280 !important;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    font-family: inherit !important;
    text-align: left;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: border-color 0.15s ease;
}

.ovis-multi-select__trigger:hover,
.ovis-multi-select.is-open .ovis-multi-select__trigger {
    border-color: #111827 !important;
    box-shadow: none !important;
    outline: none !important;
}

.ovis-multi-select__placeholder {
    color: #6b7280;
    font-size: 0.82rem;
    line-height: 1;
    align-self: center;
}

.ovis-multi-select__tag {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px;
    padding: 2px 6px 2px 8px;
    background: #111827;
    color: #fff;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
    width: auto !important;
    max-width: 100%;
}

.ovis-multi-select__tag-remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    width: 14px !important;
    height: 14px !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    font-family: inherit !important;
    line-height: 1 !important;
    cursor: pointer;
    opacity: 0.7;
    box-shadow: none !important;
    outline: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: opacity 0.1s ease;
    vertical-align: middle;
}

.ovis-multi-select__tag-remove:hover {
    opacity: 1;
    background: transparent !important;
    color: #fff !important;
}

.ovis-multi-select__arrow {
    flex-shrink: 0;
    margin-left: auto;
    opacity: 0.5;
    transition: transform 0.15s ease;
    align-self: center;
}

.ovis-multi-select.is-open .ovis-multi-select__arrow {
    transform: rotate(180deg);
}

.ovis-multi-select__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 100;
    min-width: 200px;
    width: max-content;
    max-width: 260px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ovis-multi-select.is-open .ovis-multi-select__dropdown {
    display: block;
}

.ovis-multi-select__search {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: none;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.82rem;
    color: #374151;
    background: #fafafa;
    outline: none;
    box-sizing: border-box;
}

.ovis-multi-select__list {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    max-height: 220px;
    overflow-y: auto;
}

.ovis-multi-select__option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
    color: #374151;
    cursor: pointer;
    transition: background 0.1s ease;
}

.ovis-multi-select__option:hover {
    background: #f3f4f6;
}

.ovis-multi-select__option.is-selected {
    font-weight: 500;
    color: #111827;
}

.ovis-multi-select__check {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.ovis-multi-select__option.is-selected .ovis-multi-select__check {
    opacity: 1;
}

.ovis-filters__reset {
    font-size: 0.8rem;
    color: #6b7280;
    text-decoration: underline;
    white-space: nowrap;
}

.ovis-filters__reset:hover {
    color: #111827;
}

/* Loading state */
.ovis-voorraad.is-loading .ovis-results {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.ovis-results {
    width: 100%;
    min-width: 0;
}

.ovis-geen-resultaten {
    padding: 2rem 0;
    color: #6b7280;
    width: 100%;
}

.ovis-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ovis-totaal {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.ovis-sort__select {
    width: auto;
    border: none !important;
    background: transparent !important;
    appearance: none;
    font-size: 0.875rem;
    color: #374151;
    font-family: inherit;
    cursor: pointer;
    padding-right: 1.2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0 center !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Loop item wrapper (Elementor template per vehicle) */
.ovis-loop-item {
    display: contents;
    /* transparent in the grid — the inner Elementor div is the actual grid cell */
}

/* Grid */
.ovis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .ovis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ovis-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.ovis-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.ovis-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Afbeelding */
.ovis-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

/* Slider */
.ovis-card__slides {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
    will-change: transform;
}

.ovis-card__slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.ovis-card__slide img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.ovis-card__slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 2;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    font-size: 1.4rem !important;
    font-family: inherit !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.15s ease;
}

.ovis-card__slider-btn--prev {
    left: 10px;
}

.ovis-card__slider-btn--next {
    right: 10px;
}

.ovis-card:hover .ovis-card__slider-btn,
.ovis-gallery-standalone .ovis-card__slider-btn {
    opacity: 1;
}

/* Standalone galerij buiten .ovis-card context */
.ovis-gallery-standalone .ovis-card__slides {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
}

.ovis-card__slider-btn:hover {
    background: rgba(0, 0, 0, 0.75) !important;
}

.ovis-card__slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.ovis-card__slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.ovis-card__slider-dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

.ovis-card__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.85em;
}

/* Badge (status) */
.ovis-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.ovis-card__badge--nieuw {
    background: #16a34a;
}

.ovis-card__badge--occasion {
    background: #2563eb;
}

.ovis-card__badge--verkocht {
    background: #dc2626;
}

.ovis-card__badge--gereserveerd {
    background: #d97706;
}

.ovis-card__badge--verwacht {
    background: #7c3aed;
}

.ovis-card__badge--huur {
    background: #0891b2;
}

/* Body */
.ovis-card__body {
    flex: 1;
    padding: 1rem;
}

.ovis-card__brand {
    font-size: 0.8em;
    color: #6b7280;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ovis-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    color: #111827;
}

/* Meta (jaar, lengte, slaapplaatsen) */
.ovis-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ovis-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82em;
    color: #6b7280;
}

.ovis-card__meta-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Footer */
.ovis-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
}

.ovis-card__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.ovis-card__btn {
    display: inline-block;
    padding: 6px 16px;
    background: #111827;
    color: #fff;
    border-radius: 4px;
    font-size: 0.82em;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.ovis-card__btn:hover {
    background: #374151;
    color: #fff;
}

/* =========================================
   Paginering
   ========================================= */

.ovis-paginering {
    margin-top: 2rem;
}

.ovis-paginering__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ovis-paginering__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    background: #fff;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.ovis-paginering__link:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #111827;
}

.ovis-paginering__link--actief {
    background: #111827;
    border-color: #111827;
    color: #fff;
    pointer-events: none;
}

.ovis-paginering__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Standalone galerij (shortcode buiten card) */
.ovis-gallery-standalone {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    width: 100%;
}

/* =========================================
   Ovis Gallery widget (thumbnail layout)
   ========================================= */

.ovis-gallery {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Hoofdafbeelding */
.ovis-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f4f6;
    border-radius: 8px;
}

.ovis-gallery__slides {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.ovis-gallery__slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.ovis-gallery__slide img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Navigatieknoppen */
.ovis-gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    min-width: unset !important;
    min-height: unset !important;
    aspect-ratio: 1 / 1;
    font-size: 20px;
    line-height: 1;
    padding: 0 !important;
    margin: 0;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.ovis-gallery__btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.ovis-gallery__btn--prev {
    left: 12px;
}

.ovis-gallery__btn--next {
    right: 12px;
}

.ovis-gallery__btn svg {
    display: block;
    flex-shrink: 0;
}

/* Thumbnails */
.ovis-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ovis-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.ovis-gallery__thumb {
    position: relative;
    flex: 0 0 calc(25% - 6px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ovis-gallery__thumb:hover {
    opacity: 0.85;
}

.ovis-gallery__thumb.is-active {
    opacity: 1;
    box-shadow: 0 0 0 2px #111827;
}


/* =========================================
   Ovis USP's widget
   ========================================= */

.ovis-usps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ovis-usps__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ovis-usps__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #111827;
}

.ovis-usps__icon svg {
    display: block;
}

.ovis-usps__text {
    line-height: 1.4;
}

/* =========================================
   Ovis Lightbox
   ========================================= */

.ovis-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.ovis-lightbox.is-open {
    display: flex;
}

.ovis-lightbox__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px 72px;
    box-sizing: border-box;
}

.ovis-lightbox__img-wrap img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 4px;
    user-select: none;
}

.ovis-lightbox__close,
.ovis-lightbox__btn {
    position: fixed;
    width: 44px !important;
    height: 44px !important;
    min-width: unset !important;
    min-height: unset !important;
    aspect-ratio: 1 / 1 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    background-color: rgba(0, 0, 0, 0.45) !important;
    color: #fff !important;
    border: none !important;
    border-color: transparent !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s;
    z-index: 1;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-sizing: border-box !important;
}

.ovis-lightbox__close {
    top: 16px;
    right: 16px;
}

.ovis-lightbox__btn {
    top: 50%;
    transform: translateY(-50%);
}

.ovis-lightbox__btn:hover,
.ovis-lightbox__close:hover {
    background: rgba(0, 0, 0, 0.7) !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.ovis-lightbox__btn svg,
.ovis-lightbox__close svg {
    display: block;
    flex-shrink: 0;
}

.ovis-lightbox__btn--prev {
    left: 16px;
}

.ovis-lightbox__btn--next {
    right: 16px;
}

.ovis-gallery__main {
    cursor: zoom-in;
}

/* =========================================
   Ovis Beschrijving widget
   ========================================= */

.ovis-beschrijving__content {
    overflow: hidden;
    position: relative;
    line-height: 1.7;
}

.ovis-beschrijving:not(.is-expanded) .ovis-beschrijving__content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3.5em;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.ovis-beschrijving__toggle[hidden] {
    display: none !important;
}

.ovis-beschrijving__toggle {
    display: inline-block;
    margin-top: .75em;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    color: var(--e-global-color-accent, #e67e22);
    text-decoration: none;
}

.ovis-beschrijving__toggle:hover {
    text-decoration: underline;
    /* fallback — overschrijfbaar via Elementor */
}

/* =========================================
   Ovis Indeling — pills
   ========================================= */

.ovis-indeling__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ovis-indeling__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #f3f4f6;
    border-radius: 999px;
    line-height: 1.4;
}

.ovis-indeling__icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
}

.ovis-indeling__icon svg {
    width: 1em;
    height: 1em;
}

.ovis-indeling__label {
    white-space: nowrap;
}

/* =========================================
   Ovis Accessoires
   ========================================= */

.ovis-accessoires {
    position: relative;
}

.ovis-accessoires:not(.is-expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.ovis-accessoires__groups {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ovis-accessoires__group--hidden,
.ovis-accessoires__row--hidden {
    display: none;
}

.ovis-accessoires__cat-title {
    margin: 0 0 12px;
    padding: 0;
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.3;
}

.ovis-accessoires__grid {
    display: flex;
    flex-direction: column;
}

.ovis-accessoires__row {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 12px;
}

.ovis-accessoires__item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    flex: 0 0 calc(100% / 3);
    min-width: 0;
}

.ovis-accessoires__icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1;
}

.ovis-accessoires__icon svg {
    width: 1em;
    height: 1em;
}

.ovis-accessoires__toggle {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    color: var(--e-global-color-accent, #e67e22);
    text-decoration: none;
}

.ovis-accessoires__toggle:hover {
    text-decoration: underline;
}

/* ── Ovis Specificaties ── */

.ovis-specs {
    display: flex;
    flex-direction: column;
}

.ovis-specs__table {
    width: 100%;
}

.ovis-specs__row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.ovis-specs__row--hidden {
    display: none;
}

.ovis-specs__label {
    flex: 0 0 40%;
    font-weight: 600;
}

.ovis-specs__value {
    flex: 1;
}

.ovis-specs__toggle {
    display: inline-block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-align: center;
    align-self: center;
}