/* ==========================================================================
   1) BOOTSTRAP OVERWRITES
   ========================================================================== */

/* Reduce horizontal padding on specific columns */
.bootstrap-wrapper .col-md-1,
.bootstrap-wrapper .col-md-2,
.bootstrap-wrapper .col-md-3 {
  padding-right: 5px;
  padding-left: 5px;
}

/* Make all .row inside .bootstrap-wrapper use flex layout and wrap */
.bootstrap-wrapper .row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-left: 0;
  margin-right: 0;
}

/* Adjust column widths for .col-md-4 inside .bootstrap-wrapper */
.bootstrap-wrapper .col-md-4 {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
}

/* Prevent the generated “:before” table on .row */
.bootstrap-wrapper .row:before {
  display: table;
  content: none !important;
}


/* ==========================================================================
   2) FILTER AREA (Top Filters)
   ========================================================================== */

/* Ensure filter rows are flex‐aligned at the bottom */
#yy-car-filters-wrapper .row {
  display: flex;
  align-items: flex-end;
}

/* Utility for any left‐wrapper paragraphs */
.left-wrapper p {
  margin: 0;
  padding: 0;
}

/* Range container wraps sliders and inputs vertically */
.range_container {
  display: flex;
  flex-direction: column;
  width: 80%;
}

/* Positioning container for overlapping range sliders */
.sliders_control {
  position: relative;
  min-height: 50px;
}

/* Controls layout for number inputs below sliders */
.form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  color: #635a5a;
}

/* Hide default spin buttons on number inputs (Chrome) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}


/* ==========================================================================
   3) RANGE SLIDER STYLING
   ========================================================================== */

/* Style the track */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #c6c6c6;
  pointer-events: none;
}

/* Style the thumb for WebKit */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c6c6c6;
  cursor: pointer;
}

/* Style the thumb for Firefox */
input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c6c6c6;
  cursor: pointer;
}

/* Thumb hover state (WebKit only) */
input[type="range"]::-webkit-slider-thumb:hover {
  background-color: #f7f7f7;
}

/* Thumb active/focus state (WebKit only) */
input[type="range"]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

/* Specific override for #fromSlider positioning */
#fromSlider {
  height: 0;
  z-index: 1;
}

/* Default styling for number inputs */
input[type="number"] {
  color: #8a8383;
  width: 50px;
  height: 30px;
  font-size: 20px;
  border: none;
}


/* ==========================================================================
   4) MULTISTEP FORM (Appointment Form)
   ========================================================================== */

/* Main form container */
#appointment_form {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

/* Each fieldset’s card styling */
#appointment_form fieldset .form-card {
  background: white;
  border: 0 none;
  border-radius: 0px;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
  padding: 20px 40px 30px 40px;
  box-sizing: border-box;
  width: 94%;
  margin: 0 3% 20px 3%;
  position: relative;
}

/* General fieldset styling */
#appointment_form fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

/* Hide all fieldsets except the first */
#appointment_form fieldset:not(:first-of-type) {
  display: none;
}

/* Text styling inside each form card */
#appointment_form fieldset .form-card {
  text-align: left;
  color: #9e9e9e;
}

/* Input and textarea styling */
#appointment_form input:not([type="checkbox"]):not([type="radio"]),
#appointment_form textarea {
  padding: 0px 8px 4px 8px;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
  color: #2c3e50;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Focus state for inputs and textareas */
#appointment_form input:focus,
#appointment_form textarea:focus {
  box-shadow: none !important;
  border: none;
  font-weight: bold;
  border-bottom: 2px solid #0C5453;
  outline-width: 0;
}

/* “Next” buttons */
#appointment_form .action-button {
  width: 100px;
  background: #0C5453;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#appointment_form .action-button:hover,
#appointment_form .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #0C5453;
}

/* “Previous” buttons */
#appointment_form .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#appointment_form .action-button-previous:hover,
#appointment_form .action-button-previous:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

/* Dropdown expiration date styling */
select.list-dt {
  border: none;
  outline: 0;
  border-bottom: 1px solid #ccc;
  padding: 2px 5px 3px 5px;
  margin: 2px;
}
select.list-dt:focus {
  border-bottom: 2px solid #0C5453;
}

/* Progress bar container */
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
}

/* Active step text color */
#progressbar .active {
  color: #000000;
}

/* Each step item */
#progressbar li {
  list-style-type: none;
  font-size: 12px;
  width: 20%;
  float: left;
  position: relative;
}

