.hotel-room-section {
    width: 100%;
    padding: 60px 80px;
    font-family: "Monserrat", Sans-serif !important;
}

.hotel-room-header {
    text-align: center;
    margin-bottom: 60px;
}

.hotel-room-title {
    max-width: 980px;
    font-size: 42px;
    font-weight: 300;
    margin: 0 auto 20px;
    color: #2F2F2F;
    text-transform: uppercase;
}

.hotel-room-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #616161;
    line-height: 1.6;
}

.hotel-room-content {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 25px;
    width: 100%;
    margin: 0 auto;
}

.hotel-room-menu{
    border-right: 1px solid #F5F5F5;
}

.hotel-room-menu-item {
    width: 100%;
    padding: 20px 0;
    border: 0 !important;
    border-right: 3px solid transparent !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    background: none;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    text-align: left;
    padding-right: 20px;
    font-weight: 300;
    border-radius: 0 !important;
    transition: border-color 0.3s;
}
.hotel-room-menu-item:hover {
    background: transparent !important;
    color: #2f2f2f !important;
    font-weight: 500 !important;
}
.hotel-room-menu-item:focus:not(:focus-visible){
    background: none !important;
    color: #2F2F2F !important;
}

.hotel-room-menu-item.active {
    border-right-color: var(--hotel-accent-2) !important;
    font-weight: 500;
}

.hotel-room-details {
    display: none;
}

.hotel-room-details.active {
    display: block;
}

.hotel-room-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.hotel-room-gallery {
    position: relative;
}

.hotel-room-gallery.mobile {
    display: none;
}

.hotel-room-gallery-slider {
    position: relative;
}

.hotel-room-gallery-slide {
    display: none;
    width: 456px;
    height: 446px;
}

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

.hotel-room-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.hotel-room-gallery-slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.hotel-room-gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hotel-room-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid #fff;
}

.hotel-room-gallery-dot.active {
    background: rgba(209, 197, 181, 0.3);
    width: 15px;
    height: 15px;
}

.hotel-room-info-title {
    font-size: 20px;
    font-weight: 400;
    color: #2F2F2F;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.hotel-room-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hotel-room-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
}

.hotel-room-meta-icon {
    width: 34px;
    height: 20px;
    border-right: 2px solid #F5F5F5;
    padding: 0 10px 0 0 !important;
}

.hotel-room-meta-icon svg,
.hotel-room-meta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hotel-room-description {
    font-size: 14px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
}

.hotel-room-extras {
    background: var(--hotel-accent-15);
    padding: 20px;
    border-radius: 6px;
}

.hotel-room-extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hotel-room-extra-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #60605F;
    font-weight: 400;
}

.hotel-room-extra-item::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-color: var(--hotel-accent, var(--hotel-accent));
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
}

@media (max-width: 1200px) {
    .hotel-room-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hotel-room-gallery-slide{
        width: 100%;
    }
    .hotel-room-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hotel-room-menu {
        display: flex;
        gap: 10px;
        overflow-x: auto;
    }
    
    .hotel-room-menu-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 15px 20px;
    }
    
    .hotel-room-menu-item.active {
        border-bottom-color: #D1C5B5;
    }
}

@media (max-width: 768px) {
    .hotel-room-section {
        padding: 40px 14px;
    }
    
    .hotel-room-title {
        font-size: 32px;
    }

    .hotel-room-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        background-color: #F5F5F5;
        border-radius: 6px;
        overflow: hidden;
        border: none;
        padding: 0;
    }
    
    .hotel-room-menu-item {
        display: block;
        font-size: 14px;
        padding: 10px;
        background-color: #F5F5F5;
        color: #2F2F2F;
        border: none !important;
        border-right: 1px solid #E0E0E0 !important;
        border-bottom: 1px solid #E0E0E0 !important;
        border-top: none !important;
        text-align: center;
        text-decoration: none;
        font-weight: 300;
        line-height: 20px;
        min-height: 55px;
        box-sizing: border-box;
        cursor: pointer;
        border-radius: 0;
        width: auto;
        text-align: center;
        text-wrap: auto;
    }
    
    .hotel-room-menu-item:nth-child(even) {
        border-right: none !important;
    }
    
    .hotel-room-menu-item:last-child,
    .hotel-room-menu-item:nth-last-child(2) {
        border-bottom: none !important;
    }
    
    .hotel-room-menu-item:hover,
    .hotel-room-menu-item.active {
        background-color: #F5F5F5 !important;
        color: #2F2F2F;
        font-weight: 400;
        text-decoration: underline;
        border-right-color: #E0E0E0 !important;
    }
    
    .hotel-room-menu-item.active:nth-child(even) {
        border-right: none !important;
    }
    
    .hotel-room-gallery-slider,.hotel-room-gallery-slide {
        height: 332px;
    }
    
    .hotel-room-gallery-slide {
        width: 100%;
    }
    
    .hotel-room-meta {
        grid-template-columns: 1fr;
    }
    
    .hotel-room-extras {
        padding: 45px 15px;
        margin-bottom: 90px;
    }
    
    .hotel-room-extras-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-room-gallery:not(.mobile) .hotel-room-gallery-slider {
        display: none;
    }
    
    .hotel-room-gallery:not(.mobile) .hotel-room-gallery-controls {
        display: none;
    }
    
    .hotel-room-gallery.mobile {
        display: block;
    }
}
