.image-container > a{
    position: relative;
}
.hotels-slider {
    position: relative;
    overflow: hidden;
}

.hotels-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hotels-slider:not(.initialized) img:first-child,
.hotels-slider img.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hotels-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    color: white;
    border: none;
    padding: 0 6px;
    cursor: pointer;
    font-size: 40px;
    transition: background 0.3s ease;
}

.hotels-slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hotels-slider-nav.prev {
    left: 10px;
}

.hotels-slider-nav.next {
    right: 10px;
}

.hotels-slider-nav span{
    position: relative;
    top: -2px;
    margin: 0;
}

.hotels-slider-dots {
    position: absolute;
    bottom: 7px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.hotels-slider-dots .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hotels-slider-dots .dot.active {
    background: #333;
}

.hotels-slider-dots .dot:hover {
    background: #666;
}

/* Contact for price styling */
.highlight.price.contact-price .text {
    font-size: 0.85em;
}

.highlight.price.contact-price .contact_text {
    font-size: 0.9em;
    display: inline-block;
}