/* Icons for each step */
#progressbar #account:before {
  font-family: FontAwesome;
  content: "\f023";
}
#progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007";
}
#progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f09d";
}
#progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c";
}

/* Circle for each step number */
#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 18px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

/* Connector bars between steps */
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

/* Active step circle and connector */
#progressbar li.active:before,
#progressbar li.active:after {
  background: #0C5453;
}


/* ==========================================================================
   5) RADIO BUTTONS (Image‐Based)
   ========================================================================== */

.radio-group {
  position: relative;
  margin-bottom: 25px;
}

.radio {
  display: inline-block;
  width: 204px;
  height: 104px;
  background: lightblue;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  cursor: pointer;
  margin: 8px 2px;
}

.radio:hover {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
  box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}


/* ==========================================================================
   6) UTILITY CLASSES
   ========================================================================== */

/* Fit image to its container */
.fit-image {
  width: 100%;
  object-fit: cover;
}


/* ==========================================================================
   7) APPOINTMENT INTERVENTION LIST
   ========================================================================== */

ul.appointment_intervention_list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.appointment_intervention_list li {
  display: inline-block;
}

.appointment_intervention_list input[type="checkbox"][id^="interv"] {
  display: none;
}

.appointment_intervention_list li label {
  padding: 10px;
  display: flex;
  position: relative;
  margin: 10px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.appointment_intervention_list li label:before {
  background-color: white;
  content: "";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition: transform 0.4s;
  transform: scale(0);
}

.appointment_intervention_list label img {
  height: 100px;
  width: 100px;
  transition: transform 0.2s;
  transform-origin: 50% 50%;
}

.appointment_intervention_list input[type="checkbox"]:checked + label {
  border-color: #ddd;
}

.appointment_intervention_list input[type="checkbox"]:checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
}

.appointment_intervention_list input[type="checkbox"]:checked + label img {
  transform: scale(0.9);
}


/* ==========================================================================
   8) CAR CARD LAYOUT
   ========================================================================== */

/* The container grid for all cards */
.carCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin: 0 auto;
}

/* Ensure each card container fills its cell */
.carCard {
  display: flex;
  flex-direction: column;
}

/* Tweak gap on smaller screens */
@media (max-width: 768px) {
  .carCards {
    gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))!important;
  }
	.title-tag {
    font-size: 18px !important;
}
}

/* Styling for the inner card (Bootstrap‐style) */
.carCard .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0px solid #e0e0e0!important;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
}

/* Ensure the thumbnail image scales nicely */
.carCard .card .card-img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
}

/* Custom border and padding for each card wrapper */
.carCard {
  border: 1px solid #0C5453;
  border-radius: 20px;
  padding: 20px !important;
  box-sizing: border-box;
	background-color:#fff;
	transition: border-color 0.3s ease;
}

.carCard:hover {
  border-color: #FFB439;
}

/* Style for the “Reservering” button inside a card */
.carCard .custom-reservation-btn {
  align-self: flex-start;
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid #0C5453;
  color: #0C5453 !important;
  padding: 10px 0;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  margin-top:10px;
}
.carCard .custom-reservation-btn:hover {
  background-color: #0C5453;
  color: #ffffff !important;
}

/* Badge for the year */
.year_wrapper {
  color: #7a8090;
  border: 1px solid #D4D6DB;
  border-radius: 8px;
  padding: 2px 15px;
  width: 70px;
  margin-bottom: 10px;
}

/* Price styling */
.price-tag {
  color: #0C5453;
  font-size: 20px;
}

/* Title styling */
.title-tag {
  color: #1d1d1d !important;
  font-size: 20px;
  line-height: 1.5em!important;
  font-weight:300!important;
}

/* Grid for card details */
.card-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 10px;
	border-top: 1px #F1F3F6 solid;
    padding-top: 10px;
}

/* Individual detail styling */
.card-detail {
  display: flex;
  align-items: center;
  padding: 5px;
  text-align: left;
}

/* Icon next to detail text */
.detail-icon {
  width: 40px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}

/* On small screens, stack card-detail items */
@media (max-width: 1000px) {
  .card-detail {
    font-size: 14px;
  }
}


/* ==========================================================================
   9) PROPLANNER PLUGIN OVERRIDES
   ========================================================================== */

