.vro-hotels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 768px) {
    .vro-hotels {
        grid-template-columns: 1fr;
    }
}

.vro-hotel-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 18px;
}

.vro-hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.vro-hotel-header h3 {
    margin: 0;
}

.vro-hotel-rating {
    font-weight: 500;
}

.vro-hotel-media {
    position: relative;
    margin-bottom: 16px;
    border-radius: 15px;
    overflow: hidden;
}

.vro-hotel-slides {
    position: relative;
    overflow: hidden;
}

.vro-hotel-slide {
    display: none;
    aspect-ratio: 9/16;
}

.vro-hotel-slide.active {
    display: block;
}

.vro-hotel-slide img,
.vro-hotel-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.vro-hotel-controls {
    position: absolute !important;
    bottom: 16px !important;
    right: 16px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* Hotel Video Container */
.vro-hotel-video {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for hotels */
    height: 0;
    overflow: hidden;
    cursor: pointer;
}

.vro-hotel-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vro-hotel-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Video Play Button */
.vro-hotel-video .vro-video-play {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 2 !important;
}

.vro-hotel-video .vro-video-play:hover {
    opacity: 1 !important;
}

.vro-hotel-video .vro-video-play svg {
    width: 68px !important;
    height: 48px !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
}

/* Lazy loading placeholder */
.vro-hotel-slide img.vro-lazy {
    background: #f0f0f0;
    min-height: 200px;
}

/* Counter Navigation */
.vro-hotel-counter {
    display: flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border-radius: 20px !important;
    padding: 4px 8px !important;
    pointer-events: auto !important;
    gap: 3px !important;
}

.vro-hotel-counter .vro-counter-prev,
.vro-hotel-counter .vro-counter-next {
    background: none !important;
    border: none !important;
    color: #3F4752 !important;
    cursor: pointer !important;
    font-size: 15px !important;
    padding: 4px 6px !important;
    border-radius: 50% !important;
    transition: background 0.2s ease !important;
    line-height: 1 !important;
    min-width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.vro-hotel-counter .vro-counter-prev:hover,
.vro-hotel-counter .vro-counter-next:hover {
    background: white !important;
}

.vro-hotel-counter .vro-counter-text {
    color: #3F4752 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    min-width: 30px !important;
    text-align: center !important;
    user-select: none !important;
}

.vro-hotel-info h4 {
    margin: 0 0 8px 0;
}

.vro-hotel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vro-travel-info {
    margin: 0;
    font-size: 13px;
    color: #9CA3AF;
}

.vro-maps-link {
    color: #9CA3AF !important;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
}

.vro-maps-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .vro-hotel-controls {
        bottom: 12px !important;
        right: 12px !important;
    }
    
    .vro-hotel-counter {
        padding: 3px 6px !important;
        gap: 3px !important;
    }
    
    .vro-hotel-counter .vro-counter-prev,
    .vro-hotel-counter .vro-counter-next {
        min-width: 20px !important;
        height: 20px !important;
        font-size: 13px !important;
    }
    
    .vro-hotel-counter .vro-counter-text {
        font-size: 13px !important;
        min-width: 25px !important;
    }
}