.room-slider-wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.room-slider-container {
    overflow: hidden;
}

.room-slide {
    display: none;
}

.room-slide.active {
    display: block;
}

.room-layout {
    position: relative;
}

/* Görsel Alanı */
.room-images-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.room-images-carousel {
    position: relative;
    width: 130%;
    overflow: visible; /* %10'luk taşıntı için */
}

.images-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.room-image {
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* İçerik Alanı */
.room-content {
    padding: 40px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.content-left {
    max-width: 100%;
    position: relative;
}

.room-name {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.1;
    margin-top: 0;
}

.room-specs {
    font-size: 18px;
    color: #666666;
    margin-bottom: 24px;
    font-weight: 400;
}

.room-detail-btn {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 10px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.room-detail-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

.room-description {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

/* İleri Geri Butonları - Oda Özelliklerinin Yanında */
.image-navigation {
    /* Position ve diğer özellikler Elementor kontrolleri tarafından ayarlanacak */
    /* Varsayılan değerler kaldırıldı */
}

.img-prev,
.img-next {
    background: transparent;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease;
}

.img-prev:hover,
.img-next:hover {
    opacity: 0.7;
}

.img-prev svg,
.img-next svg {
    width: 12px;
    height: 16px;
}

/* Özellikler Alanı */
.room-features {
    min-width: 100%;
    position: relative;
}

.features-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.1;
    margin-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

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

.feature-item {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    padding: 2px 0;
}





/* Tablet Responsive */
@media (max-width: 1366px) {
    .room-content {
        padding: 30px 50px;
        gap: 60px;
    }
    
    .room-name,
    .features-title {
        font-size: 40px;
    }
    
    .room-specs {
        font-size: 16px;
    }
    
    .room-features {
        min-width: 100%;
    }
    
    .features-grid {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .room-image {
        flex: 0 0 calc(50% - 15px);
    }
    
    .room-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 30px 40px;
    }
    
    .room-name,
    .features-title {
        font-size: 32px;
    }
    
    .room-specs {
        font-size: 16px;
    }
    
    .room-features {
        min-width: 100%;
        width: 100%;
        position: relative;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    .image-navigation {
        /* Tablet için pozisyon ayarları Elementor'dan gelecek */
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .room-image {
        flex: 0 0 100%;
        position: relative;
    }
    
    .content-left {
        position: relative;
    }
    
    .images-track {
        gap: 20px;
    }
    
    .room-content {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .room-name,
    .features-title {
        font-size: 28px;
    }
    
    .room-specs {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .room-detail-btn {
        padding: 8px 24px;
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .room-description {
        font-size: 14px;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 8px;
        font-weight: 700;
        line-height: 1.1;
        margin-top: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    

    
    .image-navigation {
        /* Mobil için pozisyon ayarları Elementor'dan gelecek */
    }
    
    .img-prev,
    .img-next {
        padding: 8px 16px;
        font-size: 14px;
    }
    

}

@media (max-width: 480px) {
    .room-name {
        font-size: 24px;
    }
    
    .room-detail-btn {
        padding: 8px 28px;
        font-size: 13px;
        margin-bottom: 24px;
    }
}