/* Rounded top corners for plugin card images */
#proplanner-plugin-wrapper .card-image,
#proplanner-plugin-wrapper .card-img-top {
  border-radius: 20px 20px 0 0 !important;
  display: block;
}

/* Disabled is-info buttons in plugin */
#proplanner-plugin-wrapper .button.is-info[disabled],
fieldset[disabled] #proplanner-plugin-wrapper .button.is-info {
  background-color: #0C5453 !important;
  border-color: #0C5453 !important;
  box-shadow: none;
}

/* Plugin card border/style */
#proplanner-plugin-wrapper .card {
  border: 1px solid #0C5453;
  border-radius: 20px !important;
}


/* ==========================================================================
   PAGINATION (verkorte versie, altijd zichtbaar)
   ========================================================================== */

/* Centreer het paginering‐blok */
.pagination-wrapper {
  text-align: center;
}

/* Maak de <ul> een inline‐flex container zodat hij in het midden blijft */
.pagination {
  display: inline-flex;
  list-style: none;
  padding-left: 0;
  margin: 1rem auto;
  align-items: center;
}

/* Default on‐active cirkelstyle (paginanummer) */
.pagination .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #0C5453;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0C5453;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin: 10px 10px 0 0!important;
}

/* Hover‐state op cirkels (niet disabled) */
.pagination .page-item .page-link:hover:not(.disabled):not(.arrow-link) {
  background-color: #0C5453;
  color: #ffffff;
}

/* Active pagina: volle groene cirkel, witte tekst */
.pagination .page-item.active .page-link {
  background-color: #0C5453;
  color: #ffffff;
  cursor: default;
}

/* Ellipsis “…” zonder cirkel, grijze tekst */
.pagination .page-item.dots .page-link {
  border: none;
  background: none;
  color: #666666;
  font-weight: 500;
  width: auto;
  height: auto;
  padding: 0 6px;
}

/* Verwijder cirkelstyling bij pijl‐links/-rechts */
.pagination .page-item .page-link.arrow-link {
  border: none !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

/* Pijl‐icon dezelfde diameter als cirkels */
.arrow-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  transition: opacity 0.2s ease;
}

/* Hover: swap naar hover‐variant voor linker pijl */
.page-item.prev-page .arrow-left:not(.disabled):hover {
  content: url('wp-content/uploads/2025/06/icon-arrow-left-hover.png');
}

/* Hover: swap naar hover‐variant voor rechter pijl */
.page-item.next-page .arrow-right:not(.disabled):hover {
  content: url('/wp-content/uploads/2025/06/icon-arrow-right-hover.png');
}

/* Disabled pijlen: 40% opacity, geen hover */
.page-item .arrow-icon.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Responsive: eventueel iets kleinere cirkels op hele smalle schermen (<576px) */
@media (max-width: 576px) {
  .pagination .page-item .page-link {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .arrow-icon {
    width: 30px;
    height: 30px;
  }
}


/* ==========================================================================
   1) DROPDOWNS: custom‐select‐filter
   ========================================================================== */
.custom-select-filter {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px!important;
  color: #0C5453!important;                   
  background-color: #ffffff;
  border: 1px solid #0C5453!important;        
  border-radius: 10px!important;             
  appearance: none!important;                 
  -moz-appearance: none!important;
  -webkit-appearance: none!important;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,4 8,12 16,4' fill='%230C5453'/%3E%3C/svg%3E")!important;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

/* De “disabled selected” optie (placeholder) */
.custom-select-filter option[disabled] {
  color: #0C5453; /* placeholder‐kleur hetzelfde groen */
}

/* Focus‐state voor dropdown */
.custom-select-filter:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(44, 160, 144, 0.3);
}


/* ==========================================================================
   2) SLIDERS: styling voor beide sliders
   ========================================================================== */
.slider-input {
  width: 100%;
  margin: 0;         /* nul marge, vult hele breedte van col */
  height: 2px;       /* hoogte van de track */
  background-color: #c6c6c6;
  appearance: none;
}

/* WebKit track styling (optioneel – wij willen enkel de thumb) */
.slider-input::-webkit-slider-runnable-track {
  height: 2px;
  background: #c6c6c6;
  border: none;
}

/* WebKit thumb styling */
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0C5453;   /* groene rand rond thumb */
  cursor: pointer;
  margin-top: -11px; /* centrer de thumb op de 2px track */
}

/* Firefox thumb styling */
.slider-input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0C5453;
  cursor: pointer;
}

