:root {
    --ltc-accent: #00004F;
}

        

.ltc-demo-wrap {
    max-width: var(--ltc-wrapper-width);
    margin: 0 auto;
    display: grid;
    padding: 0 10px;
}

.ltc-carousel {
    --ltc-item-width: 1280px;
    --ltc-item-width-tablet: 800px;
    --ltc-item-width-mobile: calc(100vw - 84px);
    overflow: hidden;
    position: relative;
    z-index: 1;
}


.ltc-carousel-prev{
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.ltc-carousel-next{
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.ltc-carousel-btn.is-disabled,
.ltc-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.ltc-carousel-viewport {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;       /* allow vertical page scroll, handle horizontal swipe */
    -webkit-user-select: none;
    user-select: none;
}

.ltc-carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.ltc-carousel-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #d6c7b2;
    padding: 0;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease;
}

.ltc-carousel-dot:hover {
    transform: scale(1.1);
    background: #bda98f;
}

.ltc-carousel-dot.is-active {
    background: var(--ltc-accent);
    transform: scale(1.15);
}

.ltc-carousel-dot:focus-visible {
    outline: 2px solid var(--ltc-accent);
    outline-offset: 2px;
}

.ltc-carousel-track {
    --ltc-edge-space: 0px;
    display: flex;
    gap: 16px;
    padding-inline: var(--ltc-edge-space);
    transform: translate3d(0, 0, 0);
    transition: transform 320ms cubic-bezier(.2, .78, .15, 1);
    will-change: transform;
}

.ltc-carousel-item {
    flex: 0 0 var(--ltc-item-width);
    width: var(--ltc-item-width);
    min-height: 170px;
    border: 1px solid #e7d7c2;
    border-radius: 14px;
    background: #FFFFFF;
    /*padding: 14px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.ltc-item-image {
    width: 100%;
    height: 800px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.ltc-item-index {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7f7366;
}

.ltc-item-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
}

.ltc-item-copy {
    margin: 0;
    color: #4e4338;
    font-size: 0.92rem;
    line-height: 1.45;
}

.ltc-chip {
    align-self: start;
    border: 1px solid #e4d2bc;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.8rem;
    color: var(--ltc-accent);
    background: #fff;
}

/* De container krijgt de vaste hoogte en de ronde hoeken */
.estate-single-image {
    width: 100%;
    max-width: var(--ltc-wrapper-width);
    margin: 0 auto;
    height: clamp(360px, 213.33px + 40.74vw, 800px);
    display: block;
    border-radius: 10px;
    overflow: hidden; /* Zorgt ervoor dat de foto niet buiten de ronde hoeken van 10px breekt */
    padding: 10px;
}

/* Zorg dat de link de volledige container vult */
.estate-single-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* HIER MOET DE OBJECT-FIT OP! */
.estate-single-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 1023px) {
    .ltc-carousel {
        --ltc-item-width: var(--ltc-item-width-tablet);
    }
    .ltc-item-image {
        max-width: 100%;
        height: 600px;
    }
}

@media (max-width: 679px) {
    .ltc-carousel {
        --ltc-item-width: 100%;
    }

    .ltc-carousel-track {
        gap: 0;
    }

    .ltc-carousel-item {
        flex-basis: 100%;
        width: 100%;
    }

    .ltc-item-image {
        max-width: 100%;
        height: 360px;
    }
}






.chevron-cirkel {
  font-size: 30px !important; 
  color: #333333 !important;
  position: relative;  
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.chevron-cirkel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); 
  z-index: -1; 
  transition: background-color 0.2s ease;
}

.chevron-cirkel:hover::before {
  background-color: #f5f5f5;
}