/* Min/Max‐weergave onder slider: groen en iets kleinere letter */
.slider-values small {
  color: #0C5453;
  font-size: 14px;
}


/* ==========================================================================
   3) KNOPPEN: custom‐filter-btn & custom‐reset-btn
   ========================================================================== */

/* ---- Reset‐knop: witte achtergrond, groene border, groene tekst ---- */
.custom-reset-btn {
  background-color: #ffffff;
  border: 1px solid #0C5453!important;
  color: #0C5453 !important;
  border-radius: 10px!important;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
  width: 100%;
}

.custom-reset-btn:hover,
.custom-reset-btn:focus {
  background-color: #0C5453;
  color: #ffffff !important;
  border-color: #0C5453;
}

/* ---- Filter‐knop: gevulde groene achtergrond, witte tekst ---- */
.custom-filter-btn {
  background-color: #0C5453;
  border: 1px solid #0C5453;
  color: #ffffff !important;
  border-radius: 10px!important;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
  width: 100%;
}

.custom-filter-btn:hover,
.custom-filter-btn:focus {
  background-color: #ffffff;
  color: #0C5453 !important;
  border-color: #0C5453;
}

/* Kleine marge tussen kolommen op mobiel */
@media (max-width: 576px) {
  .row .col-md-2 {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   1) MULTI-SELECT: CONTAINER & BOX
   ========================================================================== */
.mb-4{
	margin-bottom:0px!important;
}
.multi-select {
	display: inline-block;
  position: relative;
  margin-bottom: 1rem;
	margin-right:10px;
}

.multi-select .select-box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #0C5453;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  background-color: #ffffff!important;
  color: #0C5453;
  font-size: 16px;
	white-space: nowrap;
}

/* Tekst in de select-box: placeholder of gekozen items */
.multi-select .select-box .placeholder {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #ffffff!important;
	color: #0C5453!important;
	opacity:1!important;
	cursor: pointer!important;
}

/* Pijl-icoon rechts: kan een inline SVG, of CSS-driehoek, of PNG */
.multi-select .select-box .arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0C5453;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* Wanneer dropdown open, roteer pijl 180° */
.multi-select.open .select-box .arrow {
  transform: rotate(180deg);
}

/* ==========================================================================
   2) DROPDOWN-LIJST (verborgen standaard, zichtbaar op .open)
   ========================================================================== */
.multi-select .dropdown-list {
  position: absolute;
  top: calc(100% + 4px);  /* net onder de select-box */
  left: 0;
  width: 100%;
  max-height: 240px;      /* max-hoogte, scroll indien groter */
  overflow-y: auto;
  background-color: #ffffff;
  border: 1px solid #0C5453;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;          
	min-width: 100%;
	width: auto;
  white-space: nowrap;       
  overflow-x: auto;         
  max-height: 240px;
  overflow-y: auto;
}

/* Toon dropdown-lijst als de container .open heeft */
.multi-select.open .dropdown-list {
  display: block;
}

/* ==========================================================================
   3) DROPDOWN-ITEMS (checkbox + label)
   ========================================================================== */
.multi-select .dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #333333;
}

.multi-select .dropdown-item:last-child {
  border-bottom: none;
}

.multi-select .dropdown-item input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
  accent-color: #0C5453; /* moderne browsers kleuren checkbox in groen */
}

/* Hover achtergrond op hover van een item */
.multi-select .dropdown-item:hover {
  background-color: #f9f9f9;
}

/* --------------------------------------------------
   Styling voor de geselecteerde filter‐“badges”
   -------------------------------------------------- */
.selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;        /* ruimte tussen badges */
  align-items: center;
}

/* Iedere individuele badge (Audi ×, Diesel ×, etc.) */
.selected-filters .filter-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background-color: #f0f0f0; /* lichtgrijs */
  border-radius: 10px;
  color: #333333;
  text-decoration: none!important;
  font-size: 14px;
  border: none;
}

/* Hover‐state: iets donkerder achtergrond */
.selected-filters .filter-badge:hover {
  background-color: #e0e0e0;
}

/* “Wissen” knop: zelfde look maar met iets afwijkende kleur */
.selected-filters .filter-reset {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
	border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* Hover‐state wissen */
.selected-filters .filter-reset:hover {
  background-color: #f0f0f0;
}

/* --------------------------------------------------
   1) Prijs‐ en KM‐dropdowns: formaat en spacing
   -------------------------------------------------- */
.form-control {
  border: 1px solid #0C5453;
  border-radius: 10px;
  font-size: 14px;
  color: #0C5453;
  background-color: #ffffff;
}

/* Verwijder default arrow (indien gewenst), of laat browser‐arrow staan */
.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.5rem; /* maakt ruimte voor eigen arrow, als je die toevoegt */
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10'><polygon points='0,0 14,0 7,10' fill='%230C5453'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}

/* Ruimte tussen de twee dropdowns */
.form-control + .form-control {
  margin-left: 0.5rem;
}

/* --------------------------------------------------
   2) Filter‐ en Reset‐knoppen
   -------------------------------------------------- */
.custom-filter-btn,
.custom-reset-btn {
  border-radius: 10px;
  border: 1px solid #0C5453;
  background-color: #0C5453;
  color: #ffffff;
  padding: 6px 12px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.custom-filter-btn:hover,
.custom-reset-btn:hover {
  background-color: #249078; /* iets donkerder groen */
}

/* Wissen link in het zelfde format, maar met white‐background en groene tekst */
.custom-reset-btn {
  background-color: #ffffff;
  color: #0C5453;
}

.custom-reset-btn:hover {
  background-color: #f0f0f0;
}


/* ------------------------------------------------------------
   A) CONTAINER EN KNOPPEN‐LAYOUT
   ------------------------------------------------------------ */
/* Centraal uitlijnen van type‐knoppen */
.type-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.type-button {
  padding: 8px 16px;
  background-color: #0C5453;
  color: #ffffff;
  border: 1px solid #0C5453;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.type-button:hover,
.type-button.active {
  background-color: #ffffff;
  color: #0C5453;
}

/* ------------------------------------------------------------
   B) CAROUSEL‐STRUCTUUR (zonder card‐styling)
   ------------------------------------------------------------ */
.carousel-container {
  display: none; /* verborgen initieel, behalve “all” */
  position: relative;
  margin-bottom: 3rem;
}

/* Bij paginalaad tonen we “all” carousel */
.carousel-container.all {
  display: block;
}

/* Carousel track wrapper */
.carousel-wrapper {
  overflow: hidden;
}

/* Track waarin .preview-card‐elementen horizontaal liggen */
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
}

/* Iedere .preview-card moet min 320px breed zijn; we voegen .preview-card en .carCard samen */
.preview-card {
  flex: 0 0 calc(33.333% - 1rem);
  margin-right: 1rem;
  box-sizing: border-box;
}

.preview-card:last-child {
  margin-right: 0;
}

/* Bij <960px: twee kaarten naast elkaar */
@media (max-width: 959px) {
  .preview-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

/* Bij <640px: één kaart per rij */
@media (max-width: 639px) {
  .preview-card {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
	.carCard .card .card-img {
    width: 100%;
    height: 110px;         
    object-fit: cover;     
    object-position: center;
  }
	.price-tag {
		font-size:17px;
	}
	
	.carCard .custom-reservation-btn {
    padding: 5px 0;
    margin-top: 10px;
    font-size: 15px;
}
}

/* ------------------------------------------------------------
   C) PIJLEN ONDER CAROUSEL
   ------------------------------------------------------------ */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
	margin-left: -15px;
}

.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-arrow img {
  width: 36px;
  height: 36px;
  transition: opacity 0.2s;
}

/* Hover‐beeld wisselen via CSS content‐swap */
.carousel-arrow.left img:hover {
  content: url('/wp-content/uploads/2025/06/icon-arrow-left-hover.png');
}

.carousel-arrow.right img:hover {
  content: url('/wp-content/uploads/2025/06/icon-arrow-right-hover.png');
}

ul {
	list-style-type: none!important;
}

.no-results-card {
  position: relative;
  margin: 2rem 0;
  padding: 4rem 1rem;
  background: url('/wp-content/uploads/2025/06/Geen-resultaten.jpg') center/cover no-repeat;
  border-radius: 20px;
  color: #fff;
  height:300px;
  text-align: center;
}

.no-results-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
	color:#FFF;
	font-weight:bold;
}

.btn-no-results {
  display: inline-block;
  background-color: #fff;
  color: #0C5453!important;
  padding: 0.75rem 1.5rem;
	border:1px #fff solid;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s;
}

.btn-no-results:hover {
    background-color: transparent;
	color: #FFF!important;
}